diff --git a/stage0/src/Lean/Parser/Syntax.lean b/stage0/src/Lean/Parser/Syntax.lean index 5872ba0ae6..52a05056df 100644 --- a/stage0/src/Lean/Parser/Syntax.lean +++ b/stage0/src/Lean/Parser/Syntax.lean @@ -44,28 +44,25 @@ namespace Command def optPrio := optional ("[" >> numLit >> "]") -def «scoped» := parser! "scoped " -def «local» := parser! "local " -def attrKind := optional («scoped» <|> «local») def «prefix» := parser! "prefix" def «infix» := parser! "infix" def «infixl» := parser! "infixl" def «infixr» := parser! "infixr" def «postfix» := parser! "postfix" def mixfixKind := «prefix» <|> «infix» <|> «infixl» <|> «infixr» <|> «postfix» -@[builtinCommandParser] def «mixfix» := parser! attrKind >> mixfixKind >> optPrecedence >> optPrio >> ppSpace >> strLit >> darrow >> termParser +@[builtinCommandParser] def «mixfix» := parser! Term.attrKind >> mixfixKind >> optPrecedence >> optPrio >> ppSpace >> strLit >> darrow >> termParser -- NOTE: We use `suppressInsideQuot` in the following parsers because quotations inside them are evaluated in the same stage and -- thus should be ignored when we use `checkInsideQuot` to prepare the next stage for a builtin syntax change def identPrec := parser! ident >> optPrecedence def optKind : Parser := optional ("[" >> ident >> "]") def notationItem := ppSpace >> withAntiquot (mkAntiquot "notationItem" `Lean.Parser.Command.notationItem) (strLit <|> identPrec) -@[builtinCommandParser] def «notation» := parser! attrKind >> "notation" >> optPrecedence >> optPrio >> many notationItem >> darrow >> termParser +@[builtinCommandParser] def «notation» := parser! Term.attrKind >> "notation" >> optPrecedence >> optPrio >> many notationItem >> darrow >> termParser @[builtinCommandParser] def «macro_rules» := suppressInsideQuot (parser! "macro_rules" >> optKind >> Term.matchAlts) def parserKind := parser! ident def parserPrio := parser! numLit def parserKindPrio := parser! atomic (ident >> ", ") >> numLit def optKindPrio : Parser := optional ("[" >> (parserKindPrio <|> parserKind <|> parserPrio) >> "]") -@[builtinCommandParser] def «syntax» := parser! attrKind >> "syntax " >> optPrecedence >> optKindPrio >> many1 syntaxParser >> " : " >> ident +@[builtinCommandParser] def «syntax» := parser! Term.attrKind >> "syntax " >> optPrecedence >> optKindPrio >> many1 syntaxParser >> " : " >> ident @[builtinCommandParser] def syntaxAbbrev := parser! "syntax " >> ident >> " := " >> many1 syntaxParser @[builtinCommandParser] def syntaxCat := parser! "declare_syntax_cat " >> ident def macroArgSimple := parser! ident >> checkNoWsBefore "no space before ':'" >> ":" >> syntaxParser maxPrec diff --git a/stage0/src/Lean/Parser/Term.lean b/stage0/src/Lean/Parser/Term.lean index 2e198feffd..18b10881c8 100644 --- a/stage0/src/Lean/Parser/Term.lean +++ b/stage0/src/Lean/Parser/Term.lean @@ -152,7 +152,10 @@ def letDecl := nodeWithAntiquot "letDecl" `Lean.Parser.Term.letDecl (notFoll @[builtinTermParser] def «let*» := parser!:leadPrec withPosition ("let* " >> letDecl) >> optSemicolon termParser def attrArg : Parser := ident <|> strLit <|> numLit -- use `rawIdent` because of attribute names such as `instance` -def attrInstance := ppGroup $ parser! optional "scoped" >> rawIdent >> many (ppSpace >> attrArg) +def «scoped» := parser! "scoped " +def «local» := parser! "local " +def attrKind := optional («scoped» <|> «local») +def attrInstance := ppGroup $ parser! attrKind >> rawIdent >> many (ppSpace >> attrArg) def attributes := parser! "@[" >> sepBy1 attrInstance ", " >> "]" def letRecDecls := sepBy1 (group (optional «attributes» >> letDecl)) ", " diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index abf7a7a7e9..a277cf45bc 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -211,6 +211,7 @@ lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__26; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__2___rarg(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33; uint8_t l_Char_isWhitespace(uint32_t); +lean_object* l_Lean_Elab_Command_expandMixfix___closed__35; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__3; lean_object* l_Lean_Elab_Command_mkSimpleDelab_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -248,6 +249,7 @@ lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__12; lean_object* l_Lean_Elab_Command_mkNameFromParserSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_USize_decLt(size_t, size_t); +lean_object* l_Lean_Elab_Command_expandMixfix___closed__39; lean_object* l_Lean_Elab_Command_expandMacro___closed__1; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__29; lean_object* l_Lean_Elab_Command_expandElab___closed__17; @@ -270,6 +272,7 @@ lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_toParserDescrAux___spe lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_getVarDecls(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__2(lean_object*); lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandMixfix___closed__38; 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; @@ -386,7 +389,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQ lean_object* l_Lean_Elab_Term_toParserDescrAux_match__5___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_String_capitalize(lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534_(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__8; lean_object* l_Lean_Elab_Command_expandElab___closed__26; @@ -586,7 +589,6 @@ extern lean_object* l_Lean_formatDataValue___closed__2; lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___closed__12; lean_object* l_Lean_Elab_Command_expandMixfix___closed__31; -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240____closed__1; lean_object* l_Lean_Parser_registerParserCategory(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); extern lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__2; lean_object* l_Lean_Elab_Term_resetMessageLog(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -665,6 +667,8 @@ lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__24; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__21; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__38; lean_object* l_Lean_Elab_Command_expandElab___closed__48; +lean_object* l_Lean_Elab_Command_expandMixfix___closed__36; +lean_object* l_Lean_Elab_Command_expandMixfix___closed__37; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNestedParser___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_checkLeftRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); @@ -871,6 +875,7 @@ lean_object* l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem___boxed(lean_objec lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__24; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabMacroRulesAux___spec__1(lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534____closed__1; lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; extern lean_object* l_Array_findSomeM_x3f___rarg___closed__1; @@ -16297,22 +16302,32 @@ return x_3; static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("prefix"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; +x_2 = l_Lean_Elab_instToFormatAttribute___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__4() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("prefix"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__5() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__3; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__5() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__6() { _start: { lean_object* x_1; @@ -16320,17 +16335,17 @@ x_1 = lean_mk_string("postfix"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__6() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__5; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__7() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__8() { _start: { lean_object* x_1; @@ -16338,17 +16353,17 @@ x_1 = lean_mk_string("precedence"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__8() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__4; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__7; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__9() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__10() { _start: { lean_object* x_1; @@ -16356,25 +16371,13 @@ x_1 = lean_mk_string("notation"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__9; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__9; -x_3 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__10; +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -16382,31 +16385,87 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__10; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__11; -x_3 = lean_array_push(x_1, x_2); +x_1 = l_Lean_Elab_Command_expandMixfix___closed__3; +x_2 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__8; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__13() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__12; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind___closed__2; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__13; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__14; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__10; +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_Lean_Elab_Command_expandMixfix___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_expandMixfix___closed__15; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__16; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__18() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string("identPrec"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__14() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__13; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__15() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__20() { _start: { lean_object* x_1; @@ -16414,22 +16473,22 @@ x_1 = lean_mk_string("arg"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__16() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_expandMixfix___closed__15; +x_1 = l_Lean_Elab_Command_expandMixfix___closed__20; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__17() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_expandMixfix___closed__15; +x_1 = l_Lean_Elab_Command_expandMixfix___closed__20; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_expandMixfix___closed__16; +x_3 = l_Lean_Elab_Command_expandMixfix___closed__21; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -16437,17 +16496,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__18() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_expandMixfix___closed__15; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__19() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__24() { _start: { lean_object* x_1; @@ -16455,17 +16514,17 @@ x_1 = lean_mk_string("infixr"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__20() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__24; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__21() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__26() { _start: { lean_object* x_1; @@ -16473,17 +16532,17 @@ x_1 = lean_mk_string("infixl"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__22() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__21; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__26; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__23() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__28() { _start: { lean_object* x_1; @@ -16491,22 +16550,22 @@ x_1 = lean_mk_string("lhs"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__24() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_1 = l_Lean_Elab_Command_expandMixfix___closed__28; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__25() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_1 = l_Lean_Elab_Command_expandMixfix___closed__28; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_expandMixfix___closed__24; +x_3 = l_Lean_Elab_Command_expandMixfix___closed__29; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -16514,17 +16573,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__26() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__28; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__27() { +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__32() { _start: { lean_object* x_1; @@ -16532,67 +16591,13 @@ x_1 = lean_mk_string("infix"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__28() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__27; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__21; -x_3 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__30() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__29; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__31() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_expandMixfix___closed__22; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__30; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__32() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__10; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__31; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__7; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__11; -x_3 = lean_array_push(x_1, x_2); +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__32; +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -16600,8 +16605,62 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__26; +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_Lean_Elab_Command_expandMixfix___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__34; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_expandMixfix___closed__27; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__35; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_expandMixfix___closed__15; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__36; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__38() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__7; -x_2 = l_Lean_Elab_Command_expandMixfix___closed__31; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__16; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMixfix___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__7; +x_2 = l_Lean_Elab_Command_expandMixfix___closed__36; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -16646,41 +16705,1799 @@ return x_13; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_724; uint8_t x_725; x_14 = lean_unsigned_to_nat(0u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); -x_16 = l_Lean_nullKind___closed__2; +x_724 = l_Lean_nullKind___closed__2; lean_inc(x_15); -x_17 = l_Lean_Syntax_isOfKind(x_15, x_16); -if (x_17 == 0) +x_725 = l_Lean_Syntax_isOfKind(x_15, x_724); +if (x_725 == 0) { -lean_object* x_18; lean_object* x_19; -lean_dec(x_15); -lean_dec(x_2); -lean_dec(x_1); -x_18 = lean_box(1); -x_19 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_3); -return x_19; +lean_object* x_726; +x_726 = lean_box(0); +x_16 = x_726; +goto block_723; } else { -lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_20 = l_Lean_Syntax_getArgs(x_15); -lean_dec(x_15); -x_21 = lean_array_get_size(x_20); -lean_dec(x_20); -x_22 = lean_nat_dec_eq(x_21, x_14); -if (x_22 == 0) +lean_object* x_727; lean_object* x_728; uint8_t x_729; +x_727 = l_Lean_Syntax_getArgs(x_15); +x_728 = lean_array_get_size(x_727); +lean_dec(x_727); +x_729 = lean_nat_dec_eq(x_728, x_14); +lean_dec(x_728); +if (x_729 == 0) { -lean_object* x_23; uint8_t x_24; -x_23 = lean_unsigned_to_nat(1u); -x_24 = lean_nat_dec_eq(x_21, x_23); +lean_object* x_730; +x_730 = lean_box(0); +x_16 = x_730; +goto block_723; +} +else +{ +lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_1004; lean_object* x_1327; uint8_t x_1328; +lean_dec(x_15); +x_731 = lean_unsigned_to_nat(1u); +x_732 = l_Lean_Syntax_getArg(x_1, x_731); +x_1327 = l_Lean_Elab_Command_expandMixfix___closed__33; +lean_inc(x_732); +x_1328 = l_Lean_Syntax_isOfKind(x_732, x_1327); +if (x_1328 == 0) +{ +lean_object* x_1329; +x_1329 = lean_box(0); +x_1004 = x_1329; +goto block_1326; +} +else +{ +lean_object* x_1330; lean_object* x_1331; uint8_t x_1332; +x_1330 = l_Lean_Syntax_getArgs(x_732); +x_1331 = lean_array_get_size(x_1330); +lean_dec(x_1330); +x_1332 = lean_nat_dec_eq(x_1331, x_731); +lean_dec(x_1331); +if (x_1332 == 0) +{ +lean_object* x_1333; +x_1333 = lean_box(0); +x_1004 = x_1333; +goto block_1326; +} +else +{ +lean_object* x_1334; lean_object* x_1335; uint8_t x_1336; +lean_dec(x_732); +lean_dec(x_2); +x_1334 = lean_unsigned_to_nat(2u); +x_1335 = l_Lean_Syntax_getArg(x_1, x_1334); +lean_inc(x_1335); +x_1336 = l_Lean_Syntax_isOfKind(x_1335, x_724); +if (x_1336 == 0) +{ +lean_object* x_1337; lean_object* x_1338; +lean_dec(x_1335); +lean_dec(x_1); +x_1337 = lean_box(1); +x_1338 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1338, 0, x_1337); +lean_ctor_set(x_1338, 1, x_3); +return x_1338; +} +else +{ +lean_object* x_1339; lean_object* x_1340; uint8_t x_1341; +x_1339 = l_Lean_Syntax_getArgs(x_1335); +x_1340 = lean_array_get_size(x_1339); +lean_dec(x_1339); +x_1341 = lean_nat_dec_eq(x_1340, x_731); +lean_dec(x_1340); +if (x_1341 == 0) +{ +lean_object* x_1342; lean_object* x_1343; +lean_dec(x_1335); +lean_dec(x_1); +x_1342 = lean_box(1); +x_1343 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1343, 0, x_1342); +lean_ctor_set(x_1343, 1, x_3); +return x_1343; +} +else +{ +lean_object* x_1344; lean_object* x_1345; uint8_t x_1346; +x_1344 = l_Lean_Syntax_getArg(x_1335, x_14); +lean_dec(x_1335); +x_1345 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_1344); +x_1346 = l_Lean_Syntax_isOfKind(x_1344, x_1345); +if (x_1346 == 0) +{ +lean_object* x_1347; lean_object* x_1348; +lean_dec(x_1344); +lean_dec(x_1); +x_1347 = lean_box(1); +x_1348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1348, 0, x_1347); +lean_ctor_set(x_1348, 1, x_3); +return x_1348; +} +else +{ +lean_object* x_1349; lean_object* x_1350; uint8_t x_1351; +x_1349 = l_Lean_Syntax_getArgs(x_1344); +x_1350 = lean_array_get_size(x_1349); +lean_dec(x_1349); +x_1351 = lean_nat_dec_eq(x_1350, x_1334); +lean_dec(x_1350); +if (x_1351 == 0) +{ +lean_object* x_1352; lean_object* x_1353; +lean_dec(x_1344); +lean_dec(x_1); +x_1352 = lean_box(1); +x_1353 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1353, 0, x_1352); +lean_ctor_set(x_1353, 1, x_3); +return x_1353; +} +else +{ +lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; uint8_t x_1392; +x_1354 = l_Lean_Syntax_getArg(x_1344, x_731); +lean_dec(x_1344); +x_1355 = lean_unsigned_to_nat(3u); +x_1356 = l_Lean_Syntax_getArg(x_1, x_1355); +lean_inc(x_1356); +x_1392 = l_Lean_Syntax_isOfKind(x_1356, x_724); +if (x_1392 == 0) +{ +lean_object* x_1393; +x_1393 = lean_box(0); +x_1357 = x_1393; +goto block_1391; +} +else +{ +lean_object* x_1394; lean_object* x_1395; uint8_t x_1396; +x_1394 = l_Lean_Syntax_getArgs(x_1356); +x_1395 = lean_array_get_size(x_1394); +lean_dec(x_1394); +x_1396 = lean_nat_dec_eq(x_1395, x_14); +lean_dec(x_1395); +if (x_1396 == 0) +{ +lean_object* x_1397; +x_1397 = lean_box(0); +x_1357 = x_1397; +goto block_1391; +} +else +{ +lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; +lean_dec(x_1356); +x_1398 = lean_unsigned_to_nat(4u); +x_1399 = l_Lean_Syntax_getArg(x_1, x_1398); +x_1400 = lean_unsigned_to_nat(6u); +x_1401 = l_Lean_Syntax_getArg(x_1, x_1400); +lean_dec(x_1); +x_1402 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1403 = lean_array_push(x_1402, x_1354); +x_1404 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1404, 0, x_1345); +lean_ctor_set(x_1404, 1, x_1403); +x_1405 = l_Array_empty___closed__1; +x_1406 = lean_array_push(x_1405, x_1404); +x_1407 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1407, 0, x_724); +lean_ctor_set(x_1407, 1, x_1406); +x_1408 = l_Lean_Elab_Command_expandMixfix___closed__39; +x_1409 = lean_array_push(x_1408, x_1407); +x_1410 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_1411 = lean_array_push(x_1409, x_1410); +x_1412 = lean_array_push(x_1411, x_1399); +x_1413 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1414 = lean_array_push(x_1412, x_1413); +x_1415 = lean_array_push(x_1414, x_1401); +x_1416 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1416, 0, x_4); +lean_ctor_set(x_1416, 1, x_1415); +x_1417 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1417, 0, x_1416); +lean_ctor_set(x_1417, 1, x_3); +return x_1417; +} +} +block_1391: +{ +uint8_t x_1358; +lean_dec(x_1357); +lean_inc(x_1356); +x_1358 = l_Lean_Syntax_isOfKind(x_1356, x_724); +if (x_1358 == 0) +{ +lean_object* x_1359; lean_object* x_1360; +lean_dec(x_1356); +lean_dec(x_1354); +lean_dec(x_1); +x_1359 = lean_box(1); +x_1360 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1360, 0, x_1359); +lean_ctor_set(x_1360, 1, x_3); +return x_1360; +} +else +{ +lean_object* x_1361; lean_object* x_1362; uint8_t x_1363; +x_1361 = l_Lean_Syntax_getArgs(x_1356); +x_1362 = lean_array_get_size(x_1361); +lean_dec(x_1361); +x_1363 = lean_nat_dec_eq(x_1362, x_1355); +lean_dec(x_1362); +if (x_1363 == 0) +{ +lean_object* x_1364; lean_object* x_1365; +lean_dec(x_1356); +lean_dec(x_1354); +lean_dec(x_1); +x_1364 = lean_box(1); +x_1365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1365, 0, x_1364); +lean_ctor_set(x_1365, 1, x_3); +return x_1365; +} +else +{ +lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; +x_1366 = l_Lean_Syntax_getArg(x_1356, x_731); +lean_dec(x_1356); +x_1367 = lean_unsigned_to_nat(4u); +x_1368 = l_Lean_Syntax_getArg(x_1, x_1367); +x_1369 = lean_unsigned_to_nat(6u); +x_1370 = l_Lean_Syntax_getArg(x_1, x_1369); +lean_dec(x_1); +x_1371 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1372 = lean_array_push(x_1371, x_1354); +x_1373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1373, 0, x_1345); +lean_ctor_set(x_1373, 1, x_1372); +x_1374 = l_Array_empty___closed__1; +x_1375 = lean_array_push(x_1374, x_1373); +x_1376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1376, 0, x_724); +lean_ctor_set(x_1376, 1, x_1375); +x_1377 = l_Lean_Elab_Command_expandMixfix___closed__39; +x_1378 = lean_array_push(x_1377, x_1376); +x_1379 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_1380 = lean_array_push(x_1379, x_1366); +x_1381 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_1382 = lean_array_push(x_1380, x_1381); +x_1383 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1383, 0, x_724); +lean_ctor_set(x_1383, 1, x_1382); +x_1384 = lean_array_push(x_1378, x_1383); +x_1385 = lean_array_push(x_1384, x_1368); +x_1386 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1387 = lean_array_push(x_1385, x_1386); +x_1388 = lean_array_push(x_1387, x_1370); +x_1389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1389, 0, x_4); +lean_ctor_set(x_1389, 1, x_1388); +x_1390 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1390, 0, x_1389); +lean_ctor_set(x_1390, 1, x_3); +return x_1390; +} +} +} +} +} +} +} +} +} +block_1003: +{ +lean_object* x_734; uint8_t x_735; +lean_dec(x_733); +x_734 = l_Lean_Elab_Command_expandMixfix___closed__5; +lean_inc(x_732); +x_735 = l_Lean_Syntax_isOfKind(x_732, x_734); +if (x_735 == 0) +{ +lean_object* x_736; uint8_t x_737; +x_736 = l_Lean_Elab_Command_expandMixfix___closed__7; +lean_inc(x_732); +x_737 = l_Lean_Syntax_isOfKind(x_732, x_736); +if (x_737 == 0) +{ +lean_object* x_738; lean_object* x_739; +lean_dec(x_732); +lean_dec(x_2); +lean_dec(x_1); +x_738 = lean_box(1); +x_739 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_739, 0, x_738); +lean_ctor_set(x_739, 1, x_3); +return x_739; +} +else +{ +lean_object* x_740; lean_object* x_741; uint8_t x_742; +x_740 = l_Lean_Syntax_getArgs(x_732); +lean_dec(x_732); +x_741 = lean_array_get_size(x_740); +lean_dec(x_740); +x_742 = lean_nat_dec_eq(x_741, x_731); +lean_dec(x_741); +if (x_742 == 0) +{ +lean_object* x_743; lean_object* x_744; +lean_dec(x_2); +lean_dec(x_1); +x_743 = lean_box(1); +x_744 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_744, 0, x_743); +lean_ctor_set(x_744, 1, x_3); +return x_744; +} +else +{ +lean_object* x_745; lean_object* x_746; uint8_t x_747; +x_745 = lean_unsigned_to_nat(2u); +x_746 = l_Lean_Syntax_getArg(x_1, x_745); +lean_inc(x_746); +x_747 = l_Lean_Syntax_isOfKind(x_746, x_724); +if (x_747 == 0) +{ +lean_object* x_748; lean_object* x_749; +lean_dec(x_746); +lean_dec(x_2); +lean_dec(x_1); +x_748 = lean_box(1); +x_749 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_749, 0, x_748); +lean_ctor_set(x_749, 1, x_3); +return x_749; +} +else +{ +lean_object* x_750; lean_object* x_751; uint8_t x_752; +x_750 = l_Lean_Syntax_getArgs(x_746); +x_751 = lean_array_get_size(x_750); +lean_dec(x_750); +x_752 = lean_nat_dec_eq(x_751, x_731); +lean_dec(x_751); +if (x_752 == 0) +{ +lean_object* x_753; lean_object* x_754; +lean_dec(x_746); +lean_dec(x_2); +lean_dec(x_1); +x_753 = lean_box(1); +x_754 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_754, 0, x_753); +lean_ctor_set(x_754, 1, x_3); +return x_754; +} +else +{ +lean_object* x_755; lean_object* x_756; uint8_t x_757; +x_755 = l_Lean_Syntax_getArg(x_746, x_14); +lean_dec(x_746); +x_756 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_755); +x_757 = l_Lean_Syntax_isOfKind(x_755, x_756); +if (x_757 == 0) +{ +lean_object* x_758; lean_object* x_759; +lean_dec(x_755); +lean_dec(x_2); +lean_dec(x_1); +x_758 = lean_box(1); +x_759 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_759, 0, x_758); +lean_ctor_set(x_759, 1, x_3); +return x_759; +} +else +{ +lean_object* x_760; lean_object* x_761; uint8_t x_762; +x_760 = l_Lean_Syntax_getArgs(x_755); +x_761 = lean_array_get_size(x_760); +lean_dec(x_760); +x_762 = lean_nat_dec_eq(x_761, x_745); +lean_dec(x_761); +if (x_762 == 0) +{ +lean_object* x_763; lean_object* x_764; +lean_dec(x_755); +lean_dec(x_2); +lean_dec(x_1); +x_763 = lean_box(1); +x_764 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_764, 0, x_763); +lean_ctor_set(x_764, 1, x_3); +return x_764; +} +else +{ +lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; uint8_t x_825; +x_765 = l_Lean_Syntax_getArg(x_755, x_731); +lean_dec(x_755); +x_766 = lean_unsigned_to_nat(3u); +x_767 = l_Lean_Syntax_getArg(x_1, x_766); +lean_inc(x_767); +x_825 = l_Lean_Syntax_isOfKind(x_767, x_724); +if (x_825 == 0) +{ +lean_object* x_826; +x_826 = lean_box(0); +x_768 = x_826; +goto block_824; +} +else +{ +lean_object* x_827; lean_object* x_828; uint8_t x_829; +x_827 = l_Lean_Syntax_getArgs(x_767); +x_828 = lean_array_get_size(x_827); +lean_dec(x_827); +x_829 = lean_nat_dec_eq(x_828, x_14); +lean_dec(x_828); +if (x_829 == 0) +{ +lean_object* x_830; +x_830 = lean_box(0); +x_768 = x_830; +goto block_824; +} +else +{ +lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; +lean_dec(x_767); +x_831 = lean_unsigned_to_nat(4u); +x_832 = l_Lean_Syntax_getArg(x_1, x_831); +x_833 = lean_unsigned_to_nat(6u); +x_834 = l_Lean_Syntax_getArg(x_1, x_833); +lean_dec(x_1); +x_835 = lean_ctor_get(x_2, 2); +lean_inc(x_835); +x_836 = lean_ctor_get(x_2, 1); +lean_inc(x_836); +lean_dec(x_2); +x_837 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_838 = lean_array_push(x_837, x_765); +x_839 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_839, 0, x_756); +lean_ctor_set(x_839, 1, x_838); +x_840 = l_Array_empty___closed__1; +x_841 = lean_array_push(x_840, x_839); +x_842 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_842, 0, x_724); +lean_ctor_set(x_842, 1, x_841); +x_843 = l_Lean_Elab_Command_expandMixfix___closed__38; +x_844 = lean_array_push(x_843, x_842); +x_845 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_846 = lean_array_push(x_844, x_845); +x_847 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_848 = l_Lean_addMacroScope(x_836, x_847, x_835); +x_849 = lean_box(0); +x_850 = l_Lean_instInhabitedSourceInfo___closed__1; +x_851 = l_Lean_Elab_Command_expandMixfix___closed__22; +x_852 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_852, 0, x_850); +lean_ctor_set(x_852, 1, x_851); +lean_ctor_set(x_852, 2, x_848); +lean_ctor_set(x_852, 3, x_849); +x_853 = lean_array_push(x_840, x_852); +lean_inc(x_853); +x_854 = lean_array_push(x_853, x_845); +x_855 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_856 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_856, 0, x_855); +lean_ctor_set(x_856, 1, x_854); +x_857 = lean_array_push(x_840, x_856); +x_858 = lean_array_push(x_857, x_832); +x_859 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_859, 0, x_724); +lean_ctor_set(x_859, 1, x_858); +x_860 = lean_array_push(x_846, x_859); +x_861 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_862 = lean_array_push(x_860, x_861); +x_863 = lean_array_push(x_840, x_834); +x_864 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_864, 0, x_724); +lean_ctor_set(x_864, 1, x_853); +x_865 = lean_array_push(x_863, x_864); +x_866 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_862, x_867); +x_869 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_870 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_870, 0, x_869); +lean_ctor_set(x_870, 1, x_868); +x_871 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_871, 0, x_870); +lean_ctor_set(x_871, 1, x_3); +return x_871; +} +} +block_824: +{ +uint8_t x_769; +lean_dec(x_768); +lean_inc(x_767); +x_769 = l_Lean_Syntax_isOfKind(x_767, x_724); +if (x_769 == 0) +{ +lean_object* x_770; lean_object* x_771; +lean_dec(x_767); +lean_dec(x_765); +lean_dec(x_2); +lean_dec(x_1); +x_770 = lean_box(1); +x_771 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_771, 0, x_770); +lean_ctor_set(x_771, 1, x_3); +return x_771; +} +else +{ +lean_object* x_772; lean_object* x_773; uint8_t x_774; +x_772 = l_Lean_Syntax_getArgs(x_767); +x_773 = lean_array_get_size(x_772); +lean_dec(x_772); +x_774 = lean_nat_dec_eq(x_773, x_766); +lean_dec(x_773); +if (x_774 == 0) +{ +lean_object* x_775; lean_object* x_776; +lean_dec(x_767); +lean_dec(x_765); +lean_dec(x_2); +lean_dec(x_1); +x_775 = lean_box(1); +x_776 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_776, 0, x_775); +lean_ctor_set(x_776, 1, x_3); +return x_776; +} +else +{ +lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; +x_777 = l_Lean_Syntax_getArg(x_767, x_731); +lean_dec(x_767); +x_778 = lean_unsigned_to_nat(4u); +x_779 = l_Lean_Syntax_getArg(x_1, x_778); +x_780 = lean_unsigned_to_nat(6u); +x_781 = l_Lean_Syntax_getArg(x_1, x_780); +lean_dec(x_1); +x_782 = lean_ctor_get(x_2, 2); +lean_inc(x_782); +x_783 = lean_ctor_get(x_2, 1); +lean_inc(x_783); +lean_dec(x_2); +x_784 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_785 = lean_array_push(x_784, x_765); +x_786 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_786, 0, x_756); +lean_ctor_set(x_786, 1, x_785); +x_787 = l_Array_empty___closed__1; +x_788 = lean_array_push(x_787, x_786); +x_789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_789, 0, x_724); +lean_ctor_set(x_789, 1, x_788); +x_790 = l_Lean_Elab_Command_expandMixfix___closed__38; +x_791 = lean_array_push(x_790, x_789); +x_792 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_793 = lean_array_push(x_792, x_777); +x_794 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_795 = lean_array_push(x_793, x_794); +x_796 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_796, 0, x_724); +lean_ctor_set(x_796, 1, x_795); +x_797 = lean_array_push(x_791, x_796); +x_798 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_799 = l_Lean_addMacroScope(x_783, x_798, x_782); +x_800 = lean_box(0); +x_801 = l_Lean_instInhabitedSourceInfo___closed__1; +x_802 = l_Lean_Elab_Command_expandMixfix___closed__22; +x_803 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_803, 0, x_801); +lean_ctor_set(x_803, 1, x_802); +lean_ctor_set(x_803, 2, x_799); +lean_ctor_set(x_803, 3, x_800); +x_804 = lean_array_push(x_787, x_803); +x_805 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +lean_inc(x_804); +x_806 = lean_array_push(x_804, x_805); +x_807 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_808 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_808, 0, x_807); +lean_ctor_set(x_808, 1, x_806); +x_809 = lean_array_push(x_787, x_808); +x_810 = lean_array_push(x_809, x_779); +x_811 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_811, 0, x_724); +lean_ctor_set(x_811, 1, x_810); +x_812 = lean_array_push(x_797, x_811); +x_813 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_814 = lean_array_push(x_812, x_813); +x_815 = lean_array_push(x_787, x_781); +x_816 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_816, 0, x_724); +lean_ctor_set(x_816, 1, x_804); +x_817 = lean_array_push(x_815, x_816); +x_818 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_819 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_819, 0, x_818); +lean_ctor_set(x_819, 1, x_817); +x_820 = lean_array_push(x_814, x_819); +x_821 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_822 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_822, 0, x_821); +lean_ctor_set(x_822, 1, x_820); +x_823 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_823, 0, x_822); +lean_ctor_set(x_823, 1, x_3); +return x_823; +} +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_872; lean_object* x_873; uint8_t x_874; +x_872 = l_Lean_Syntax_getArgs(x_732); +lean_dec(x_732); +x_873 = lean_array_get_size(x_872); +lean_dec(x_872); +x_874 = lean_nat_dec_eq(x_873, x_731); +lean_dec(x_873); +if (x_874 == 0) +{ +lean_object* x_875; lean_object* x_876; +lean_dec(x_2); +lean_dec(x_1); +x_875 = lean_box(1); +x_876 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_876, 0, x_875); +lean_ctor_set(x_876, 1, x_3); +return x_876; +} +else +{ +lean_object* x_877; lean_object* x_878; uint8_t x_879; +x_877 = lean_unsigned_to_nat(2u); +x_878 = l_Lean_Syntax_getArg(x_1, x_877); +lean_inc(x_878); +x_879 = l_Lean_Syntax_isOfKind(x_878, x_724); +if (x_879 == 0) +{ +lean_object* x_880; lean_object* x_881; +lean_dec(x_878); +lean_dec(x_2); +lean_dec(x_1); +x_880 = lean_box(1); +x_881 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_881, 0, x_880); +lean_ctor_set(x_881, 1, x_3); +return x_881; +} +else +{ +lean_object* x_882; lean_object* x_883; uint8_t x_884; +x_882 = l_Lean_Syntax_getArgs(x_878); +x_883 = lean_array_get_size(x_882); +lean_dec(x_882); +x_884 = lean_nat_dec_eq(x_883, x_731); +lean_dec(x_883); +if (x_884 == 0) +{ +lean_object* x_885; lean_object* x_886; +lean_dec(x_878); +lean_dec(x_2); +lean_dec(x_1); +x_885 = lean_box(1); +x_886 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_886, 0, x_885); +lean_ctor_set(x_886, 1, x_3); +return x_886; +} +else +{ +lean_object* x_887; lean_object* x_888; uint8_t x_889; +x_887 = l_Lean_Syntax_getArg(x_878, x_14); +lean_dec(x_878); +x_888 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_887); +x_889 = l_Lean_Syntax_isOfKind(x_887, x_888); +if (x_889 == 0) +{ +lean_object* x_890; lean_object* x_891; +lean_dec(x_887); +lean_dec(x_2); +lean_dec(x_1); +x_890 = lean_box(1); +x_891 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_891, 0, x_890); +lean_ctor_set(x_891, 1, x_3); +return x_891; +} +else +{ +lean_object* x_892; lean_object* x_893; uint8_t x_894; +x_892 = l_Lean_Syntax_getArgs(x_887); +x_893 = lean_array_get_size(x_892); +lean_dec(x_892); +x_894 = lean_nat_dec_eq(x_893, x_877); +lean_dec(x_893); +if (x_894 == 0) +{ +lean_object* x_895; lean_object* x_896; +lean_dec(x_887); +lean_dec(x_2); +lean_dec(x_1); +x_895 = lean_box(1); +x_896 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_896, 0, x_895); +lean_ctor_set(x_896, 1, x_3); +return x_896; +} +else +{ +lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; uint8_t x_956; +x_897 = l_Lean_Syntax_getArg(x_887, x_731); +lean_dec(x_887); +x_898 = lean_unsigned_to_nat(3u); +x_899 = l_Lean_Syntax_getArg(x_1, x_898); +lean_inc(x_899); +x_956 = l_Lean_Syntax_isOfKind(x_899, x_724); +if (x_956 == 0) +{ +lean_object* x_957; +x_957 = lean_box(0); +x_900 = x_957; +goto block_955; +} +else +{ +lean_object* x_958; lean_object* x_959; uint8_t x_960; +x_958 = l_Lean_Syntax_getArgs(x_899); +x_959 = lean_array_get_size(x_958); +lean_dec(x_958); +x_960 = lean_nat_dec_eq(x_959, x_14); +lean_dec(x_959); +if (x_960 == 0) +{ +lean_object* x_961; +x_961 = lean_box(0); +x_900 = x_961; +goto block_955; +} +else +{ +lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; +lean_dec(x_899); +x_962 = lean_unsigned_to_nat(4u); +x_963 = l_Lean_Syntax_getArg(x_1, x_962); +x_964 = lean_unsigned_to_nat(6u); +x_965 = l_Lean_Syntax_getArg(x_1, x_964); +lean_dec(x_1); +x_966 = lean_ctor_get(x_2, 2); +lean_inc(x_966); +x_967 = lean_ctor_get(x_2, 1); +lean_inc(x_967); +lean_dec(x_2); +x_968 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_969 = lean_array_push(x_968, x_897); +x_970 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_970, 0, x_888); +lean_ctor_set(x_970, 1, x_969); +x_971 = l_Array_empty___closed__1; +x_972 = lean_array_push(x_971, x_970); +x_973 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_973, 0, x_724); +lean_ctor_set(x_973, 1, x_972); +x_974 = l_Lean_Elab_Command_expandMixfix___closed__38; +lean_inc(x_973); +x_975 = lean_array_push(x_974, x_973); +x_976 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_977 = lean_array_push(x_975, x_976); +x_978 = lean_array_push(x_971, x_963); +x_979 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_980 = l_Lean_addMacroScope(x_967, x_979, x_966); +x_981 = lean_box(0); +x_982 = l_Lean_instInhabitedSourceInfo___closed__1; +x_983 = l_Lean_Elab_Command_expandMixfix___closed__22; +x_984 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_984, 0, x_982); +lean_ctor_set(x_984, 1, x_983); +lean_ctor_set(x_984, 2, x_980); +lean_ctor_set(x_984, 3, x_981); +x_985 = lean_array_push(x_971, x_984); +lean_inc(x_985); +x_986 = lean_array_push(x_985, x_973); +x_987 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_988 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_988, 0, x_987); +lean_ctor_set(x_988, 1, x_986); +x_989 = lean_array_push(x_978, x_988); +x_990 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_990, 0, x_724); +lean_ctor_set(x_990, 1, x_989); +x_991 = lean_array_push(x_977, x_990); +x_992 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_993 = lean_array_push(x_991, x_992); +x_994 = lean_array_push(x_971, x_965); +x_995 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_995, 0, x_724); +lean_ctor_set(x_995, 1, x_985); +x_996 = lean_array_push(x_994, x_995); +x_997 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_998 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_998, 0, x_997); +lean_ctor_set(x_998, 1, x_996); +x_999 = lean_array_push(x_993, x_998); +x_1000 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_1001 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1001, 0, x_1000); +lean_ctor_set(x_1001, 1, x_999); +x_1002 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1002, 0, x_1001); +lean_ctor_set(x_1002, 1, x_3); +return x_1002; +} +} +block_955: +{ +uint8_t x_901; +lean_dec(x_900); +lean_inc(x_899); +x_901 = l_Lean_Syntax_isOfKind(x_899, x_724); +if (x_901 == 0) +{ +lean_object* x_902; lean_object* x_903; +lean_dec(x_899); +lean_dec(x_897); +lean_dec(x_2); +lean_dec(x_1); +x_902 = lean_box(1); +x_903 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_903, 0, x_902); +lean_ctor_set(x_903, 1, x_3); +return x_903; +} +else +{ +lean_object* x_904; lean_object* x_905; uint8_t x_906; +x_904 = l_Lean_Syntax_getArgs(x_899); +x_905 = lean_array_get_size(x_904); +lean_dec(x_904); +x_906 = lean_nat_dec_eq(x_905, x_898); +lean_dec(x_905); +if (x_906 == 0) +{ +lean_object* x_907; lean_object* x_908; +lean_dec(x_899); +lean_dec(x_897); +lean_dec(x_2); +lean_dec(x_1); +x_907 = lean_box(1); +x_908 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_908, 0, x_907); +lean_ctor_set(x_908, 1, x_3); +return x_908; +} +else +{ +lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; +x_909 = l_Lean_Syntax_getArg(x_899, x_731); +lean_dec(x_899); +x_910 = lean_unsigned_to_nat(4u); +x_911 = l_Lean_Syntax_getArg(x_1, x_910); +x_912 = lean_unsigned_to_nat(6u); +x_913 = l_Lean_Syntax_getArg(x_1, x_912); +lean_dec(x_1); +x_914 = lean_ctor_get(x_2, 2); +lean_inc(x_914); +x_915 = lean_ctor_get(x_2, 1); +lean_inc(x_915); +lean_dec(x_2); +x_916 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_917 = lean_array_push(x_916, x_897); +x_918 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_918, 0, x_888); +lean_ctor_set(x_918, 1, x_917); +x_919 = l_Array_empty___closed__1; +x_920 = lean_array_push(x_919, x_918); +x_921 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_921, 0, x_724); +lean_ctor_set(x_921, 1, x_920); +x_922 = l_Lean_Elab_Command_expandMixfix___closed__38; +lean_inc(x_921); +x_923 = lean_array_push(x_922, x_921); +x_924 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_925 = lean_array_push(x_924, x_909); +x_926 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_927 = lean_array_push(x_925, x_926); +x_928 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_928, 0, x_724); +lean_ctor_set(x_928, 1, x_927); +x_929 = lean_array_push(x_923, x_928); +x_930 = lean_array_push(x_919, x_911); +x_931 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_932 = l_Lean_addMacroScope(x_915, x_931, x_914); +x_933 = lean_box(0); +x_934 = l_Lean_instInhabitedSourceInfo___closed__1; +x_935 = l_Lean_Elab_Command_expandMixfix___closed__22; +x_936 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_936, 0, x_934); +lean_ctor_set(x_936, 1, x_935); +lean_ctor_set(x_936, 2, x_932); +lean_ctor_set(x_936, 3, x_933); +x_937 = lean_array_push(x_919, x_936); +lean_inc(x_937); +x_938 = lean_array_push(x_937, x_921); +x_939 = l_Lean_Elab_Command_expandMixfix___closed__19; +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 = lean_array_push(x_930, x_940); +x_942 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_942, 0, x_724); +lean_ctor_set(x_942, 1, x_941); +x_943 = lean_array_push(x_929, x_942); +x_944 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_945 = lean_array_push(x_943, x_944); +x_946 = lean_array_push(x_919, x_913); +x_947 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_947, 0, x_724); +lean_ctor_set(x_947, 1, x_937); +x_948 = lean_array_push(x_946, x_947); +x_949 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_950 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_950, 0, x_949); +lean_ctor_set(x_950, 1, x_948); +x_951 = lean_array_push(x_945, x_950); +x_952 = l_Lean_Elab_Command_expandMixfix___closed__11; +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_alloc_ctor(0, 2, 0); +lean_ctor_set(x_954, 0, x_953); +lean_ctor_set(x_954, 1, x_3); +return x_954; +} +} +} +} +} +} +} +} +} +} +block_1326: +{ +lean_object* x_1005; uint8_t x_1006; +lean_dec(x_1004); +x_1005 = l_Lean_Elab_Command_expandMixfix___closed__25; +lean_inc(x_732); +x_1006 = l_Lean_Syntax_isOfKind(x_732, x_1005); +if (x_1006 == 0) +{ +lean_object* x_1007; uint8_t x_1008; +x_1007 = l_Lean_Elab_Command_expandMixfix___closed__27; +lean_inc(x_732); +x_1008 = l_Lean_Syntax_isOfKind(x_732, x_1007); +if (x_1008 == 0) +{ +lean_object* x_1009; +x_1009 = lean_box(0); +x_733 = x_1009; +goto block_1003; +} +else +{ +lean_object* x_1010; lean_object* x_1011; uint8_t x_1012; +x_1010 = l_Lean_Syntax_getArgs(x_732); +x_1011 = lean_array_get_size(x_1010); +lean_dec(x_1010); +x_1012 = lean_nat_dec_eq(x_1011, x_731); +lean_dec(x_1011); +if (x_1012 == 0) +{ +lean_object* x_1013; +x_1013 = lean_box(0); +x_733 = x_1013; +goto block_1003; +} +else +{ +lean_object* x_1014; lean_object* x_1015; uint8_t x_1016; +lean_dec(x_732); +x_1014 = lean_unsigned_to_nat(2u); +x_1015 = l_Lean_Syntax_getArg(x_1, x_1014); +lean_inc(x_1015); +x_1016 = l_Lean_Syntax_isOfKind(x_1015, x_724); +if (x_1016 == 0) +{ +lean_object* x_1017; lean_object* x_1018; +lean_dec(x_1015); +lean_dec(x_2); +lean_dec(x_1); +x_1017 = lean_box(1); +x_1018 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1018, 0, x_1017); +lean_ctor_set(x_1018, 1, x_3); +return x_1018; +} +else +{ +lean_object* x_1019; lean_object* x_1020; uint8_t x_1021; +x_1019 = l_Lean_Syntax_getArgs(x_1015); +x_1020 = lean_array_get_size(x_1019); +lean_dec(x_1019); +x_1021 = lean_nat_dec_eq(x_1020, x_731); +lean_dec(x_1020); +if (x_1021 == 0) +{ +lean_object* x_1022; lean_object* x_1023; +lean_dec(x_1015); +lean_dec(x_2); +lean_dec(x_1); +x_1022 = lean_box(1); +x_1023 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1023, 0, x_1022); +lean_ctor_set(x_1023, 1, x_3); +return x_1023; +} +else +{ +lean_object* x_1024; lean_object* x_1025; uint8_t x_1026; +x_1024 = l_Lean_Syntax_getArg(x_1015, x_14); +lean_dec(x_1015); +x_1025 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_1024); +x_1026 = l_Lean_Syntax_isOfKind(x_1024, x_1025); +if (x_1026 == 0) +{ +lean_object* x_1027; lean_object* x_1028; +lean_dec(x_1024); +lean_dec(x_2); +lean_dec(x_1); +x_1027 = lean_box(1); +x_1028 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1028, 0, x_1027); +lean_ctor_set(x_1028, 1, x_3); +return x_1028; +} +else +{ +lean_object* x_1029; lean_object* x_1030; uint8_t x_1031; +x_1029 = l_Lean_Syntax_getArgs(x_1024); +x_1030 = lean_array_get_size(x_1029); +lean_dec(x_1029); +x_1031 = lean_nat_dec_eq(x_1030, x_1014); +lean_dec(x_1030); +if (x_1031 == 0) +{ +lean_object* x_1032; lean_object* x_1033; +lean_dec(x_1024); +lean_dec(x_2); +lean_dec(x_1); +x_1032 = lean_box(1); +x_1033 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1033, 0, x_1032); +lean_ctor_set(x_1033, 1, x_3); +return x_1033; +} +else +{ +lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; uint8_t x_1112; +x_1034 = l_Lean_Syntax_getArg(x_1024, x_731); +lean_dec(x_1024); +x_1035 = lean_unsigned_to_nat(3u); +x_1036 = l_Lean_Syntax_getArg(x_1, x_1035); +lean_inc(x_1036); +x_1112 = l_Lean_Syntax_isOfKind(x_1036, x_724); +if (x_1112 == 0) +{ +lean_object* x_1113; +x_1113 = lean_box(0); +x_1037 = x_1113; +goto block_1111; +} +else +{ +lean_object* x_1114; lean_object* x_1115; uint8_t x_1116; +x_1114 = l_Lean_Syntax_getArgs(x_1036); +x_1115 = lean_array_get_size(x_1114); +lean_dec(x_1114); +x_1116 = lean_nat_dec_eq(x_1115, x_14); +lean_dec(x_1115); +if (x_1116 == 0) +{ +lean_object* x_1117; +x_1117 = lean_box(0); +x_1037 = x_1117; +goto block_1111; +} +else +{ +lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; +lean_dec(x_1036); +x_1118 = lean_unsigned_to_nat(4u); +x_1119 = l_Lean_Syntax_getArg(x_1, x_1118); +x_1120 = lean_unsigned_to_nat(6u); +x_1121 = l_Lean_Syntax_getArg(x_1, x_1120); +lean_dec(x_1); +x_1122 = l_Lean_Syntax_toNat(x_1034); +x_1123 = lean_nat_add(x_1122, x_731); +lean_dec(x_1122); +x_1124 = l_Nat_repr(x_1123); +x_1125 = l_Lean_numLitKind; +x_1126 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1127 = l_Lean_Syntax_mkLit(x_1125, x_1124, x_1126); +x_1128 = lean_ctor_get(x_2, 2); +lean_inc(x_1128); +x_1129 = lean_ctor_get(x_2, 1); +lean_inc(x_1129); +lean_dec(x_2); +x_1130 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1131 = lean_array_push(x_1130, x_1034); +x_1132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1132, 0, x_1025); +lean_ctor_set(x_1132, 1, x_1131); +x_1133 = l_Array_empty___closed__1; +x_1134 = lean_array_push(x_1133, x_1132); +x_1135 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1135, 0, x_724); +lean_ctor_set(x_1135, 1, x_1134); +x_1136 = l_Lean_Elab_Command_expandMixfix___closed__38; +x_1137 = lean_array_push(x_1136, x_1135); +x_1138 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_1139 = lean_array_push(x_1137, x_1138); +x_1140 = l_Lean_Elab_Command_expandMixfix___closed__31; +lean_inc(x_1128); +lean_inc(x_1129); +x_1141 = l_Lean_addMacroScope(x_1129, x_1140, x_1128); +x_1142 = lean_box(0); +x_1143 = l_Lean_Elab_Command_expandMixfix___closed__30; +x_1144 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1144, 0, x_1126); +lean_ctor_set(x_1144, 1, x_1143); +lean_ctor_set(x_1144, 2, x_1141); +lean_ctor_set(x_1144, 3, x_1142); +x_1145 = lean_array_push(x_1133, x_1144); +lean_inc(x_1145); +x_1146 = lean_array_push(x_1145, x_1138); +x_1147 = l_Lean_Elab_Command_expandMixfix___closed__19; +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 = lean_array_push(x_1133, x_1148); +x_1150 = lean_array_push(x_1149, x_1119); +x_1151 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_1152 = l_Lean_addMacroScope(x_1129, x_1151, x_1128); +x_1153 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_1154 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1154, 0, x_1126); +lean_ctor_set(x_1154, 1, x_1153); +lean_ctor_set(x_1154, 2, x_1152); +lean_ctor_set(x_1154, 3, x_1142); +lean_inc(x_1154); +x_1155 = lean_array_push(x_1133, x_1154); +x_1156 = lean_array_push(x_1130, x_1127); +x_1157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1157, 0, x_1025); +lean_ctor_set(x_1157, 1, x_1156); +x_1158 = lean_array_push(x_1133, x_1157); +x_1159 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1159, 0, x_724); +lean_ctor_set(x_1159, 1, x_1158); +x_1160 = lean_array_push(x_1155, x_1159); +x_1161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1161, 0, x_1147); +lean_ctor_set(x_1161, 1, x_1160); +x_1162 = lean_array_push(x_1150, x_1161); +x_1163 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1163, 0, x_724); +lean_ctor_set(x_1163, 1, x_1162); +x_1164 = lean_array_push(x_1139, x_1163); +x_1165 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1166 = lean_array_push(x_1164, x_1165); +x_1167 = lean_array_push(x_1133, x_1121); +x_1168 = lean_array_push(x_1145, x_1154); +x_1169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1169, 0, x_724); +lean_ctor_set(x_1169, 1, x_1168); +x_1170 = lean_array_push(x_1167, x_1169); +x_1171 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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 = lean_array_push(x_1166, x_1172); +x_1174 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_1175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1175, 0, x_1174); +lean_ctor_set(x_1175, 1, x_1173); +x_1176 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1176, 0, x_1175); +lean_ctor_set(x_1176, 1, x_3); +return x_1176; +} +} +block_1111: +{ +uint8_t x_1038; +lean_dec(x_1037); +lean_inc(x_1036); +x_1038 = l_Lean_Syntax_isOfKind(x_1036, x_724); +if (x_1038 == 0) +{ +lean_object* x_1039; lean_object* x_1040; +lean_dec(x_1036); +lean_dec(x_1034); +lean_dec(x_2); +lean_dec(x_1); +x_1039 = lean_box(1); +x_1040 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1040, 0, x_1039); +lean_ctor_set(x_1040, 1, x_3); +return x_1040; +} +else +{ +lean_object* x_1041; lean_object* x_1042; uint8_t x_1043; +x_1041 = l_Lean_Syntax_getArgs(x_1036); +x_1042 = lean_array_get_size(x_1041); +lean_dec(x_1041); +x_1043 = lean_nat_dec_eq(x_1042, x_1035); +lean_dec(x_1042); +if (x_1043 == 0) +{ +lean_object* x_1044; lean_object* x_1045; +lean_dec(x_1036); +lean_dec(x_1034); +lean_dec(x_2); +lean_dec(x_1); +x_1044 = lean_box(1); +x_1045 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1045, 0, x_1044); +lean_ctor_set(x_1045, 1, x_3); +return x_1045; +} +else +{ +lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; +x_1046 = l_Lean_Syntax_getArg(x_1036, x_731); +lean_dec(x_1036); +x_1047 = lean_unsigned_to_nat(4u); +x_1048 = l_Lean_Syntax_getArg(x_1, x_1047); +x_1049 = lean_unsigned_to_nat(6u); +x_1050 = l_Lean_Syntax_getArg(x_1, x_1049); +lean_dec(x_1); +x_1051 = l_Lean_Syntax_toNat(x_1034); +x_1052 = lean_nat_add(x_1051, x_731); +lean_dec(x_1051); +x_1053 = l_Nat_repr(x_1052); +x_1054 = l_Lean_numLitKind; +x_1055 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1056 = l_Lean_Syntax_mkLit(x_1054, x_1053, x_1055); +x_1057 = lean_ctor_get(x_2, 2); +lean_inc(x_1057); +x_1058 = lean_ctor_get(x_2, 1); +lean_inc(x_1058); +lean_dec(x_2); +x_1059 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1060 = lean_array_push(x_1059, x_1034); +x_1061 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1061, 0, x_1025); +lean_ctor_set(x_1061, 1, x_1060); +x_1062 = l_Array_empty___closed__1; +x_1063 = lean_array_push(x_1062, x_1061); +x_1064 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1064, 0, x_724); +lean_ctor_set(x_1064, 1, x_1063); +x_1065 = l_Lean_Elab_Command_expandMixfix___closed__38; +x_1066 = lean_array_push(x_1065, x_1064); +x_1067 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_1068 = lean_array_push(x_1067, x_1046); +x_1069 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_1070 = lean_array_push(x_1068, x_1069); +x_1071 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1071, 0, x_724); +lean_ctor_set(x_1071, 1, x_1070); +x_1072 = lean_array_push(x_1066, x_1071); +x_1073 = l_Lean_Elab_Command_expandMixfix___closed__31; +lean_inc(x_1057); +lean_inc(x_1058); +x_1074 = l_Lean_addMacroScope(x_1058, x_1073, x_1057); +x_1075 = lean_box(0); +x_1076 = l_Lean_Elab_Command_expandMixfix___closed__30; +x_1077 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1077, 0, x_1055); +lean_ctor_set(x_1077, 1, x_1076); +lean_ctor_set(x_1077, 2, x_1074); +lean_ctor_set(x_1077, 3, x_1075); +x_1078 = lean_array_push(x_1062, x_1077); +x_1079 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +lean_inc(x_1078); +x_1080 = lean_array_push(x_1078, x_1079); +x_1081 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_1082 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1082, 0, x_1081); +lean_ctor_set(x_1082, 1, x_1080); +x_1083 = lean_array_push(x_1062, x_1082); +x_1084 = lean_array_push(x_1083, x_1048); +x_1085 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_1086 = l_Lean_addMacroScope(x_1058, x_1085, x_1057); +x_1087 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_1088 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1088, 0, x_1055); +lean_ctor_set(x_1088, 1, x_1087); +lean_ctor_set(x_1088, 2, x_1086); +lean_ctor_set(x_1088, 3, x_1075); +lean_inc(x_1088); +x_1089 = lean_array_push(x_1062, x_1088); +x_1090 = lean_array_push(x_1059, x_1056); +x_1091 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1091, 0, x_1025); +lean_ctor_set(x_1091, 1, x_1090); +x_1092 = lean_array_push(x_1062, x_1091); +x_1093 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1093, 0, x_724); +lean_ctor_set(x_1093, 1, x_1092); +x_1094 = lean_array_push(x_1089, x_1093); +x_1095 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1095, 0, x_1081); +lean_ctor_set(x_1095, 1, x_1094); +x_1096 = lean_array_push(x_1084, x_1095); +x_1097 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1097, 0, x_724); +lean_ctor_set(x_1097, 1, x_1096); +x_1098 = lean_array_push(x_1072, x_1097); +x_1099 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1100 = lean_array_push(x_1098, x_1099); +x_1101 = lean_array_push(x_1062, x_1050); +x_1102 = lean_array_push(x_1078, x_1088); +x_1103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1103, 0, x_724); +lean_ctor_set(x_1103, 1, x_1102); +x_1104 = lean_array_push(x_1101, x_1103); +x_1105 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1106, 0, x_1105); +lean_ctor_set(x_1106, 1, x_1104); +x_1107 = lean_array_push(x_1100, x_1106); +x_1108 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_1109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1109, 0, x_1108); +lean_ctor_set(x_1109, 1, x_1107); +x_1110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1110, 0, x_1109); +lean_ctor_set(x_1110, 1, x_3); +return x_1110; +} +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_1177; lean_object* x_1178; uint8_t x_1179; +x_1177 = l_Lean_Syntax_getArgs(x_732); +x_1178 = lean_array_get_size(x_1177); +lean_dec(x_1177); +x_1179 = lean_nat_dec_eq(x_1178, x_731); +lean_dec(x_1178); +if (x_1179 == 0) +{ +lean_object* x_1180; +x_1180 = lean_box(0); +x_733 = x_1180; +goto block_1003; +} +else +{ +lean_object* x_1181; lean_object* x_1182; uint8_t x_1183; +lean_dec(x_732); +x_1181 = lean_unsigned_to_nat(2u); +x_1182 = l_Lean_Syntax_getArg(x_1, x_1181); +lean_inc(x_1182); +x_1183 = l_Lean_Syntax_isOfKind(x_1182, x_724); +if (x_1183 == 0) +{ +lean_object* x_1184; lean_object* x_1185; +lean_dec(x_1182); +lean_dec(x_2); +lean_dec(x_1); +x_1184 = lean_box(1); +x_1185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1185, 0, x_1184); +lean_ctor_set(x_1185, 1, x_3); +return x_1185; +} +else +{ +lean_object* x_1186; lean_object* x_1187; uint8_t x_1188; +x_1186 = l_Lean_Syntax_getArgs(x_1182); +x_1187 = lean_array_get_size(x_1186); +lean_dec(x_1186); +x_1188 = lean_nat_dec_eq(x_1187, x_731); +lean_dec(x_1187); +if (x_1188 == 0) +{ +lean_object* x_1189; lean_object* x_1190; +lean_dec(x_1182); +lean_dec(x_2); +lean_dec(x_1); +x_1189 = lean_box(1); +x_1190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1190, 0, x_1189); +lean_ctor_set(x_1190, 1, x_3); +return x_1190; +} +else +{ +lean_object* x_1191; lean_object* x_1192; uint8_t x_1193; +x_1191 = l_Lean_Syntax_getArg(x_1182, x_14); +lean_dec(x_1182); +x_1192 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_1191); +x_1193 = l_Lean_Syntax_isOfKind(x_1191, x_1192); +if (x_1193 == 0) +{ +lean_object* x_1194; lean_object* x_1195; +lean_dec(x_1191); +lean_dec(x_2); +lean_dec(x_1); +x_1194 = lean_box(1); +x_1195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1195, 0, x_1194); +lean_ctor_set(x_1195, 1, x_3); +return x_1195; +} +else +{ +lean_object* x_1196; lean_object* x_1197; uint8_t x_1198; +x_1196 = l_Lean_Syntax_getArgs(x_1191); +x_1197 = lean_array_get_size(x_1196); +lean_dec(x_1196); +x_1198 = lean_nat_dec_eq(x_1197, x_1181); +lean_dec(x_1197); +if (x_1198 == 0) +{ +lean_object* x_1199; lean_object* x_1200; +lean_dec(x_1191); +lean_dec(x_2); +lean_dec(x_1); +x_1199 = lean_box(1); +x_1200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1200, 0, x_1199); +lean_ctor_set(x_1200, 1, x_3); +return x_1200; +} +else +{ +lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; uint8_t x_1270; +x_1201 = l_Lean_Syntax_getArg(x_1191, x_731); +lean_dec(x_1191); +x_1202 = lean_unsigned_to_nat(3u); +x_1203 = l_Lean_Syntax_getArg(x_1, x_1202); +lean_inc(x_1203); +x_1270 = l_Lean_Syntax_isOfKind(x_1203, x_724); +if (x_1270 == 0) +{ +lean_object* x_1271; +x_1271 = lean_box(0); +x_1204 = x_1271; +goto block_1269; +} +else +{ +lean_object* x_1272; lean_object* x_1273; uint8_t x_1274; +x_1272 = l_Lean_Syntax_getArgs(x_1203); +x_1273 = lean_array_get_size(x_1272); +lean_dec(x_1272); +x_1274 = lean_nat_dec_eq(x_1273, x_14); +lean_dec(x_1273); +if (x_1274 == 0) +{ +lean_object* x_1275; +x_1275 = lean_box(0); +x_1204 = x_1275; +goto block_1269; +} +else +{ +lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; +lean_dec(x_1203); +x_1276 = lean_unsigned_to_nat(4u); +x_1277 = l_Lean_Syntax_getArg(x_1, x_1276); +x_1278 = lean_unsigned_to_nat(6u); +x_1279 = l_Lean_Syntax_getArg(x_1, x_1278); +lean_dec(x_1); +x_1280 = lean_ctor_get(x_2, 2); +lean_inc(x_1280); +x_1281 = lean_ctor_get(x_2, 1); +lean_inc(x_1281); +lean_dec(x_2); +x_1282 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1283 = lean_array_push(x_1282, x_1201); +x_1284 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1284, 0, x_1192); +lean_ctor_set(x_1284, 1, x_1283); +x_1285 = l_Array_empty___closed__1; +x_1286 = lean_array_push(x_1285, x_1284); +x_1287 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1287, 0, x_724); +lean_ctor_set(x_1287, 1, x_1286); +x_1288 = l_Lean_Elab_Command_expandMixfix___closed__38; +lean_inc(x_1287); +x_1289 = lean_array_push(x_1288, x_1287); +x_1290 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_1291 = lean_array_push(x_1289, x_1290); +x_1292 = l_Lean_Elab_Command_expandMixfix___closed__31; +lean_inc(x_1280); +lean_inc(x_1281); +x_1293 = l_Lean_addMacroScope(x_1281, x_1292, x_1280); +x_1294 = lean_box(0); +x_1295 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1296 = l_Lean_Elab_Command_expandMixfix___closed__30; +x_1297 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1297, 0, x_1295); +lean_ctor_set(x_1297, 1, x_1296); +lean_ctor_set(x_1297, 2, x_1293); +lean_ctor_set(x_1297, 3, x_1294); +x_1298 = lean_array_push(x_1285, x_1297); +lean_inc(x_1298); +x_1299 = lean_array_push(x_1298, x_1290); +x_1300 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_1301 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1301, 0, x_1300); +lean_ctor_set(x_1301, 1, x_1299); +x_1302 = lean_array_push(x_1285, x_1301); +x_1303 = lean_array_push(x_1302, x_1277); +x_1304 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_1305 = l_Lean_addMacroScope(x_1281, x_1304, x_1280); +x_1306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_1307 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1307, 0, x_1295); +lean_ctor_set(x_1307, 1, x_1306); +lean_ctor_set(x_1307, 2, x_1305); +lean_ctor_set(x_1307, 3, x_1294); +lean_inc(x_1307); +x_1308 = lean_array_push(x_1285, x_1307); +x_1309 = lean_array_push(x_1308, x_1287); +x_1310 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1310, 0, x_1300); +lean_ctor_set(x_1310, 1, x_1309); +x_1311 = lean_array_push(x_1303, x_1310); +x_1312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1312, 0, x_724); +lean_ctor_set(x_1312, 1, x_1311); +x_1313 = lean_array_push(x_1291, x_1312); +x_1314 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1315 = lean_array_push(x_1313, x_1314); +x_1316 = lean_array_push(x_1285, x_1279); +x_1317 = lean_array_push(x_1298, x_1307); +x_1318 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1318, 0, x_724); +lean_ctor_set(x_1318, 1, x_1317); +x_1319 = lean_array_push(x_1316, x_1318); +x_1320 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_1315, x_1321); +x_1323 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_1324 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1324, 0, x_1323); +lean_ctor_set(x_1324, 1, x_1322); +x_1325 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1325, 0, x_1324); +lean_ctor_set(x_1325, 1, x_3); +return x_1325; +} +} +block_1269: +{ +uint8_t x_1205; +lean_dec(x_1204); +lean_inc(x_1203); +x_1205 = l_Lean_Syntax_isOfKind(x_1203, x_724); +if (x_1205 == 0) +{ +lean_object* x_1206; lean_object* x_1207; +lean_dec(x_1203); +lean_dec(x_1201); +lean_dec(x_2); +lean_dec(x_1); +x_1206 = lean_box(1); +x_1207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1207, 0, x_1206); +lean_ctor_set(x_1207, 1, x_3); +return x_1207; +} +else +{ +lean_object* x_1208; lean_object* x_1209; uint8_t x_1210; +x_1208 = l_Lean_Syntax_getArgs(x_1203); +x_1209 = lean_array_get_size(x_1208); +lean_dec(x_1208); +x_1210 = lean_nat_dec_eq(x_1209, x_1202); +lean_dec(x_1209); +if (x_1210 == 0) +{ +lean_object* x_1211; lean_object* x_1212; +lean_dec(x_1203); +lean_dec(x_1201); +lean_dec(x_2); +lean_dec(x_1); +x_1211 = lean_box(1); +x_1212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1212, 0, x_1211); +lean_ctor_set(x_1212, 1, x_3); +return x_1212; +} +else +{ +lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; +x_1213 = l_Lean_Syntax_getArg(x_1203, x_731); +lean_dec(x_1203); +x_1214 = lean_unsigned_to_nat(4u); +x_1215 = l_Lean_Syntax_getArg(x_1, x_1214); +x_1216 = lean_unsigned_to_nat(6u); +x_1217 = l_Lean_Syntax_getArg(x_1, x_1216); +lean_dec(x_1); +x_1218 = lean_ctor_get(x_2, 2); +lean_inc(x_1218); +x_1219 = lean_ctor_get(x_2, 1); +lean_inc(x_1219); +lean_dec(x_2); +x_1220 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_1221 = lean_array_push(x_1220, x_1201); +x_1222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1222, 0, x_1192); +lean_ctor_set(x_1222, 1, x_1221); +x_1223 = l_Array_empty___closed__1; +x_1224 = lean_array_push(x_1223, x_1222); +x_1225 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1225, 0, x_724); +lean_ctor_set(x_1225, 1, x_1224); +x_1226 = l_Lean_Elab_Command_expandMixfix___closed__38; +lean_inc(x_1225); +x_1227 = lean_array_push(x_1226, x_1225); +x_1228 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_1229 = lean_array_push(x_1228, x_1213); +x_1230 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_1231 = lean_array_push(x_1229, x_1230); +x_1232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1232, 0, x_724); +lean_ctor_set(x_1232, 1, x_1231); +x_1233 = lean_array_push(x_1227, x_1232); +x_1234 = l_Lean_Elab_Command_expandMixfix___closed__31; +lean_inc(x_1218); +lean_inc(x_1219); +x_1235 = l_Lean_addMacroScope(x_1219, x_1234, x_1218); +x_1236 = lean_box(0); +x_1237 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1238 = l_Lean_Elab_Command_expandMixfix___closed__30; +x_1239 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1239, 0, x_1237); +lean_ctor_set(x_1239, 1, x_1238); +lean_ctor_set(x_1239, 2, x_1235); +lean_ctor_set(x_1239, 3, x_1236); +x_1240 = lean_array_push(x_1223, x_1239); +x_1241 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +lean_inc(x_1240); +x_1242 = lean_array_push(x_1240, x_1241); +x_1243 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_1244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1244, 0, x_1243); +lean_ctor_set(x_1244, 1, x_1242); +x_1245 = lean_array_push(x_1223, x_1244); +x_1246 = lean_array_push(x_1245, x_1215); +x_1247 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_1248 = l_Lean_addMacroScope(x_1219, x_1247, x_1218); +x_1249 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_1250 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1250, 0, x_1237); +lean_ctor_set(x_1250, 1, x_1249); +lean_ctor_set(x_1250, 2, x_1248); +lean_ctor_set(x_1250, 3, x_1236); +lean_inc(x_1250); +x_1251 = lean_array_push(x_1223, x_1250); +x_1252 = lean_array_push(x_1251, x_1225); +x_1253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1253, 0, x_1243); +lean_ctor_set(x_1253, 1, x_1252); +x_1254 = lean_array_push(x_1246, x_1253); +x_1255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1255, 0, x_724); +lean_ctor_set(x_1255, 1, x_1254); +x_1256 = lean_array_push(x_1233, x_1255); +x_1257 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1258 = lean_array_push(x_1256, x_1257); +x_1259 = lean_array_push(x_1223, x_1217); +x_1260 = lean_array_push(x_1240, x_1250); +x_1261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1261, 0, x_724); +lean_ctor_set(x_1261, 1, x_1260); +x_1262 = lean_array_push(x_1259, x_1261); +x_1263 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1264 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1264, 0, x_1263); +lean_ctor_set(x_1264, 1, x_1262); +x_1265 = lean_array_push(x_1258, x_1264); +x_1266 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_1267 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1267, 0, x_1266); +lean_ctor_set(x_1267, 1, x_1265); +x_1268 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1268, 0, x_1267); +lean_ctor_set(x_1268, 1, x_3); +return x_1268; +} +} +} +} +} +} +} +} +} +} +} +} +block_723: +{ +lean_object* x_17; uint8_t x_18; +lean_dec(x_16); +x_17 = l_Lean_nullKind___closed__2; +lean_inc(x_15); +x_18 = l_Lean_Syntax_isOfKind(x_15, x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_15); +lean_dec(x_2); +lean_dec(x_1); +x_19 = lean_box(1); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_3); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_21 = l_Lean_Syntax_getArgs(x_15); +x_22 = lean_array_get_size(x_21); lean_dec(x_21); +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_dec_eq(x_22, x_23); +lean_dec(x_22); if (x_24 == 0) { lean_object* x_25; lean_object* x_26; +lean_dec(x_15); lean_dec(x_2); lean_dec(x_1); x_25 = lean_box(1); @@ -16691,84 +18508,86 @@ return x_26; } else { -lean_object* x_27; lean_object* x_28; lean_object* x_299; lean_object* x_622; uint8_t x_623; -x_27 = l_Lean_Syntax_getArg(x_1, x_23); -x_622 = l_Lean_Elab_Command_expandMixfix___closed__28; +lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_27 = l_Lean_Syntax_getArg(x_15, x_14); +lean_dec(x_15); +x_28 = l_Lean_Elab_Command_expandMixfix___closed__3; lean_inc(x_27); -x_623 = l_Lean_Syntax_isOfKind(x_27, x_622); -if (x_623 == 0) +x_29 = l_Lean_Syntax_isOfKind(x_27, x_28); +if (x_29 == 0) { -lean_object* x_624; -x_624 = lean_box(0); -x_299 = x_624; -goto block_621; -} -else -{ -lean_object* x_625; lean_object* x_626; uint8_t x_627; -x_625 = l_Lean_Syntax_getArgs(x_27); -x_626 = lean_array_get_size(x_625); -lean_dec(x_625); -x_627 = lean_nat_dec_eq(x_626, x_23); -lean_dec(x_626); -if (x_627 == 0) -{ -lean_object* x_628; -x_628 = lean_box(0); -x_299 = x_628; -goto block_621; -} -else -{ -lean_object* x_629; lean_object* x_630; uint8_t x_631; +lean_object* x_30; lean_object* x_31; lean_dec(x_27); lean_dec(x_2); -x_629 = lean_unsigned_to_nat(2u); -x_630 = l_Lean_Syntax_getArg(x_1, x_629); -lean_inc(x_630); -x_631 = l_Lean_Syntax_isOfKind(x_630, x_16); -if (x_631 == 0) -{ -lean_object* x_632; lean_object* x_633; -lean_dec(x_630); lean_dec(x_1); -x_632 = lean_box(1); -x_633 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_633, 0, x_632); -lean_ctor_set(x_633, 1, x_3); -return x_633; +x_30 = lean_box(1); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_3); +return x_31; } else { -lean_object* x_634; lean_object* x_635; uint8_t x_636; -x_634 = l_Lean_Syntax_getArgs(x_630); -x_635 = lean_array_get_size(x_634); -lean_dec(x_634); -x_636 = lean_nat_dec_eq(x_635, x_23); -lean_dec(x_635); -if (x_636 == 0) +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = l_Lean_Syntax_getArgs(x_27); +lean_dec(x_27); +x_33 = lean_array_get_size(x_32); +lean_dec(x_32); +x_34 = lean_nat_dec_eq(x_33, x_23); +lean_dec(x_33); +if (x_34 == 0) { -lean_object* x_637; lean_object* x_638; -lean_dec(x_630); +lean_object* x_35; lean_object* x_36; +lean_dec(x_2); lean_dec(x_1); -x_637 = lean_box(1); -x_638 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_638, 0, x_637); -lean_ctor_set(x_638, 1, x_3); -return x_638; +x_35 = lean_box(1); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_3); +return x_36; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_309; lean_object* x_632; uint8_t x_633; +x_37 = l_Lean_Syntax_getArg(x_1, x_23); +x_632 = l_Lean_Elab_Command_expandMixfix___closed__33; +lean_inc(x_37); +x_633 = l_Lean_Syntax_isOfKind(x_37, x_632); +if (x_633 == 0) +{ +lean_object* x_634; +x_634 = lean_box(0); +x_309 = x_634; +goto block_631; +} +else +{ +lean_object* x_635; lean_object* x_636; uint8_t x_637; +x_635 = l_Lean_Syntax_getArgs(x_37); +x_636 = lean_array_get_size(x_635); +lean_dec(x_635); +x_637 = lean_nat_dec_eq(x_636, x_23); +lean_dec(x_636); +if (x_637 == 0) +{ +lean_object* x_638; +x_638 = lean_box(0); +x_309 = x_638; +goto block_631; } else { lean_object* x_639; lean_object* x_640; uint8_t x_641; -x_639 = l_Lean_Syntax_getArg(x_630, x_14); -lean_dec(x_630); -x_640 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_639); -x_641 = l_Lean_Syntax_isOfKind(x_639, x_640); +lean_dec(x_37); +lean_dec(x_2); +x_639 = lean_unsigned_to_nat(2u); +x_640 = l_Lean_Syntax_getArg(x_1, x_639); +lean_inc(x_640); +x_641 = l_Lean_Syntax_isOfKind(x_640, x_17); if (x_641 == 0) { lean_object* x_642; lean_object* x_643; -lean_dec(x_639); +lean_dec(x_640); lean_dec(x_1); x_642 = lean_box(1); x_643 = lean_alloc_ctor(1, 2, 0); @@ -16779,15 +18598,15 @@ return x_643; else { lean_object* x_644; lean_object* x_645; uint8_t x_646; -x_644 = l_Lean_Syntax_getArgs(x_639); +x_644 = l_Lean_Syntax_getArgs(x_640); x_645 = lean_array_get_size(x_644); lean_dec(x_644); -x_646 = lean_nat_dec_eq(x_645, x_629); +x_646 = lean_nat_dec_eq(x_645, x_23); lean_dec(x_645); if (x_646 == 0) { lean_object* x_647; lean_object* x_648; -lean_dec(x_639); +lean_dec(x_640); lean_dec(x_1); x_647 = lean_box(1); x_648 = lean_alloc_ctor(1, 2, 0); @@ -16797,150 +18616,188 @@ return x_648; } else { -lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; uint8_t x_687; -x_649 = l_Lean_Syntax_getArg(x_639, x_23); -lean_dec(x_639); -x_650 = lean_unsigned_to_nat(3u); -x_651 = l_Lean_Syntax_getArg(x_1, x_650); -lean_inc(x_651); -x_687 = l_Lean_Syntax_isOfKind(x_651, x_16); -if (x_687 == 0) +lean_object* x_649; lean_object* x_650; uint8_t x_651; +x_649 = l_Lean_Syntax_getArg(x_640, x_14); +lean_dec(x_640); +x_650 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_649); +x_651 = l_Lean_Syntax_isOfKind(x_649, x_650); +if (x_651 == 0) { -lean_object* x_688; -x_688 = lean_box(0); -x_652 = x_688; -goto block_686; -} -else -{ -lean_object* x_689; lean_object* x_690; uint8_t x_691; -x_689 = l_Lean_Syntax_getArgs(x_651); -x_690 = lean_array_get_size(x_689); -lean_dec(x_689); -x_691 = lean_nat_dec_eq(x_690, x_14); -lean_dec(x_690); -if (x_691 == 0) -{ -lean_object* x_692; -x_692 = lean_box(0); -x_652 = x_692; -goto block_686; -} -else -{ -lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; -lean_dec(x_651); -x_693 = lean_unsigned_to_nat(4u); -x_694 = l_Lean_Syntax_getArg(x_1, x_693); -x_695 = lean_unsigned_to_nat(6u); -x_696 = l_Lean_Syntax_getArg(x_1, x_695); -lean_dec(x_1); -x_697 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_698 = lean_array_push(x_697, x_649); -x_699 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_699, 0, x_640); -lean_ctor_set(x_699, 1, x_698); -x_700 = l_Array_empty___closed__1; -x_701 = lean_array_push(x_700, x_699); -x_702 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_702, 0, x_16); -lean_ctor_set(x_702, 1, x_701); -x_703 = l_Lean_Elab_Command_expandMixfix___closed__32; -x_704 = lean_array_push(x_703, x_702); -x_705 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_706 = lean_array_push(x_704, x_705); -x_707 = lean_array_push(x_706, x_694); -x_708 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_709 = lean_array_push(x_707, x_708); -x_710 = lean_array_push(x_709, x_696); -x_711 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_711, 0, x_4); -lean_ctor_set(x_711, 1, x_710); -x_712 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_712, 0, x_711); -lean_ctor_set(x_712, 1, x_3); -return x_712; -} -} -block_686: -{ -uint8_t x_653; -lean_dec(x_652); -lean_inc(x_651); -x_653 = l_Lean_Syntax_isOfKind(x_651, x_16); -if (x_653 == 0) -{ -lean_object* x_654; lean_object* x_655; -lean_dec(x_651); +lean_object* x_652; lean_object* x_653; lean_dec(x_649); lean_dec(x_1); -x_654 = lean_box(1); -x_655 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_655, 0, x_654); -lean_ctor_set(x_655, 1, x_3); -return x_655; +x_652 = lean_box(1); +x_653 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_653, 0, x_652); +lean_ctor_set(x_653, 1, x_3); +return x_653; } else { -lean_object* x_656; lean_object* x_657; uint8_t x_658; -x_656 = l_Lean_Syntax_getArgs(x_651); -x_657 = lean_array_get_size(x_656); -lean_dec(x_656); -x_658 = lean_nat_dec_eq(x_657, x_650); -lean_dec(x_657); -if (x_658 == 0) +lean_object* x_654; lean_object* x_655; uint8_t x_656; +x_654 = l_Lean_Syntax_getArgs(x_649); +x_655 = lean_array_get_size(x_654); +lean_dec(x_654); +x_656 = lean_nat_dec_eq(x_655, x_639); +lean_dec(x_655); +if (x_656 == 0) { -lean_object* x_659; lean_object* x_660; -lean_dec(x_651); +lean_object* x_657; lean_object* x_658; lean_dec(x_649); lean_dec(x_1); -x_659 = lean_box(1); -x_660 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_660, 0, x_659); -lean_ctor_set(x_660, 1, x_3); -return x_660; +x_657 = lean_box(1); +x_658 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_658, 0, x_657); +lean_ctor_set(x_658, 1, x_3); +return x_658; } else { -lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; -x_661 = l_Lean_Syntax_getArg(x_651, x_23); -lean_dec(x_651); -x_662 = lean_unsigned_to_nat(4u); -x_663 = l_Lean_Syntax_getArg(x_1, x_662); -x_664 = lean_unsigned_to_nat(6u); -x_665 = l_Lean_Syntax_getArg(x_1, x_664); +lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; uint8_t x_697; +x_659 = l_Lean_Syntax_getArg(x_649, x_23); +lean_dec(x_649); +x_660 = lean_unsigned_to_nat(3u); +x_661 = l_Lean_Syntax_getArg(x_1, x_660); +lean_inc(x_661); +x_697 = l_Lean_Syntax_isOfKind(x_661, x_17); +if (x_697 == 0) +{ +lean_object* x_698; +x_698 = lean_box(0); +x_662 = x_698; +goto block_696; +} +else +{ +lean_object* x_699; lean_object* x_700; uint8_t x_701; +x_699 = l_Lean_Syntax_getArgs(x_661); +x_700 = lean_array_get_size(x_699); +lean_dec(x_699); +x_701 = lean_nat_dec_eq(x_700, x_14); +lean_dec(x_700); +if (x_701 == 0) +{ +lean_object* x_702; +x_702 = lean_box(0); +x_662 = x_702; +goto block_696; +} +else +{ +lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; +lean_dec(x_661); +x_703 = lean_unsigned_to_nat(4u); +x_704 = l_Lean_Syntax_getArg(x_1, x_703); +x_705 = lean_unsigned_to_nat(6u); +x_706 = l_Lean_Syntax_getArg(x_1, x_705); lean_dec(x_1); -x_666 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_667 = lean_array_push(x_666, x_649); -x_668 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_668, 0, x_640); -lean_ctor_set(x_668, 1, x_667); -x_669 = l_Array_empty___closed__1; -x_670 = lean_array_push(x_669, x_668); -x_671 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_671, 0, x_16); -lean_ctor_set(x_671, 1, x_670); -x_672 = l_Lean_Elab_Command_expandMixfix___closed__32; -x_673 = lean_array_push(x_672, x_671); -x_674 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_675 = lean_array_push(x_674, x_661); -x_676 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_677 = lean_array_push(x_675, x_676); +x_707 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_708 = lean_array_push(x_707, x_659); +x_709 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_709, 0, x_650); +lean_ctor_set(x_709, 1, x_708); +x_710 = l_Array_empty___closed__1; +x_711 = lean_array_push(x_710, x_709); +x_712 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_712, 0, x_17); +lean_ctor_set(x_712, 1, x_711); +x_713 = l_Lean_Elab_Command_expandMixfix___closed__37; +x_714 = lean_array_push(x_713, x_712); +x_715 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_716 = lean_array_push(x_714, x_715); +x_717 = lean_array_push(x_716, x_704); +x_718 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_719 = lean_array_push(x_717, x_718); +x_720 = lean_array_push(x_719, x_706); +x_721 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_721, 0, x_4); +lean_ctor_set(x_721, 1, x_720); +x_722 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_722, 0, x_721); +lean_ctor_set(x_722, 1, x_3); +return x_722; +} +} +block_696: +{ +uint8_t x_663; +lean_dec(x_662); +lean_inc(x_661); +x_663 = l_Lean_Syntax_isOfKind(x_661, x_17); +if (x_663 == 0) +{ +lean_object* x_664; lean_object* x_665; +lean_dec(x_661); +lean_dec(x_659); +lean_dec(x_1); +x_664 = lean_box(1); +x_665 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_665, 0, x_664); +lean_ctor_set(x_665, 1, x_3); +return x_665; +} +else +{ +lean_object* x_666; lean_object* x_667; uint8_t x_668; +x_666 = l_Lean_Syntax_getArgs(x_661); +x_667 = lean_array_get_size(x_666); +lean_dec(x_666); +x_668 = lean_nat_dec_eq(x_667, x_660); +lean_dec(x_667); +if (x_668 == 0) +{ +lean_object* x_669; lean_object* x_670; +lean_dec(x_661); +lean_dec(x_659); +lean_dec(x_1); +x_669 = lean_box(1); +x_670 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_670, 0, x_669); +lean_ctor_set(x_670, 1, x_3); +return x_670; +} +else +{ +lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; +x_671 = l_Lean_Syntax_getArg(x_661, x_23); +lean_dec(x_661); +x_672 = lean_unsigned_to_nat(4u); +x_673 = l_Lean_Syntax_getArg(x_1, x_672); +x_674 = lean_unsigned_to_nat(6u); +x_675 = l_Lean_Syntax_getArg(x_1, x_674); +lean_dec(x_1); +x_676 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_677 = lean_array_push(x_676, x_659); x_678 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_678, 0, x_16); +lean_ctor_set(x_678, 0, x_650); lean_ctor_set(x_678, 1, x_677); -x_679 = lean_array_push(x_673, x_678); -x_680 = lean_array_push(x_679, x_663); -x_681 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_682 = lean_array_push(x_680, x_681); -x_683 = lean_array_push(x_682, x_665); -x_684 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_684, 0, x_4); -lean_ctor_set(x_684, 1, x_683); -x_685 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_685, 0, x_684); -lean_ctor_set(x_685, 1, x_3); -return x_685; +x_679 = l_Array_empty___closed__1; +x_680 = lean_array_push(x_679, x_678); +x_681 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_681, 0, x_17); +lean_ctor_set(x_681, 1, x_680); +x_682 = l_Lean_Elab_Command_expandMixfix___closed__37; +x_683 = lean_array_push(x_682, x_681); +x_684 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_685 = lean_array_push(x_684, x_671); +x_686 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_687 = lean_array_push(x_685, x_686); +x_688 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_688, 0, x_17); +lean_ctor_set(x_688, 1, x_687); +x_689 = lean_array_push(x_683, x_688); +x_690 = lean_array_push(x_689, x_673); +x_691 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_692 = lean_array_push(x_690, x_691); +x_693 = lean_array_push(x_692, x_675); +x_694 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_694, 0, x_4); +lean_ctor_set(x_694, 1, x_693); +x_695 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_695, 0, x_694); +lean_ctor_set(x_695, 1, x_3); +return x_695; } } } @@ -16950,62 +18807,23 @@ return x_685; } } } -block_298: +block_308: { -lean_object* x_29; uint8_t x_30; -lean_dec(x_28); -x_29 = l_Lean_Elab_Command_expandMixfix___closed__4; -lean_inc(x_27); -x_30 = l_Lean_Syntax_isOfKind(x_27, x_29); -if (x_30 == 0) +lean_object* x_39; uint8_t x_40; +lean_dec(x_38); +x_39 = l_Lean_Elab_Command_expandMixfix___closed__5; +lean_inc(x_37); +x_40 = l_Lean_Syntax_isOfKind(x_37, x_39); +if (x_40 == 0) { -lean_object* x_31; uint8_t x_32; -x_31 = l_Lean_Elab_Command_expandMixfix___closed__6; -lean_inc(x_27); -x_32 = l_Lean_Syntax_isOfKind(x_27, x_31); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; -lean_dec(x_27); -lean_dec(x_2); -lean_dec(x_1); -x_33 = lean_box(1); -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_3); -return x_34; -} -else -{ -lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_35 = l_Lean_Syntax_getArgs(x_27); -lean_dec(x_27); -x_36 = lean_array_get_size(x_35); -lean_dec(x_35); -x_37 = lean_nat_dec_eq(x_36, x_23); -lean_dec(x_36); -if (x_37 == 0) -{ -lean_object* x_38; lean_object* x_39; -lean_dec(x_2); -lean_dec(x_1); -x_38 = lean_box(1); -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_3); -return x_39; -} -else -{ -lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_40 = lean_unsigned_to_nat(2u); -x_41 = l_Lean_Syntax_getArg(x_1, x_40); -lean_inc(x_41); -x_42 = l_Lean_Syntax_isOfKind(x_41, x_16); +lean_object* x_41; uint8_t x_42; +x_41 = l_Lean_Elab_Command_expandMixfix___closed__7; +lean_inc(x_37); +x_42 = l_Lean_Syntax_isOfKind(x_37, x_41); if (x_42 == 0) { lean_object* x_43; lean_object* x_44; -lean_dec(x_41); +lean_dec(x_37); lean_dec(x_2); lean_dec(x_1); x_43 = lean_box(1); @@ -17017,7 +18835,8 @@ return x_44; else { lean_object* x_45; lean_object* x_46; uint8_t x_47; -x_45 = l_Lean_Syntax_getArgs(x_41); +x_45 = l_Lean_Syntax_getArgs(x_37); +lean_dec(x_37); x_46 = lean_array_get_size(x_45); lean_dec(x_45); x_47 = lean_nat_dec_eq(x_46, x_23); @@ -17025,7 +18844,6 @@ lean_dec(x_46); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -lean_dec(x_41); lean_dec(x_2); lean_dec(x_1); x_48 = lean_box(1); @@ -17037,15 +18855,14 @@ return x_49; else { lean_object* x_50; lean_object* x_51; uint8_t x_52; -x_50 = l_Lean_Syntax_getArg(x_41, x_14); -lean_dec(x_41); -x_51 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_50); -x_52 = l_Lean_Syntax_isOfKind(x_50, x_51); +x_50 = lean_unsigned_to_nat(2u); +x_51 = l_Lean_Syntax_getArg(x_1, x_50); +lean_inc(x_51); +x_52 = l_Lean_Syntax_isOfKind(x_51, x_17); if (x_52 == 0) { lean_object* x_53; lean_object* x_54; -lean_dec(x_50); +lean_dec(x_51); lean_dec(x_2); lean_dec(x_1); x_53 = lean_box(1); @@ -17057,15 +18874,15 @@ return x_54; else { lean_object* x_55; lean_object* x_56; uint8_t x_57; -x_55 = l_Lean_Syntax_getArgs(x_50); +x_55 = l_Lean_Syntax_getArgs(x_51); x_56 = lean_array_get_size(x_55); lean_dec(x_55); -x_57 = lean_nat_dec_eq(x_56, x_40); +x_57 = lean_nat_dec_eq(x_56, x_23); lean_dec(x_56); if (x_57 == 0) { lean_object* x_58; lean_object* x_59; -lean_dec(x_50); +lean_dec(x_51); lean_dec(x_2); lean_dec(x_1); x_58 = lean_box(1); @@ -17076,280 +18893,282 @@ return x_59; } else { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_120; -x_60 = l_Lean_Syntax_getArg(x_50, x_23); -lean_dec(x_50); -x_61 = lean_unsigned_to_nat(3u); -x_62 = l_Lean_Syntax_getArg(x_1, x_61); -lean_inc(x_62); -x_120 = l_Lean_Syntax_isOfKind(x_62, x_16); -if (x_120 == 0) +lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_60 = l_Lean_Syntax_getArg(x_51, x_14); +lean_dec(x_51); +x_61 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_60); +x_62 = l_Lean_Syntax_isOfKind(x_60, x_61); +if (x_62 == 0) { -lean_object* x_121; -x_121 = lean_box(0); -x_63 = x_121; -goto block_119; -} -else -{ -lean_object* x_122; lean_object* x_123; uint8_t x_124; -x_122 = l_Lean_Syntax_getArgs(x_62); -x_123 = lean_array_get_size(x_122); -lean_dec(x_122); -x_124 = lean_nat_dec_eq(x_123, x_14); -lean_dec(x_123); -if (x_124 == 0) -{ -lean_object* x_125; -x_125 = lean_box(0); -x_63 = x_125; -goto block_119; -} -else -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; -lean_dec(x_62); -x_126 = lean_unsigned_to_nat(4u); -x_127 = l_Lean_Syntax_getArg(x_1, x_126); -x_128 = lean_unsigned_to_nat(6u); -x_129 = l_Lean_Syntax_getArg(x_1, x_128); -lean_dec(x_1); -x_130 = lean_ctor_get(x_2, 2); -lean_inc(x_130); -x_131 = lean_ctor_get(x_2, 1); -lean_inc(x_131); +lean_object* x_63; lean_object* x_64; +lean_dec(x_60); lean_dec(x_2); -x_132 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_133 = lean_array_push(x_132, x_60); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_51); -lean_ctor_set(x_134, 1, x_133); -x_135 = l_Array_empty___closed__1; -x_136 = lean_array_push(x_135, x_134); -x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_16); -lean_ctor_set(x_137, 1, x_136); -x_138 = l_Lean_Elab_Command_expandMixfix___closed__12; -x_139 = lean_array_push(x_138, x_137); -x_140 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_141 = lean_array_push(x_139, x_140); -x_142 = l_Lean_Elab_Command_expandMixfix___closed__18; -x_143 = l_Lean_addMacroScope(x_131, x_142, x_130); -x_144 = lean_box(0); -x_145 = l_Lean_instInhabitedSourceInfo___closed__1; -x_146 = l_Lean_Elab_Command_expandMixfix___closed__17; -x_147 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_147, 0, x_145); +lean_dec(x_1); +x_63 = lean_box(1); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_3); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; uint8_t x_67; +x_65 = l_Lean_Syntax_getArgs(x_60); +x_66 = lean_array_get_size(x_65); +lean_dec(x_65); +x_67 = lean_nat_dec_eq(x_66, x_50); +lean_dec(x_66); +if (x_67 == 0) +{ +lean_object* x_68; lean_object* x_69; +lean_dec(x_60); +lean_dec(x_2); +lean_dec(x_1); +x_68 = lean_box(1); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_3); +return x_69; +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_130; +x_70 = l_Lean_Syntax_getArg(x_60, x_23); +lean_dec(x_60); +x_71 = lean_unsigned_to_nat(3u); +x_72 = l_Lean_Syntax_getArg(x_1, x_71); +lean_inc(x_72); +x_130 = l_Lean_Syntax_isOfKind(x_72, x_17); +if (x_130 == 0) +{ +lean_object* x_131; +x_131 = lean_box(0); +x_73 = x_131; +goto block_129; +} +else +{ +lean_object* x_132; lean_object* x_133; uint8_t x_134; +x_132 = l_Lean_Syntax_getArgs(x_72); +x_133 = lean_array_get_size(x_132); +lean_dec(x_132); +x_134 = lean_nat_dec_eq(x_133, x_14); +lean_dec(x_133); +if (x_134 == 0) +{ +lean_object* x_135; +x_135 = lean_box(0); +x_73 = x_135; +goto block_129; +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +lean_dec(x_72); +x_136 = lean_unsigned_to_nat(4u); +x_137 = l_Lean_Syntax_getArg(x_1, x_136); +x_138 = lean_unsigned_to_nat(6u); +x_139 = l_Lean_Syntax_getArg(x_1, x_138); +lean_dec(x_1); +x_140 = lean_ctor_get(x_2, 2); +lean_inc(x_140); +x_141 = lean_ctor_get(x_2, 1); +lean_inc(x_141); +lean_dec(x_2); +x_142 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_143 = lean_array_push(x_142, x_70); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_61); +lean_ctor_set(x_144, 1, x_143); +x_145 = l_Array_empty___closed__1; +x_146 = lean_array_push(x_145, x_144); +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_17); lean_ctor_set(x_147, 1, x_146); -lean_ctor_set(x_147, 2, x_143); -lean_ctor_set(x_147, 3, x_144); -x_148 = lean_array_push(x_135, x_147); -lean_inc(x_148); -x_149 = lean_array_push(x_148, x_140); -x_150 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_150); -lean_ctor_set(x_151, 1, x_149); -x_152 = lean_array_push(x_135, x_151); -x_153 = lean_array_push(x_152, x_127); -x_154 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_154, 0, x_16); -lean_ctor_set(x_154, 1, x_153); -x_155 = lean_array_push(x_141, x_154); -x_156 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_157 = lean_array_push(x_155, x_156); -x_158 = lean_array_push(x_135, x_129); -x_159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_159, 0, x_16); -lean_ctor_set(x_159, 1, x_148); -x_160 = lean_array_push(x_158, x_159); -x_161 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_162, 0, x_161); -lean_ctor_set(x_162, 1, x_160); -x_163 = lean_array_push(x_157, x_162); -x_164 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_165, 0, x_164); -lean_ctor_set(x_165, 1, x_163); -x_166 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_166, 0, x_165); -lean_ctor_set(x_166, 1, x_3); -return x_166; -} -} -block_119: -{ -uint8_t x_64; -lean_dec(x_63); -lean_inc(x_62); -x_64 = l_Lean_Syntax_isOfKind(x_62, x_16); -if (x_64 == 0) -{ -lean_object* x_65; lean_object* x_66; -lean_dec(x_62); -lean_dec(x_60); -lean_dec(x_2); -lean_dec(x_1); -x_65 = lean_box(1); -x_66 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_66, 0, x_65); -lean_ctor_set(x_66, 1, x_3); -return x_66; -} -else -{ -lean_object* x_67; lean_object* x_68; uint8_t x_69; -x_67 = l_Lean_Syntax_getArgs(x_62); -x_68 = lean_array_get_size(x_67); -lean_dec(x_67); -x_69 = lean_nat_dec_eq(x_68, x_61); -lean_dec(x_68); -if (x_69 == 0) -{ -lean_object* x_70; lean_object* x_71; -lean_dec(x_62); -lean_dec(x_60); -lean_dec(x_2); -lean_dec(x_1); -x_70 = lean_box(1); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_3); -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_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_72 = l_Lean_Syntax_getArg(x_62, x_23); -lean_dec(x_62); -x_73 = lean_unsigned_to_nat(4u); -x_74 = l_Lean_Syntax_getArg(x_1, x_73); -x_75 = lean_unsigned_to_nat(6u); -x_76 = l_Lean_Syntax_getArg(x_1, x_75); -lean_dec(x_1); -x_77 = lean_ctor_get(x_2, 2); -lean_inc(x_77); -x_78 = lean_ctor_get(x_2, 1); -lean_inc(x_78); -lean_dec(x_2); -x_79 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_80 = lean_array_push(x_79, x_60); -x_81 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_81, 0, x_51); -lean_ctor_set(x_81, 1, x_80); -x_82 = l_Array_empty___closed__1; -x_83 = lean_array_push(x_82, x_81); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_16); -lean_ctor_set(x_84, 1, x_83); -x_85 = l_Lean_Elab_Command_expandMixfix___closed__12; -x_86 = lean_array_push(x_85, x_84); -x_87 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_88 = lean_array_push(x_87, x_72); -x_89 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_90 = lean_array_push(x_88, x_89); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_16); -lean_ctor_set(x_91, 1, x_90); -x_92 = lean_array_push(x_86, x_91); -x_93 = l_Lean_Elab_Command_expandMixfix___closed__18; -x_94 = l_Lean_addMacroScope(x_78, x_93, x_77); -x_95 = lean_box(0); -x_96 = l_Lean_instInhabitedSourceInfo___closed__1; -x_97 = l_Lean_Elab_Command_expandMixfix___closed__17; -x_98 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set(x_98, 1, x_97); -lean_ctor_set(x_98, 2, x_94); -lean_ctor_set(x_98, 3, x_95); -x_99 = lean_array_push(x_82, x_98); -x_100 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_99); -x_101 = lean_array_push(x_99, x_100); -x_102 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_101); -x_104 = lean_array_push(x_82, x_103); -x_105 = lean_array_push(x_104, x_74); -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_16); -lean_ctor_set(x_106, 1, x_105); -x_107 = lean_array_push(x_92, x_106); -x_108 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_109 = lean_array_push(x_107, x_108); -x_110 = lean_array_push(x_82, x_76); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_16); -lean_ctor_set(x_111, 1, x_99); -x_112 = lean_array_push(x_110, x_111); -x_113 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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_109, x_114); -x_116 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_116); -lean_ctor_set(x_117, 1, x_115); -x_118 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_3); -return x_118; -} -} -} -} -} -} -} -} -} -} -else -{ -lean_object* x_167; lean_object* x_168; uint8_t x_169; -x_167 = l_Lean_Syntax_getArgs(x_27); -lean_dec(x_27); -x_168 = lean_array_get_size(x_167); -lean_dec(x_167); -x_169 = lean_nat_dec_eq(x_168, x_23); -lean_dec(x_168); -if (x_169 == 0) -{ -lean_object* x_170; lean_object* x_171; -lean_dec(x_2); -lean_dec(x_1); -x_170 = lean_box(1); -x_171 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_171, 0, x_170); -lean_ctor_set(x_171, 1, x_3); -return x_171; -} -else -{ -lean_object* x_172; lean_object* x_173; uint8_t x_174; -x_172 = lean_unsigned_to_nat(2u); -x_173 = l_Lean_Syntax_getArg(x_1, x_172); -lean_inc(x_173); -x_174 = l_Lean_Syntax_isOfKind(x_173, x_16); -if (x_174 == 0) -{ -lean_object* x_175; lean_object* x_176; -lean_dec(x_173); -lean_dec(x_2); -lean_dec(x_1); -x_175 = lean_box(1); -x_176 = lean_alloc_ctor(1, 2, 0); +x_148 = l_Lean_Elab_Command_expandMixfix___closed__17; +x_149 = lean_array_push(x_148, x_147); +x_150 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_151 = lean_array_push(x_149, x_150); +x_152 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_153 = l_Lean_addMacroScope(x_141, x_152, x_140); +x_154 = lean_box(0); +x_155 = l_Lean_instInhabitedSourceInfo___closed__1; +x_156 = l_Lean_Elab_Command_expandMixfix___closed__22; +x_157 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_157, 0, x_155); +lean_ctor_set(x_157, 1, x_156); +lean_ctor_set(x_157, 2, x_153); +lean_ctor_set(x_157, 3, x_154); +x_158 = lean_array_push(x_145, x_157); +lean_inc(x_158); +x_159 = lean_array_push(x_158, x_150); +x_160 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_161, 0, x_160); +lean_ctor_set(x_161, 1, x_159); +x_162 = lean_array_push(x_145, x_161); +x_163 = lean_array_push(x_162, x_137); +x_164 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_164, 0, x_17); +lean_ctor_set(x_164, 1, x_163); +x_165 = lean_array_push(x_151, x_164); +x_166 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_167 = lean_array_push(x_165, x_166); +x_168 = lean_array_push(x_145, x_139); +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_17); +lean_ctor_set(x_169, 1, x_158); +x_170 = lean_array_push(x_168, x_169); +x_171 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_170); +x_173 = lean_array_push(x_167, x_172); +x_174 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_174); +lean_ctor_set(x_175, 1, x_173); +x_176 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_176, 0, x_175); lean_ctor_set(x_176, 1, x_3); return x_176; } +} +block_129: +{ +uint8_t x_74; +lean_dec(x_73); +lean_inc(x_72); +x_74 = l_Lean_Syntax_isOfKind(x_72, x_17); +if (x_74 == 0) +{ +lean_object* x_75; lean_object* x_76; +lean_dec(x_72); +lean_dec(x_70); +lean_dec(x_2); +lean_dec(x_1); +x_75 = lean_box(1); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_76, 1, x_3); +return x_76; +} +else +{ +lean_object* x_77; lean_object* x_78; uint8_t x_79; +x_77 = l_Lean_Syntax_getArgs(x_72); +x_78 = lean_array_get_size(x_77); +lean_dec(x_77); +x_79 = lean_nat_dec_eq(x_78, x_71); +lean_dec(x_78); +if (x_79 == 0) +{ +lean_object* x_80; lean_object* x_81; +lean_dec(x_72); +lean_dec(x_70); +lean_dec(x_2); +lean_dec(x_1); +x_80 = lean_box(1); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_80); +lean_ctor_set(x_81, 1, x_3); +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_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_82 = l_Lean_Syntax_getArg(x_72, x_23); +lean_dec(x_72); +x_83 = lean_unsigned_to_nat(4u); +x_84 = l_Lean_Syntax_getArg(x_1, x_83); +x_85 = lean_unsigned_to_nat(6u); +x_86 = l_Lean_Syntax_getArg(x_1, x_85); +lean_dec(x_1); +x_87 = lean_ctor_get(x_2, 2); +lean_inc(x_87); +x_88 = lean_ctor_get(x_2, 1); +lean_inc(x_88); +lean_dec(x_2); +x_89 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_90 = lean_array_push(x_89, x_70); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_61); +lean_ctor_set(x_91, 1, x_90); +x_92 = l_Array_empty___closed__1; +x_93 = lean_array_push(x_92, x_91); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_17); +lean_ctor_set(x_94, 1, x_93); +x_95 = l_Lean_Elab_Command_expandMixfix___closed__17; +x_96 = lean_array_push(x_95, x_94); +x_97 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_98 = lean_array_push(x_97, x_82); +x_99 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_100 = lean_array_push(x_98, x_99); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_17); +lean_ctor_set(x_101, 1, x_100); +x_102 = lean_array_push(x_96, x_101); +x_103 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_104 = l_Lean_addMacroScope(x_88, x_103, x_87); +x_105 = lean_box(0); +x_106 = l_Lean_instInhabitedSourceInfo___closed__1; +x_107 = l_Lean_Elab_Command_expandMixfix___closed__22; +x_108 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_108, 0, x_106); +lean_ctor_set(x_108, 1, x_107); +lean_ctor_set(x_108, 2, x_104); +lean_ctor_set(x_108, 3, x_105); +x_109 = lean_array_push(x_92, x_108); +x_110 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +lean_inc(x_109); +x_111 = lean_array_push(x_109, x_110); +x_112 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_112); +lean_ctor_set(x_113, 1, x_111); +x_114 = lean_array_push(x_92, x_113); +x_115 = lean_array_push(x_114, x_84); +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_17); +lean_ctor_set(x_116, 1, x_115); +x_117 = lean_array_push(x_102, x_116); +x_118 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_119 = lean_array_push(x_117, x_118); +x_120 = lean_array_push(x_92, x_86); +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_17); +lean_ctor_set(x_121, 1, x_109); +x_122 = lean_array_push(x_120, x_121); +x_123 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_119, x_124); +x_126 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_125); +x_128 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_3); +return x_128; +} +} +} +} +} +} +} +} +} +} else { lean_object* x_177; lean_object* x_178; uint8_t x_179; -x_177 = l_Lean_Syntax_getArgs(x_173); +x_177 = l_Lean_Syntax_getArgs(x_37); +lean_dec(x_37); x_178 = lean_array_get_size(x_177); lean_dec(x_177); x_179 = lean_nat_dec_eq(x_178, x_23); @@ -17357,7 +19176,6 @@ lean_dec(x_178); if (x_179 == 0) { lean_object* x_180; lean_object* x_181; -lean_dec(x_173); lean_dec(x_2); lean_dec(x_1); x_180 = lean_box(1); @@ -17369,15 +19187,14 @@ return x_181; else { lean_object* x_182; lean_object* x_183; uint8_t x_184; -x_182 = l_Lean_Syntax_getArg(x_173, x_14); -lean_dec(x_173); -x_183 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_182); -x_184 = l_Lean_Syntax_isOfKind(x_182, x_183); +x_182 = lean_unsigned_to_nat(2u); +x_183 = l_Lean_Syntax_getArg(x_1, x_182); +lean_inc(x_183); +x_184 = l_Lean_Syntax_isOfKind(x_183, x_17); if (x_184 == 0) { lean_object* x_185; lean_object* x_186; -lean_dec(x_182); +lean_dec(x_183); lean_dec(x_2); lean_dec(x_1); x_185 = lean_box(1); @@ -17389,15 +19206,15 @@ return x_186; else { lean_object* x_187; lean_object* x_188; uint8_t x_189; -x_187 = l_Lean_Syntax_getArgs(x_182); +x_187 = l_Lean_Syntax_getArgs(x_183); x_188 = lean_array_get_size(x_187); lean_dec(x_187); -x_189 = lean_nat_dec_eq(x_188, x_172); +x_189 = lean_nat_dec_eq(x_188, x_23); lean_dec(x_188); if (x_189 == 0) { lean_object* x_190; lean_object* x_191; -lean_dec(x_182); +lean_dec(x_183); lean_dec(x_2); lean_dec(x_1); x_190 = lean_box(1); @@ -17408,228 +19225,268 @@ return x_191; } else { -lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_251; -x_192 = l_Lean_Syntax_getArg(x_182, x_23); -lean_dec(x_182); -x_193 = lean_unsigned_to_nat(3u); -x_194 = l_Lean_Syntax_getArg(x_1, x_193); -lean_inc(x_194); -x_251 = l_Lean_Syntax_isOfKind(x_194, x_16); -if (x_251 == 0) +lean_object* x_192; lean_object* x_193; uint8_t x_194; +x_192 = l_Lean_Syntax_getArg(x_183, x_14); +lean_dec(x_183); +x_193 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_192); +x_194 = l_Lean_Syntax_isOfKind(x_192, x_193); +if (x_194 == 0) { -lean_object* x_252; -x_252 = lean_box(0); -x_195 = x_252; -goto block_250; -} -else -{ -lean_object* x_253; lean_object* x_254; uint8_t x_255; -x_253 = l_Lean_Syntax_getArgs(x_194); -x_254 = lean_array_get_size(x_253); -lean_dec(x_253); -x_255 = lean_nat_dec_eq(x_254, x_14); -lean_dec(x_254); -if (x_255 == 0) -{ -lean_object* x_256; -x_256 = lean_box(0); -x_195 = x_256; -goto block_250; -} -else -{ -lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; -lean_dec(x_194); -x_257 = lean_unsigned_to_nat(4u); -x_258 = l_Lean_Syntax_getArg(x_1, x_257); -x_259 = lean_unsigned_to_nat(6u); -x_260 = l_Lean_Syntax_getArg(x_1, x_259); -lean_dec(x_1); -x_261 = lean_ctor_get(x_2, 2); -lean_inc(x_261); -x_262 = lean_ctor_get(x_2, 1); -lean_inc(x_262); +lean_object* x_195; lean_object* x_196; +lean_dec(x_192); lean_dec(x_2); -x_263 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_264 = lean_array_push(x_263, x_192); -x_265 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_265, 0, x_183); -lean_ctor_set(x_265, 1, x_264); -x_266 = l_Array_empty___closed__1; -x_267 = lean_array_push(x_266, x_265); -x_268 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_268, 0, x_16); -lean_ctor_set(x_268, 1, x_267); -x_269 = l_Lean_Elab_Command_expandMixfix___closed__12; -lean_inc(x_268); -x_270 = lean_array_push(x_269, x_268); -x_271 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_272 = lean_array_push(x_270, x_271); -x_273 = lean_array_push(x_266, x_258); -x_274 = l_Lean_Elab_Command_expandMixfix___closed__18; -x_275 = l_Lean_addMacroScope(x_262, x_274, x_261); -x_276 = lean_box(0); -x_277 = l_Lean_instInhabitedSourceInfo___closed__1; -x_278 = l_Lean_Elab_Command_expandMixfix___closed__17; -x_279 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_279, 0, x_277); -lean_ctor_set(x_279, 1, x_278); -lean_ctor_set(x_279, 2, x_275); -lean_ctor_set(x_279, 3, x_276); -x_280 = lean_array_push(x_266, x_279); -lean_inc(x_280); -x_281 = lean_array_push(x_280, x_268); -x_282 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_283 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_283, 0, x_282); -lean_ctor_set(x_283, 1, x_281); -x_284 = lean_array_push(x_273, x_283); -x_285 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_285, 0, x_16); -lean_ctor_set(x_285, 1, x_284); -x_286 = lean_array_push(x_272, x_285); -x_287 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_288 = lean_array_push(x_286, x_287); -x_289 = lean_array_push(x_266, x_260); -x_290 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_290, 0, x_16); -lean_ctor_set(x_290, 1, x_280); -x_291 = lean_array_push(x_289, x_290); -x_292 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +lean_dec(x_1); +x_195 = lean_box(1); +x_196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_196, 0, x_195); +lean_ctor_set(x_196, 1, x_3); +return x_196; +} +else +{ +lean_object* x_197; lean_object* x_198; uint8_t x_199; +x_197 = l_Lean_Syntax_getArgs(x_192); +x_198 = lean_array_get_size(x_197); +lean_dec(x_197); +x_199 = lean_nat_dec_eq(x_198, x_182); +lean_dec(x_198); +if (x_199 == 0) +{ +lean_object* x_200; lean_object* x_201; +lean_dec(x_192); +lean_dec(x_2); +lean_dec(x_1); +x_200 = lean_box(1); +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_200); +lean_ctor_set(x_201, 1, x_3); +return x_201; +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; uint8_t x_261; +x_202 = l_Lean_Syntax_getArg(x_192, x_23); +lean_dec(x_192); +x_203 = lean_unsigned_to_nat(3u); +x_204 = l_Lean_Syntax_getArg(x_1, x_203); +lean_inc(x_204); +x_261 = l_Lean_Syntax_isOfKind(x_204, x_17); +if (x_261 == 0) +{ +lean_object* x_262; +x_262 = lean_box(0); +x_205 = x_262; +goto block_260; +} +else +{ +lean_object* x_263; lean_object* x_264; uint8_t x_265; +x_263 = l_Lean_Syntax_getArgs(x_204); +x_264 = lean_array_get_size(x_263); +lean_dec(x_263); +x_265 = lean_nat_dec_eq(x_264, x_14); +lean_dec(x_264); +if (x_265 == 0) +{ +lean_object* x_266; +x_266 = lean_box(0); +x_205 = x_266; +goto block_260; +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; +lean_dec(x_204); +x_267 = lean_unsigned_to_nat(4u); +x_268 = l_Lean_Syntax_getArg(x_1, x_267); +x_269 = lean_unsigned_to_nat(6u); +x_270 = l_Lean_Syntax_getArg(x_1, x_269); +lean_dec(x_1); +x_271 = lean_ctor_get(x_2, 2); +lean_inc(x_271); +x_272 = lean_ctor_get(x_2, 1); +lean_inc(x_272); +lean_dec(x_2); +x_273 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_274 = lean_array_push(x_273, x_202); +x_275 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_275, 0, x_193); +lean_ctor_set(x_275, 1, x_274); +x_276 = l_Array_empty___closed__1; +x_277 = lean_array_push(x_276, x_275); +x_278 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_278, 0, x_17); +lean_ctor_set(x_278, 1, x_277); +x_279 = l_Lean_Elab_Command_expandMixfix___closed__17; +lean_inc(x_278); +x_280 = lean_array_push(x_279, x_278); +x_281 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_282 = lean_array_push(x_280, x_281); +x_283 = lean_array_push(x_276, x_268); +x_284 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_285 = l_Lean_addMacroScope(x_272, x_284, x_271); +x_286 = lean_box(0); +x_287 = l_Lean_instInhabitedSourceInfo___closed__1; +x_288 = l_Lean_Elab_Command_expandMixfix___closed__22; +x_289 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_289, 0, x_287); +lean_ctor_set(x_289, 1, x_288); +lean_ctor_set(x_289, 2, x_285); +lean_ctor_set(x_289, 3, x_286); +x_290 = lean_array_push(x_276, x_289); +lean_inc(x_290); +x_291 = lean_array_push(x_290, x_278); +x_292 = l_Lean_Elab_Command_expandMixfix___closed__19; x_293 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_293, 0, x_292); lean_ctor_set(x_293, 1, x_291); -x_294 = lean_array_push(x_288, x_293); -x_295 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_296 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_296, 0, x_295); -lean_ctor_set(x_296, 1, x_294); -x_297 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_297, 0, x_296); -lean_ctor_set(x_297, 1, x_3); -return x_297; +x_294 = lean_array_push(x_283, x_293); +x_295 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_295, 0, x_17); +lean_ctor_set(x_295, 1, x_294); +x_296 = lean_array_push(x_282, x_295); +x_297 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_298 = lean_array_push(x_296, x_297); +x_299 = lean_array_push(x_276, x_270); +x_300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_300, 0, x_17); +lean_ctor_set(x_300, 1, x_290); +x_301 = lean_array_push(x_299, x_300); +x_302 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_303 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_303, 0, x_302); +lean_ctor_set(x_303, 1, x_301); +x_304 = lean_array_push(x_298, x_303); +x_305 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_305); +lean_ctor_set(x_306, 1, x_304); +x_307 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_307, 0, x_306); +lean_ctor_set(x_307, 1, x_3); +return x_307; } } -block_250: +block_260: { -uint8_t x_196; -lean_dec(x_195); -lean_inc(x_194); -x_196 = l_Lean_Syntax_isOfKind(x_194, x_16); -if (x_196 == 0) +uint8_t x_206; +lean_dec(x_205); +lean_inc(x_204); +x_206 = l_Lean_Syntax_isOfKind(x_204, x_17); +if (x_206 == 0) { -lean_object* x_197; lean_object* x_198; -lean_dec(x_194); -lean_dec(x_192); +lean_object* x_207; lean_object* x_208; +lean_dec(x_204); +lean_dec(x_202); lean_dec(x_2); lean_dec(x_1); -x_197 = lean_box(1); -x_198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_198, 0, x_197); -lean_ctor_set(x_198, 1, x_3); -return x_198; +x_207 = lean_box(1); +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_207); +lean_ctor_set(x_208, 1, x_3); +return x_208; } else { -lean_object* x_199; lean_object* x_200; uint8_t x_201; -x_199 = l_Lean_Syntax_getArgs(x_194); -x_200 = lean_array_get_size(x_199); -lean_dec(x_199); -x_201 = lean_nat_dec_eq(x_200, x_193); -lean_dec(x_200); -if (x_201 == 0) +lean_object* x_209; lean_object* x_210; uint8_t x_211; +x_209 = l_Lean_Syntax_getArgs(x_204); +x_210 = lean_array_get_size(x_209); +lean_dec(x_209); +x_211 = lean_nat_dec_eq(x_210, x_203); +lean_dec(x_210); +if (x_211 == 0) { -lean_object* x_202; lean_object* x_203; -lean_dec(x_194); -lean_dec(x_192); +lean_object* x_212; lean_object* x_213; +lean_dec(x_204); +lean_dec(x_202); lean_dec(x_2); lean_dec(x_1); -x_202 = lean_box(1); -x_203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_203, 0, x_202); -lean_ctor_set(x_203, 1, x_3); -return x_203; -} -else -{ -lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; -x_204 = l_Lean_Syntax_getArg(x_194, x_23); -lean_dec(x_194); -x_205 = lean_unsigned_to_nat(4u); -x_206 = l_Lean_Syntax_getArg(x_1, x_205); -x_207 = lean_unsigned_to_nat(6u); -x_208 = l_Lean_Syntax_getArg(x_1, x_207); -lean_dec(x_1); -x_209 = lean_ctor_get(x_2, 2); -lean_inc(x_209); -x_210 = lean_ctor_get(x_2, 1); -lean_inc(x_210); -lean_dec(x_2); -x_211 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_212 = lean_array_push(x_211, x_192); +x_212 = lean_box(1); x_213 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_213, 0, x_183); -lean_ctor_set(x_213, 1, x_212); -x_214 = l_Array_empty___closed__1; -x_215 = lean_array_push(x_214, x_213); -x_216 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_216, 0, x_16); -lean_ctor_set(x_216, 1, x_215); -x_217 = l_Lean_Elab_Command_expandMixfix___closed__12; -lean_inc(x_216); -x_218 = lean_array_push(x_217, x_216); -x_219 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_220 = lean_array_push(x_219, x_204); -x_221 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_222 = lean_array_push(x_220, x_221); +lean_ctor_set(x_213, 0, x_212); +lean_ctor_set(x_213, 1, x_3); +return x_213; +} +else +{ +lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; +x_214 = l_Lean_Syntax_getArg(x_204, x_23); +lean_dec(x_204); +x_215 = lean_unsigned_to_nat(4u); +x_216 = l_Lean_Syntax_getArg(x_1, x_215); +x_217 = lean_unsigned_to_nat(6u); +x_218 = l_Lean_Syntax_getArg(x_1, x_217); +lean_dec(x_1); +x_219 = lean_ctor_get(x_2, 2); +lean_inc(x_219); +x_220 = lean_ctor_get(x_2, 1); +lean_inc(x_220); +lean_dec(x_2); +x_221 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_222 = lean_array_push(x_221, x_202); x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_16); +lean_ctor_set(x_223, 0, x_193); lean_ctor_set(x_223, 1, x_222); -x_224 = lean_array_push(x_218, x_223); -x_225 = lean_array_push(x_214, x_206); -x_226 = l_Lean_Elab_Command_expandMixfix___closed__18; -x_227 = l_Lean_addMacroScope(x_210, x_226, x_209); -x_228 = lean_box(0); -x_229 = l_Lean_instInhabitedSourceInfo___closed__1; -x_230 = l_Lean_Elab_Command_expandMixfix___closed__17; -x_231 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -lean_ctor_set(x_231, 2, x_227); -lean_ctor_set(x_231, 3, x_228); -x_232 = lean_array_push(x_214, x_231); -lean_inc(x_232); -x_233 = lean_array_push(x_232, x_216); -x_234 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set(x_235, 1, x_233); -x_236 = lean_array_push(x_225, x_235); -x_237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_237, 0, x_16); -lean_ctor_set(x_237, 1, x_236); -x_238 = lean_array_push(x_224, x_237); -x_239 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_240 = lean_array_push(x_238, x_239); -x_241 = lean_array_push(x_214, x_208); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_16); -lean_ctor_set(x_242, 1, x_232); -x_243 = lean_array_push(x_241, x_242); -x_244 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_224 = l_Array_empty___closed__1; +x_225 = lean_array_push(x_224, x_223); +x_226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_226, 0, x_17); +lean_ctor_set(x_226, 1, x_225); +x_227 = l_Lean_Elab_Command_expandMixfix___closed__17; +lean_inc(x_226); +x_228 = lean_array_push(x_227, x_226); +x_229 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_230 = lean_array_push(x_229, x_214); +x_231 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_232 = lean_array_push(x_230, x_231); +x_233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_233, 0, x_17); +lean_ctor_set(x_233, 1, x_232); +x_234 = lean_array_push(x_228, x_233); +x_235 = lean_array_push(x_224, x_216); +x_236 = l_Lean_Elab_Command_expandMixfix___closed__23; +x_237 = l_Lean_addMacroScope(x_220, x_236, x_219); +x_238 = lean_box(0); +x_239 = l_Lean_instInhabitedSourceInfo___closed__1; +x_240 = l_Lean_Elab_Command_expandMixfix___closed__22; +x_241 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_241, 0, x_239); +lean_ctor_set(x_241, 1, x_240); +lean_ctor_set(x_241, 2, x_237); +lean_ctor_set(x_241, 3, x_238); +x_242 = lean_array_push(x_224, x_241); +lean_inc(x_242); +x_243 = lean_array_push(x_242, x_226); +x_244 = l_Lean_Elab_Command_expandMixfix___closed__19; x_245 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_245, 0, x_244); lean_ctor_set(x_245, 1, x_243); -x_246 = lean_array_push(x_240, x_245); -x_247 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_248, 0, x_247); -lean_ctor_set(x_248, 1, x_246); -x_249 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_249, 0, x_248); -lean_ctor_set(x_249, 1, x_3); -return x_249; +x_246 = lean_array_push(x_235, x_245); +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_17); +lean_ctor_set(x_247, 1, x_246); +x_248 = lean_array_push(x_234, x_247); +x_249 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_250 = lean_array_push(x_248, x_249); +x_251 = lean_array_push(x_224, x_218); +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_17); +lean_ctor_set(x_252, 1, x_242); +x_253 = lean_array_push(x_251, x_252); +x_254 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set(x_255, 1, x_253); +x_256 = lean_array_push(x_250, x_255); +x_257 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_258 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_258, 0, x_257); +lean_ctor_set(x_258, 1, x_256); +x_259 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_259, 0, x_258); +lean_ctor_set(x_259, 1, x_3); +return x_259; } } } @@ -17640,93 +19497,53 @@ return x_249; } } } -block_621: +block_631: { -lean_object* x_300; uint8_t x_301; -lean_dec(x_299); -x_300 = l_Lean_Elab_Command_expandMixfix___closed__20; -lean_inc(x_27); -x_301 = l_Lean_Syntax_isOfKind(x_27, x_300); -if (x_301 == 0) -{ -lean_object* x_302; uint8_t x_303; -x_302 = l_Lean_Elab_Command_expandMixfix___closed__22; -lean_inc(x_27); -x_303 = l_Lean_Syntax_isOfKind(x_27, x_302); -if (x_303 == 0) -{ -lean_object* x_304; -x_304 = lean_box(0); -x_28 = x_304; -goto block_298; -} -else -{ -lean_object* x_305; lean_object* x_306; uint8_t x_307; -x_305 = l_Lean_Syntax_getArgs(x_27); -x_306 = lean_array_get_size(x_305); -lean_dec(x_305); -x_307 = lean_nat_dec_eq(x_306, x_23); -lean_dec(x_306); -if (x_307 == 0) -{ -lean_object* x_308; -x_308 = lean_box(0); -x_28 = x_308; -goto block_298; -} -else -{ -lean_object* x_309; lean_object* x_310; uint8_t x_311; -lean_dec(x_27); -x_309 = lean_unsigned_to_nat(2u); -x_310 = l_Lean_Syntax_getArg(x_1, x_309); -lean_inc(x_310); -x_311 = l_Lean_Syntax_isOfKind(x_310, x_16); +lean_object* x_310; uint8_t x_311; +lean_dec(x_309); +x_310 = l_Lean_Elab_Command_expandMixfix___closed__25; +lean_inc(x_37); +x_311 = l_Lean_Syntax_isOfKind(x_37, x_310); if (x_311 == 0) { -lean_object* x_312; lean_object* x_313; -lean_dec(x_310); -lean_dec(x_2); -lean_dec(x_1); -x_312 = lean_box(1); -x_313 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_313, 0, x_312); -lean_ctor_set(x_313, 1, x_3); -return x_313; +lean_object* x_312; uint8_t x_313; +x_312 = l_Lean_Elab_Command_expandMixfix___closed__27; +lean_inc(x_37); +x_313 = l_Lean_Syntax_isOfKind(x_37, x_312); +if (x_313 == 0) +{ +lean_object* x_314; +x_314 = lean_box(0); +x_38 = x_314; +goto block_308; } else { -lean_object* x_314; lean_object* x_315; uint8_t x_316; -x_314 = l_Lean_Syntax_getArgs(x_310); -x_315 = lean_array_get_size(x_314); -lean_dec(x_314); -x_316 = lean_nat_dec_eq(x_315, x_23); +lean_object* x_315; lean_object* x_316; uint8_t x_317; +x_315 = l_Lean_Syntax_getArgs(x_37); +x_316 = lean_array_get_size(x_315); lean_dec(x_315); -if (x_316 == 0) +x_317 = lean_nat_dec_eq(x_316, x_23); +lean_dec(x_316); +if (x_317 == 0) { -lean_object* x_317; lean_object* x_318; -lean_dec(x_310); -lean_dec(x_2); -lean_dec(x_1); -x_317 = lean_box(1); -x_318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_318, 0, x_317); -lean_ctor_set(x_318, 1, x_3); -return x_318; +lean_object* x_318; +x_318 = lean_box(0); +x_38 = x_318; +goto block_308; } else { lean_object* x_319; lean_object* x_320; uint8_t x_321; -x_319 = l_Lean_Syntax_getArg(x_310, x_14); -lean_dec(x_310); -x_320 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_319); -x_321 = l_Lean_Syntax_isOfKind(x_319, x_320); +lean_dec(x_37); +x_319 = lean_unsigned_to_nat(2u); +x_320 = l_Lean_Syntax_getArg(x_1, x_319); +lean_inc(x_320); +x_321 = l_Lean_Syntax_isOfKind(x_320, x_17); if (x_321 == 0) { lean_object* x_322; lean_object* x_323; -lean_dec(x_319); +lean_dec(x_320); lean_dec(x_2); lean_dec(x_1); x_322 = lean_box(1); @@ -17738,15 +19555,15 @@ return x_323; else { lean_object* x_324; lean_object* x_325; uint8_t x_326; -x_324 = l_Lean_Syntax_getArgs(x_319); +x_324 = l_Lean_Syntax_getArgs(x_320); x_325 = lean_array_get_size(x_324); lean_dec(x_324); -x_326 = lean_nat_dec_eq(x_325, x_309); +x_326 = lean_nat_dec_eq(x_325, x_23); lean_dec(x_325); if (x_326 == 0) { lean_object* x_327; lean_object* x_328; -lean_dec(x_319); +lean_dec(x_320); lean_dec(x_2); lean_dec(x_1); x_327 = lean_box(1); @@ -17757,368 +19574,368 @@ return x_328; } else { -lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; uint8_t x_407; -x_329 = l_Lean_Syntax_getArg(x_319, x_23); -lean_dec(x_319); -x_330 = lean_unsigned_to_nat(3u); -x_331 = l_Lean_Syntax_getArg(x_1, x_330); -lean_inc(x_331); -x_407 = l_Lean_Syntax_isOfKind(x_331, x_16); -if (x_407 == 0) +lean_object* x_329; lean_object* x_330; uint8_t x_331; +x_329 = l_Lean_Syntax_getArg(x_320, x_14); +lean_dec(x_320); +x_330 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_329); +x_331 = l_Lean_Syntax_isOfKind(x_329, x_330); +if (x_331 == 0) { -lean_object* x_408; -x_408 = lean_box(0); -x_332 = x_408; -goto block_406; -} -else -{ -lean_object* x_409; lean_object* x_410; uint8_t x_411; -x_409 = l_Lean_Syntax_getArgs(x_331); -x_410 = lean_array_get_size(x_409); -lean_dec(x_409); -x_411 = lean_nat_dec_eq(x_410, x_14); -lean_dec(x_410); -if (x_411 == 0) -{ -lean_object* x_412; -x_412 = lean_box(0); -x_332 = x_412; -goto block_406; -} -else -{ -lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; -lean_dec(x_331); -x_413 = lean_unsigned_to_nat(4u); -x_414 = l_Lean_Syntax_getArg(x_1, x_413); -x_415 = lean_unsigned_to_nat(6u); -x_416 = l_Lean_Syntax_getArg(x_1, x_415); -lean_dec(x_1); -x_417 = l_Lean_Syntax_toNat(x_329); -x_418 = lean_nat_add(x_417, x_23); -lean_dec(x_417); -x_419 = l_Nat_repr(x_418); -x_420 = l_Lean_numLitKind; -x_421 = l_Lean_instInhabitedSourceInfo___closed__1; -x_422 = l_Lean_Syntax_mkLit(x_420, x_419, x_421); -x_423 = lean_ctor_get(x_2, 2); -lean_inc(x_423); -x_424 = lean_ctor_get(x_2, 1); -lean_inc(x_424); +lean_object* x_332; lean_object* x_333; +lean_dec(x_329); lean_dec(x_2); -x_425 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_426 = lean_array_push(x_425, x_329); -x_427 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_427, 0, x_320); -lean_ctor_set(x_427, 1, x_426); -x_428 = l_Array_empty___closed__1; -x_429 = lean_array_push(x_428, x_427); -x_430 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_430, 0, x_16); -lean_ctor_set(x_430, 1, x_429); -x_431 = l_Lean_Elab_Command_expandMixfix___closed__12; -x_432 = lean_array_push(x_431, x_430); -x_433 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_434 = lean_array_push(x_432, x_433); -x_435 = l_Lean_Elab_Command_expandMixfix___closed__26; -lean_inc(x_423); -lean_inc(x_424); -x_436 = l_Lean_addMacroScope(x_424, x_435, x_423); -x_437 = lean_box(0); -x_438 = l_Lean_Elab_Command_expandMixfix___closed__25; -x_439 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_439, 0, x_421); -lean_ctor_set(x_439, 1, x_438); -lean_ctor_set(x_439, 2, x_436); -lean_ctor_set(x_439, 3, x_437); -x_440 = lean_array_push(x_428, x_439); -lean_inc(x_440); -x_441 = lean_array_push(x_440, x_433); -x_442 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_443 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_443, 0, x_442); -lean_ctor_set(x_443, 1, x_441); -x_444 = lean_array_push(x_428, x_443); -x_445 = lean_array_push(x_444, x_414); -x_446 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_447 = l_Lean_addMacroScope(x_424, x_446, x_423); -x_448 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +lean_dec(x_1); +x_332 = lean_box(1); +x_333 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_333, 0, x_332); +lean_ctor_set(x_333, 1, x_3); +return x_333; +} +else +{ +lean_object* x_334; lean_object* x_335; uint8_t x_336; +x_334 = l_Lean_Syntax_getArgs(x_329); +x_335 = lean_array_get_size(x_334); +lean_dec(x_334); +x_336 = lean_nat_dec_eq(x_335, x_319); +lean_dec(x_335); +if (x_336 == 0) +{ +lean_object* x_337; lean_object* x_338; +lean_dec(x_329); +lean_dec(x_2); +lean_dec(x_1); +x_337 = lean_box(1); +x_338 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_338, 0, x_337); +lean_ctor_set(x_338, 1, x_3); +return x_338; +} +else +{ +lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; uint8_t x_417; +x_339 = l_Lean_Syntax_getArg(x_329, x_23); +lean_dec(x_329); +x_340 = lean_unsigned_to_nat(3u); +x_341 = l_Lean_Syntax_getArg(x_1, x_340); +lean_inc(x_341); +x_417 = l_Lean_Syntax_isOfKind(x_341, x_17); +if (x_417 == 0) +{ +lean_object* x_418; +x_418 = lean_box(0); +x_342 = x_418; +goto block_416; +} +else +{ +lean_object* x_419; lean_object* x_420; uint8_t x_421; +x_419 = l_Lean_Syntax_getArgs(x_341); +x_420 = lean_array_get_size(x_419); +lean_dec(x_419); +x_421 = lean_nat_dec_eq(x_420, x_14); +lean_dec(x_420); +if (x_421 == 0) +{ +lean_object* x_422; +x_422 = lean_box(0); +x_342 = x_422; +goto block_416; +} +else +{ +lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; +lean_dec(x_341); +x_423 = lean_unsigned_to_nat(4u); +x_424 = l_Lean_Syntax_getArg(x_1, x_423); +x_425 = lean_unsigned_to_nat(6u); +x_426 = l_Lean_Syntax_getArg(x_1, x_425); +lean_dec(x_1); +x_427 = l_Lean_Syntax_toNat(x_339); +x_428 = lean_nat_add(x_427, x_23); +lean_dec(x_427); +x_429 = l_Nat_repr(x_428); +x_430 = l_Lean_numLitKind; +x_431 = l_Lean_instInhabitedSourceInfo___closed__1; +x_432 = l_Lean_Syntax_mkLit(x_430, x_429, x_431); +x_433 = lean_ctor_get(x_2, 2); +lean_inc(x_433); +x_434 = lean_ctor_get(x_2, 1); +lean_inc(x_434); +lean_dec(x_2); +x_435 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_436 = lean_array_push(x_435, x_339); +x_437 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_437, 0, x_330); +lean_ctor_set(x_437, 1, x_436); +x_438 = l_Array_empty___closed__1; +x_439 = lean_array_push(x_438, x_437); +x_440 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_440, 0, x_17); +lean_ctor_set(x_440, 1, x_439); +x_441 = l_Lean_Elab_Command_expandMixfix___closed__17; +x_442 = lean_array_push(x_441, x_440); +x_443 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_444 = lean_array_push(x_442, x_443); +x_445 = l_Lean_Elab_Command_expandMixfix___closed__31; +lean_inc(x_433); +lean_inc(x_434); +x_446 = l_Lean_addMacroScope(x_434, x_445, x_433); +x_447 = lean_box(0); +x_448 = l_Lean_Elab_Command_expandMixfix___closed__30; x_449 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_449, 0, x_421); +lean_ctor_set(x_449, 0, x_431); lean_ctor_set(x_449, 1, x_448); -lean_ctor_set(x_449, 2, x_447); -lean_ctor_set(x_449, 3, x_437); -lean_inc(x_449); -x_450 = lean_array_push(x_428, x_449); -x_451 = lean_array_push(x_425, x_422); -x_452 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_452, 0, x_320); -lean_ctor_set(x_452, 1, x_451); -x_453 = lean_array_push(x_428, x_452); -x_454 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_454, 0, x_16); -lean_ctor_set(x_454, 1, x_453); -x_455 = lean_array_push(x_450, x_454); -x_456 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_456, 0, x_442); -lean_ctor_set(x_456, 1, x_455); -x_457 = lean_array_push(x_445, x_456); -x_458 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_458, 0, x_16); -lean_ctor_set(x_458, 1, x_457); -x_459 = lean_array_push(x_434, x_458); -x_460 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_461 = lean_array_push(x_459, x_460); -x_462 = lean_array_push(x_428, x_416); -x_463 = lean_array_push(x_440, x_449); +lean_ctor_set(x_449, 2, x_446); +lean_ctor_set(x_449, 3, x_447); +x_450 = lean_array_push(x_438, x_449); +lean_inc(x_450); +x_451 = lean_array_push(x_450, x_443); +x_452 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_453 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_453, 0, x_452); +lean_ctor_set(x_453, 1, x_451); +x_454 = lean_array_push(x_438, x_453); +x_455 = lean_array_push(x_454, x_424); +x_456 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_457 = l_Lean_addMacroScope(x_434, x_456, x_433); +x_458 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_459 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_459, 0, x_431); +lean_ctor_set(x_459, 1, x_458); +lean_ctor_set(x_459, 2, x_457); +lean_ctor_set(x_459, 3, x_447); +lean_inc(x_459); +x_460 = lean_array_push(x_438, x_459); +x_461 = lean_array_push(x_435, x_432); +x_462 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_462, 0, x_330); +lean_ctor_set(x_462, 1, x_461); +x_463 = lean_array_push(x_438, x_462); x_464 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_464, 0, x_16); +lean_ctor_set(x_464, 0, x_17); lean_ctor_set(x_464, 1, x_463); -x_465 = lean_array_push(x_462, x_464); -x_466 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_467 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_467, 0, x_466); -lean_ctor_set(x_467, 1, x_465); -x_468 = lean_array_push(x_461, x_467); -x_469 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_470 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_470, 0, x_469); -lean_ctor_set(x_470, 1, x_468); -x_471 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_471, 0, x_470); -lean_ctor_set(x_471, 1, x_3); -return x_471; -} -} -block_406: -{ -uint8_t x_333; -lean_dec(x_332); -lean_inc(x_331); -x_333 = l_Lean_Syntax_isOfKind(x_331, x_16); -if (x_333 == 0) -{ -lean_object* x_334; lean_object* x_335; -lean_dec(x_331); -lean_dec(x_329); -lean_dec(x_2); -lean_dec(x_1); -x_334 = lean_box(1); -x_335 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_335, 0, x_334); -lean_ctor_set(x_335, 1, x_3); -return x_335; -} -else -{ -lean_object* x_336; lean_object* x_337; uint8_t x_338; -x_336 = l_Lean_Syntax_getArgs(x_331); -x_337 = lean_array_get_size(x_336); -lean_dec(x_336); -x_338 = lean_nat_dec_eq(x_337, x_330); -lean_dec(x_337); -if (x_338 == 0) -{ -lean_object* x_339; lean_object* x_340; -lean_dec(x_331); -lean_dec(x_329); -lean_dec(x_2); -lean_dec(x_1); -x_339 = lean_box(1); -x_340 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_340, 0, x_339); -lean_ctor_set(x_340, 1, x_3); -return x_340; -} -else -{ -lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; -x_341 = l_Lean_Syntax_getArg(x_331, x_23); -lean_dec(x_331); -x_342 = lean_unsigned_to_nat(4u); -x_343 = l_Lean_Syntax_getArg(x_1, x_342); -x_344 = lean_unsigned_to_nat(6u); -x_345 = l_Lean_Syntax_getArg(x_1, x_344); -lean_dec(x_1); -x_346 = l_Lean_Syntax_toNat(x_329); -x_347 = lean_nat_add(x_346, x_23); -lean_dec(x_346); -x_348 = l_Nat_repr(x_347); -x_349 = l_Lean_numLitKind; -x_350 = l_Lean_instInhabitedSourceInfo___closed__1; -x_351 = l_Lean_Syntax_mkLit(x_349, x_348, x_350); -x_352 = lean_ctor_get(x_2, 2); -lean_inc(x_352); -x_353 = lean_ctor_get(x_2, 1); -lean_inc(x_353); -lean_dec(x_2); -x_354 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_355 = lean_array_push(x_354, x_329); -x_356 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_356, 0, x_320); -lean_ctor_set(x_356, 1, x_355); -x_357 = l_Array_empty___closed__1; -x_358 = lean_array_push(x_357, x_356); -x_359 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_359, 0, x_16); -lean_ctor_set(x_359, 1, x_358); -x_360 = l_Lean_Elab_Command_expandMixfix___closed__12; -x_361 = lean_array_push(x_360, x_359); -x_362 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_363 = lean_array_push(x_362, x_341); -x_364 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_365 = lean_array_push(x_363, x_364); -x_366 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_366, 0, x_16); -lean_ctor_set(x_366, 1, x_365); -x_367 = lean_array_push(x_361, x_366); -x_368 = l_Lean_Elab_Command_expandMixfix___closed__26; -lean_inc(x_352); -lean_inc(x_353); -x_369 = l_Lean_addMacroScope(x_353, x_368, x_352); -x_370 = lean_box(0); -x_371 = l_Lean_Elab_Command_expandMixfix___closed__25; -x_372 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_372, 0, x_350); -lean_ctor_set(x_372, 1, x_371); -lean_ctor_set(x_372, 2, x_369); -lean_ctor_set(x_372, 3, x_370); -x_373 = lean_array_push(x_357, x_372); -x_374 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_373); -x_375 = lean_array_push(x_373, x_374); -x_376 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_377 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_377, 0, x_376); -lean_ctor_set(x_377, 1, x_375); -x_378 = lean_array_push(x_357, x_377); -x_379 = lean_array_push(x_378, x_343); -x_380 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_381 = l_Lean_addMacroScope(x_353, x_380, x_352); -x_382 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; -x_383 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_383, 0, x_350); -lean_ctor_set(x_383, 1, x_382); -lean_ctor_set(x_383, 2, x_381); -lean_ctor_set(x_383, 3, x_370); -lean_inc(x_383); -x_384 = lean_array_push(x_357, x_383); -x_385 = lean_array_push(x_354, x_351); -x_386 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_386, 0, x_320); -lean_ctor_set(x_386, 1, x_385); -x_387 = lean_array_push(x_357, x_386); -x_388 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_388, 0, x_16); -lean_ctor_set(x_388, 1, x_387); -x_389 = lean_array_push(x_384, x_388); -x_390 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_390, 0, x_376); -lean_ctor_set(x_390, 1, x_389); -x_391 = lean_array_push(x_379, x_390); -x_392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_392, 0, x_16); -lean_ctor_set(x_392, 1, x_391); -x_393 = lean_array_push(x_367, x_392); -x_394 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_395 = lean_array_push(x_393, x_394); -x_396 = lean_array_push(x_357, x_345); -x_397 = lean_array_push(x_373, x_383); -x_398 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_398, 0, x_16); -lean_ctor_set(x_398, 1, x_397); -x_399 = lean_array_push(x_396, x_398); -x_400 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_401, 0, x_400); -lean_ctor_set(x_401, 1, x_399); -x_402 = lean_array_push(x_395, x_401); -x_403 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_404 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_404, 0, x_403); -lean_ctor_set(x_404, 1, x_402); -x_405 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_405, 0, x_404); -lean_ctor_set(x_405, 1, x_3); -return x_405; -} -} -} -} -} -} -} -} -} -} -else -{ -lean_object* x_472; lean_object* x_473; uint8_t x_474; -x_472 = l_Lean_Syntax_getArgs(x_27); -x_473 = lean_array_get_size(x_472); -lean_dec(x_472); -x_474 = lean_nat_dec_eq(x_473, x_23); -lean_dec(x_473); -if (x_474 == 0) -{ -lean_object* x_475; -x_475 = lean_box(0); -x_28 = x_475; -goto block_298; -} -else -{ -lean_object* x_476; lean_object* x_477; uint8_t x_478; -lean_dec(x_27); -x_476 = lean_unsigned_to_nat(2u); -x_477 = l_Lean_Syntax_getArg(x_1, x_476); -lean_inc(x_477); -x_478 = l_Lean_Syntax_isOfKind(x_477, x_16); -if (x_478 == 0) -{ -lean_object* x_479; lean_object* x_480; -lean_dec(x_477); -lean_dec(x_2); -lean_dec(x_1); -x_479 = lean_box(1); +x_465 = lean_array_push(x_460, x_464); +x_466 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_466, 0, x_452); +lean_ctor_set(x_466, 1, x_465); +x_467 = lean_array_push(x_455, x_466); +x_468 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_468, 0, x_17); +lean_ctor_set(x_468, 1, x_467); +x_469 = lean_array_push(x_444, x_468); +x_470 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_471 = lean_array_push(x_469, x_470); +x_472 = lean_array_push(x_438, x_426); +x_473 = lean_array_push(x_450, x_459); +x_474 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_474, 0, x_17); +lean_ctor_set(x_474, 1, x_473); +x_475 = lean_array_push(x_472, x_474); +x_476 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_477, 0, x_476); +lean_ctor_set(x_477, 1, x_475); +x_478 = lean_array_push(x_471, x_477); +x_479 = l_Lean_Elab_Command_expandMixfix___closed__11; x_480 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_480, 0, x_479); -lean_ctor_set(x_480, 1, x_3); -return x_480; +lean_ctor_set(x_480, 1, x_478); +x_481 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_481, 0, x_480); +lean_ctor_set(x_481, 1, x_3); +return x_481; +} +} +block_416: +{ +uint8_t x_343; +lean_dec(x_342); +lean_inc(x_341); +x_343 = l_Lean_Syntax_isOfKind(x_341, x_17); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; +lean_dec(x_341); +lean_dec(x_339); +lean_dec(x_2); +lean_dec(x_1); +x_344 = lean_box(1); +x_345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_345, 0, x_344); +lean_ctor_set(x_345, 1, x_3); +return x_345; } else { -lean_object* x_481; lean_object* x_482; uint8_t x_483; -x_481 = l_Lean_Syntax_getArgs(x_477); -x_482 = lean_array_get_size(x_481); -lean_dec(x_481); -x_483 = lean_nat_dec_eq(x_482, x_23); -lean_dec(x_482); -if (x_483 == 0) +lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_346 = l_Lean_Syntax_getArgs(x_341); +x_347 = lean_array_get_size(x_346); +lean_dec(x_346); +x_348 = lean_nat_dec_eq(x_347, x_340); +lean_dec(x_347); +if (x_348 == 0) { -lean_object* x_484; lean_object* x_485; -lean_dec(x_477); +lean_object* x_349; lean_object* x_350; +lean_dec(x_341); +lean_dec(x_339); lean_dec(x_2); lean_dec(x_1); -x_484 = lean_box(1); -x_485 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_485, 0, x_484); -lean_ctor_set(x_485, 1, x_3); -return x_485; +x_349 = lean_box(1); +x_350 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_350, 0, x_349); +lean_ctor_set(x_350, 1, x_3); +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_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; +x_351 = l_Lean_Syntax_getArg(x_341, x_23); +lean_dec(x_341); +x_352 = lean_unsigned_to_nat(4u); +x_353 = l_Lean_Syntax_getArg(x_1, x_352); +x_354 = lean_unsigned_to_nat(6u); +x_355 = l_Lean_Syntax_getArg(x_1, x_354); +lean_dec(x_1); +x_356 = l_Lean_Syntax_toNat(x_339); +x_357 = lean_nat_add(x_356, x_23); +lean_dec(x_356); +x_358 = l_Nat_repr(x_357); +x_359 = l_Lean_numLitKind; +x_360 = l_Lean_instInhabitedSourceInfo___closed__1; +x_361 = l_Lean_Syntax_mkLit(x_359, x_358, x_360); +x_362 = lean_ctor_get(x_2, 2); +lean_inc(x_362); +x_363 = lean_ctor_get(x_2, 1); +lean_inc(x_363); +lean_dec(x_2); +x_364 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_365 = lean_array_push(x_364, x_339); +x_366 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_366, 0, x_330); +lean_ctor_set(x_366, 1, x_365); +x_367 = l_Array_empty___closed__1; +x_368 = lean_array_push(x_367, x_366); +x_369 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_369, 0, x_17); +lean_ctor_set(x_369, 1, x_368); +x_370 = l_Lean_Elab_Command_expandMixfix___closed__17; +x_371 = lean_array_push(x_370, x_369); +x_372 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_373 = lean_array_push(x_372, x_351); +x_374 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_375 = lean_array_push(x_373, x_374); +x_376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_376, 0, x_17); +lean_ctor_set(x_376, 1, x_375); +x_377 = lean_array_push(x_371, x_376); +x_378 = l_Lean_Elab_Command_expandMixfix___closed__31; +lean_inc(x_362); +lean_inc(x_363); +x_379 = l_Lean_addMacroScope(x_363, x_378, x_362); +x_380 = lean_box(0); +x_381 = l_Lean_Elab_Command_expandMixfix___closed__30; +x_382 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_382, 0, x_360); +lean_ctor_set(x_382, 1, x_381); +lean_ctor_set(x_382, 2, x_379); +lean_ctor_set(x_382, 3, x_380); +x_383 = lean_array_push(x_367, x_382); +x_384 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +lean_inc(x_383); +x_385 = lean_array_push(x_383, x_384); +x_386 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_387 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_387, 0, x_386); +lean_ctor_set(x_387, 1, x_385); +x_388 = lean_array_push(x_367, x_387); +x_389 = lean_array_push(x_388, x_353); +x_390 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_391 = l_Lean_addMacroScope(x_363, x_390, x_362); +x_392 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_393 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_393, 0, x_360); +lean_ctor_set(x_393, 1, x_392); +lean_ctor_set(x_393, 2, x_391); +lean_ctor_set(x_393, 3, x_380); +lean_inc(x_393); +x_394 = lean_array_push(x_367, x_393); +x_395 = lean_array_push(x_364, x_361); +x_396 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_396, 0, x_330); +lean_ctor_set(x_396, 1, x_395); +x_397 = lean_array_push(x_367, x_396); +x_398 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_398, 0, x_17); +lean_ctor_set(x_398, 1, x_397); +x_399 = lean_array_push(x_394, x_398); +x_400 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_400, 0, x_386); +lean_ctor_set(x_400, 1, x_399); +x_401 = lean_array_push(x_389, x_400); +x_402 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_402, 0, x_17); +lean_ctor_set(x_402, 1, x_401); +x_403 = lean_array_push(x_377, x_402); +x_404 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_405 = lean_array_push(x_403, x_404); +x_406 = lean_array_push(x_367, x_355); +x_407 = lean_array_push(x_383, x_393); +x_408 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_408, 0, x_17); +lean_ctor_set(x_408, 1, x_407); +x_409 = lean_array_push(x_406, x_408); +x_410 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_411 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_411, 0, x_410); +lean_ctor_set(x_411, 1, x_409); +x_412 = lean_array_push(x_405, x_411); +x_413 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_414 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_414, 0, x_413); +lean_ctor_set(x_414, 1, x_412); +x_415 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_415, 0, x_414); +lean_ctor_set(x_415, 1, x_3); +return x_415; +} +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_482; lean_object* x_483; uint8_t x_484; +x_482 = l_Lean_Syntax_getArgs(x_37); +x_483 = lean_array_get_size(x_482); +lean_dec(x_482); +x_484 = lean_nat_dec_eq(x_483, x_23); +lean_dec(x_483); +if (x_484 == 0) +{ +lean_object* x_485; +x_485 = lean_box(0); +x_38 = x_485; +goto block_308; } else { lean_object* x_486; lean_object* x_487; uint8_t x_488; -x_486 = l_Lean_Syntax_getArg(x_477, x_14); -lean_dec(x_477); -x_487 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_486); -x_488 = l_Lean_Syntax_isOfKind(x_486, x_487); +lean_dec(x_37); +x_486 = lean_unsigned_to_nat(2u); +x_487 = l_Lean_Syntax_getArg(x_1, x_486); +lean_inc(x_487); +x_488 = l_Lean_Syntax_isOfKind(x_487, x_17); if (x_488 == 0) { lean_object* x_489; lean_object* x_490; -lean_dec(x_486); +lean_dec(x_487); lean_dec(x_2); lean_dec(x_1); x_489 = lean_box(1); @@ -18130,15 +19947,15 @@ return x_490; else { lean_object* x_491; lean_object* x_492; uint8_t x_493; -x_491 = l_Lean_Syntax_getArgs(x_486); +x_491 = l_Lean_Syntax_getArgs(x_487); x_492 = lean_array_get_size(x_491); lean_dec(x_491); -x_493 = lean_nat_dec_eq(x_492, x_476); +x_493 = lean_nat_dec_eq(x_492, x_23); lean_dec(x_492); if (x_493 == 0) { lean_object* x_494; lean_object* x_495; -lean_dec(x_486); +lean_dec(x_487); lean_dec(x_2); lean_dec(x_1); x_494 = lean_box(1); @@ -18149,265 +19966,305 @@ return x_495; } else { -lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; uint8_t x_565; -x_496 = l_Lean_Syntax_getArg(x_486, x_23); -lean_dec(x_486); -x_497 = lean_unsigned_to_nat(3u); -x_498 = l_Lean_Syntax_getArg(x_1, x_497); -lean_inc(x_498); -x_565 = l_Lean_Syntax_isOfKind(x_498, x_16); -if (x_565 == 0) +lean_object* x_496; lean_object* x_497; uint8_t x_498; +x_496 = l_Lean_Syntax_getArg(x_487, x_14); +lean_dec(x_487); +x_497 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_496); +x_498 = l_Lean_Syntax_isOfKind(x_496, x_497); +if (x_498 == 0) { -lean_object* x_566; -x_566 = lean_box(0); -x_499 = x_566; -goto block_564; -} -else -{ -lean_object* x_567; lean_object* x_568; uint8_t x_569; -x_567 = l_Lean_Syntax_getArgs(x_498); -x_568 = lean_array_get_size(x_567); -lean_dec(x_567); -x_569 = lean_nat_dec_eq(x_568, x_14); -lean_dec(x_568); -if (x_569 == 0) -{ -lean_object* x_570; -x_570 = lean_box(0); -x_499 = x_570; -goto block_564; -} -else -{ -lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; -lean_dec(x_498); -x_571 = lean_unsigned_to_nat(4u); -x_572 = l_Lean_Syntax_getArg(x_1, x_571); -x_573 = lean_unsigned_to_nat(6u); -x_574 = l_Lean_Syntax_getArg(x_1, x_573); -lean_dec(x_1); -x_575 = lean_ctor_get(x_2, 2); -lean_inc(x_575); -x_576 = lean_ctor_get(x_2, 1); -lean_inc(x_576); +lean_object* x_499; lean_object* x_500; +lean_dec(x_496); lean_dec(x_2); -x_577 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_578 = lean_array_push(x_577, x_496); -x_579 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_579, 0, x_487); -lean_ctor_set(x_579, 1, x_578); -x_580 = l_Array_empty___closed__1; -x_581 = lean_array_push(x_580, x_579); -x_582 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_582, 0, x_16); -lean_ctor_set(x_582, 1, x_581); -x_583 = l_Lean_Elab_Command_expandMixfix___closed__12; -lean_inc(x_582); -x_584 = lean_array_push(x_583, x_582); -x_585 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_586 = lean_array_push(x_584, x_585); -x_587 = l_Lean_Elab_Command_expandMixfix___closed__26; -lean_inc(x_575); -lean_inc(x_576); -x_588 = l_Lean_addMacroScope(x_576, x_587, x_575); -x_589 = lean_box(0); -x_590 = l_Lean_instInhabitedSourceInfo___closed__1; -x_591 = l_Lean_Elab_Command_expandMixfix___closed__25; -x_592 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_592, 0, x_590); +lean_dec(x_1); +x_499 = lean_box(1); +x_500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_500, 0, x_499); +lean_ctor_set(x_500, 1, x_3); +return x_500; +} +else +{ +lean_object* x_501; lean_object* x_502; uint8_t x_503; +x_501 = l_Lean_Syntax_getArgs(x_496); +x_502 = lean_array_get_size(x_501); +lean_dec(x_501); +x_503 = lean_nat_dec_eq(x_502, x_486); +lean_dec(x_502); +if (x_503 == 0) +{ +lean_object* x_504; lean_object* x_505; +lean_dec(x_496); +lean_dec(x_2); +lean_dec(x_1); +x_504 = lean_box(1); +x_505 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_505, 0, x_504); +lean_ctor_set(x_505, 1, x_3); +return x_505; +} +else +{ +lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; uint8_t x_575; +x_506 = l_Lean_Syntax_getArg(x_496, x_23); +lean_dec(x_496); +x_507 = lean_unsigned_to_nat(3u); +x_508 = l_Lean_Syntax_getArg(x_1, x_507); +lean_inc(x_508); +x_575 = l_Lean_Syntax_isOfKind(x_508, x_17); +if (x_575 == 0) +{ +lean_object* x_576; +x_576 = lean_box(0); +x_509 = x_576; +goto block_574; +} +else +{ +lean_object* x_577; lean_object* x_578; uint8_t x_579; +x_577 = l_Lean_Syntax_getArgs(x_508); +x_578 = lean_array_get_size(x_577); +lean_dec(x_577); +x_579 = lean_nat_dec_eq(x_578, x_14); +lean_dec(x_578); +if (x_579 == 0) +{ +lean_object* x_580; +x_580 = lean_box(0); +x_509 = x_580; +goto block_574; +} +else +{ +lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; +lean_dec(x_508); +x_581 = lean_unsigned_to_nat(4u); +x_582 = l_Lean_Syntax_getArg(x_1, x_581); +x_583 = lean_unsigned_to_nat(6u); +x_584 = l_Lean_Syntax_getArg(x_1, x_583); +lean_dec(x_1); +x_585 = lean_ctor_get(x_2, 2); +lean_inc(x_585); +x_586 = lean_ctor_get(x_2, 1); +lean_inc(x_586); +lean_dec(x_2); +x_587 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_588 = lean_array_push(x_587, x_506); +x_589 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_589, 0, x_497); +lean_ctor_set(x_589, 1, x_588); +x_590 = l_Array_empty___closed__1; +x_591 = lean_array_push(x_590, x_589); +x_592 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_592, 0, x_17); lean_ctor_set(x_592, 1, x_591); -lean_ctor_set(x_592, 2, x_588); -lean_ctor_set(x_592, 3, x_589); -x_593 = lean_array_push(x_580, x_592); -lean_inc(x_593); -x_594 = lean_array_push(x_593, x_585); -x_595 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_596 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_596, 0, x_595); -lean_ctor_set(x_596, 1, x_594); -x_597 = lean_array_push(x_580, x_596); -x_598 = lean_array_push(x_597, x_572); -x_599 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_600 = l_Lean_addMacroScope(x_576, x_599, x_575); -x_601 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_593 = l_Lean_Elab_Command_expandMixfix___closed__17; +lean_inc(x_592); +x_594 = lean_array_push(x_593, x_592); +x_595 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; +x_596 = lean_array_push(x_594, x_595); +x_597 = l_Lean_Elab_Command_expandMixfix___closed__31; +lean_inc(x_585); +lean_inc(x_586); +x_598 = l_Lean_addMacroScope(x_586, x_597, x_585); +x_599 = lean_box(0); +x_600 = l_Lean_instInhabitedSourceInfo___closed__1; +x_601 = l_Lean_Elab_Command_expandMixfix___closed__30; x_602 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_602, 0, x_590); +lean_ctor_set(x_602, 0, x_600); lean_ctor_set(x_602, 1, x_601); -lean_ctor_set(x_602, 2, x_600); -lean_ctor_set(x_602, 3, x_589); -lean_inc(x_602); -x_603 = lean_array_push(x_580, x_602); -x_604 = lean_array_push(x_603, x_582); -x_605 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_605, 0, x_595); -lean_ctor_set(x_605, 1, x_604); -x_606 = lean_array_push(x_598, x_605); -x_607 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_607, 0, x_16); -lean_ctor_set(x_607, 1, x_606); -x_608 = lean_array_push(x_586, x_607); -x_609 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_610 = lean_array_push(x_608, x_609); -x_611 = lean_array_push(x_580, x_574); -x_612 = lean_array_push(x_593, x_602); -x_613 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_613, 0, x_16); -lean_ctor_set(x_613, 1, x_612); -x_614 = lean_array_push(x_611, x_613); -x_615 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_616 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_616, 0, x_615); -lean_ctor_set(x_616, 1, x_614); -x_617 = lean_array_push(x_610, x_616); -x_618 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_619 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_619, 0, x_618); -lean_ctor_set(x_619, 1, x_617); -x_620 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_620, 0, x_619); -lean_ctor_set(x_620, 1, x_3); -return x_620; +lean_ctor_set(x_602, 2, x_598); +lean_ctor_set(x_602, 3, x_599); +x_603 = lean_array_push(x_590, x_602); +lean_inc(x_603); +x_604 = lean_array_push(x_603, x_595); +x_605 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_606 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_606, 0, x_605); +lean_ctor_set(x_606, 1, x_604); +x_607 = lean_array_push(x_590, x_606); +x_608 = lean_array_push(x_607, x_582); +x_609 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_610 = l_Lean_addMacroScope(x_586, x_609, x_585); +x_611 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_612 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_612, 0, x_600); +lean_ctor_set(x_612, 1, x_611); +lean_ctor_set(x_612, 2, x_610); +lean_ctor_set(x_612, 3, x_599); +lean_inc(x_612); +x_613 = lean_array_push(x_590, x_612); +x_614 = lean_array_push(x_613, x_592); +x_615 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_615, 0, x_605); +lean_ctor_set(x_615, 1, x_614); +x_616 = lean_array_push(x_608, x_615); +x_617 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_617, 0, x_17); +lean_ctor_set(x_617, 1, x_616); +x_618 = lean_array_push(x_596, x_617); +x_619 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_620 = lean_array_push(x_618, x_619); +x_621 = lean_array_push(x_590, x_584); +x_622 = lean_array_push(x_603, x_612); +x_623 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_623, 0, x_17); +lean_ctor_set(x_623, 1, x_622); +x_624 = lean_array_push(x_621, x_623); +x_625 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_626 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_626, 0, x_625); +lean_ctor_set(x_626, 1, x_624); +x_627 = lean_array_push(x_620, x_626); +x_628 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_629 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_629, 0, x_628); +lean_ctor_set(x_629, 1, x_627); +x_630 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_630, 0, x_629); +lean_ctor_set(x_630, 1, x_3); +return x_630; } } -block_564: +block_574: { -uint8_t x_500; -lean_dec(x_499); -lean_inc(x_498); -x_500 = l_Lean_Syntax_isOfKind(x_498, x_16); -if (x_500 == 0) +uint8_t x_510; +lean_dec(x_509); +lean_inc(x_508); +x_510 = l_Lean_Syntax_isOfKind(x_508, x_17); +if (x_510 == 0) { -lean_object* x_501; lean_object* x_502; -lean_dec(x_498); -lean_dec(x_496); +lean_object* x_511; lean_object* x_512; +lean_dec(x_508); +lean_dec(x_506); lean_dec(x_2); lean_dec(x_1); -x_501 = lean_box(1); -x_502 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_502, 0, x_501); -lean_ctor_set(x_502, 1, x_3); -return x_502; +x_511 = lean_box(1); +x_512 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_512, 0, x_511); +lean_ctor_set(x_512, 1, x_3); +return x_512; } else { -lean_object* x_503; lean_object* x_504; uint8_t x_505; -x_503 = l_Lean_Syntax_getArgs(x_498); -x_504 = lean_array_get_size(x_503); -lean_dec(x_503); -x_505 = lean_nat_dec_eq(x_504, x_497); -lean_dec(x_504); -if (x_505 == 0) +lean_object* x_513; lean_object* x_514; uint8_t x_515; +x_513 = l_Lean_Syntax_getArgs(x_508); +x_514 = lean_array_get_size(x_513); +lean_dec(x_513); +x_515 = lean_nat_dec_eq(x_514, x_507); +lean_dec(x_514); +if (x_515 == 0) { -lean_object* x_506; lean_object* x_507; -lean_dec(x_498); -lean_dec(x_496); +lean_object* x_516; lean_object* x_517; +lean_dec(x_508); +lean_dec(x_506); lean_dec(x_2); lean_dec(x_1); -x_506 = lean_box(1); -x_507 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_507, 0, x_506); -lean_ctor_set(x_507, 1, x_3); -return x_507; -} -else -{ -lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; -x_508 = l_Lean_Syntax_getArg(x_498, x_23); -lean_dec(x_498); -x_509 = lean_unsigned_to_nat(4u); -x_510 = l_Lean_Syntax_getArg(x_1, x_509); -x_511 = lean_unsigned_to_nat(6u); -x_512 = l_Lean_Syntax_getArg(x_1, x_511); -lean_dec(x_1); -x_513 = lean_ctor_get(x_2, 2); -lean_inc(x_513); -x_514 = lean_ctor_get(x_2, 1); -lean_inc(x_514); -lean_dec(x_2); -x_515 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_516 = lean_array_push(x_515, x_496); +x_516 = lean_box(1); x_517 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_517, 0, x_487); -lean_ctor_set(x_517, 1, x_516); -x_518 = l_Array_empty___closed__1; -x_519 = lean_array_push(x_518, x_517); -x_520 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_520, 0, x_16); -lean_ctor_set(x_520, 1, x_519); -x_521 = l_Lean_Elab_Command_expandMixfix___closed__12; -lean_inc(x_520); -x_522 = lean_array_push(x_521, x_520); -x_523 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_524 = lean_array_push(x_523, x_508); -x_525 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_526 = lean_array_push(x_524, x_525); +lean_ctor_set(x_517, 0, x_516); +lean_ctor_set(x_517, 1, x_3); +return x_517; +} +else +{ +lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; +x_518 = l_Lean_Syntax_getArg(x_508, x_23); +lean_dec(x_508); +x_519 = lean_unsigned_to_nat(4u); +x_520 = l_Lean_Syntax_getArg(x_1, x_519); +x_521 = lean_unsigned_to_nat(6u); +x_522 = l_Lean_Syntax_getArg(x_1, x_521); +lean_dec(x_1); +x_523 = lean_ctor_get(x_2, 2); +lean_inc(x_523); +x_524 = lean_ctor_get(x_2, 1); +lean_inc(x_524); +lean_dec(x_2); +x_525 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; +x_526 = lean_array_push(x_525, x_506); x_527 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_527, 0, x_16); +lean_ctor_set(x_527, 0, x_497); lean_ctor_set(x_527, 1, x_526); -x_528 = lean_array_push(x_522, x_527); -x_529 = l_Lean_Elab_Command_expandMixfix___closed__26; -lean_inc(x_513); -lean_inc(x_514); -x_530 = l_Lean_addMacroScope(x_514, x_529, x_513); -x_531 = lean_box(0); -x_532 = l_Lean_instInhabitedSourceInfo___closed__1; -x_533 = l_Lean_Elab_Command_expandMixfix___closed__25; -x_534 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_534, 0, x_532); -lean_ctor_set(x_534, 1, x_533); -lean_ctor_set(x_534, 2, x_530); -lean_ctor_set(x_534, 3, x_531); -x_535 = lean_array_push(x_518, x_534); -x_536 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_535); -x_537 = lean_array_push(x_535, x_536); -x_538 = l_Lean_Elab_Command_expandMixfix___closed__14; -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_518, x_539); -x_541 = lean_array_push(x_540, x_510); -x_542 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_543 = l_Lean_addMacroScope(x_514, x_542, x_513); -x_544 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; -x_545 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_545, 0, x_532); -lean_ctor_set(x_545, 1, x_544); -lean_ctor_set(x_545, 2, x_543); -lean_ctor_set(x_545, 3, x_531); +x_528 = l_Array_empty___closed__1; +x_529 = lean_array_push(x_528, x_527); +x_530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_530, 0, x_17); +lean_ctor_set(x_530, 1, x_529); +x_531 = l_Lean_Elab_Command_expandMixfix___closed__17; +lean_inc(x_530); +x_532 = lean_array_push(x_531, x_530); +x_533 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; +x_534 = lean_array_push(x_533, x_518); +x_535 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; +x_536 = lean_array_push(x_534, x_535); +x_537 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_537, 0, x_17); +lean_ctor_set(x_537, 1, x_536); +x_538 = lean_array_push(x_532, x_537); +x_539 = l_Lean_Elab_Command_expandMixfix___closed__31; +lean_inc(x_523); +lean_inc(x_524); +x_540 = l_Lean_addMacroScope(x_524, x_539, x_523); +x_541 = lean_box(0); +x_542 = l_Lean_instInhabitedSourceInfo___closed__1; +x_543 = l_Lean_Elab_Command_expandMixfix___closed__30; +x_544 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_544, 0, x_542); +lean_ctor_set(x_544, 1, x_543); +lean_ctor_set(x_544, 2, x_540); +lean_ctor_set(x_544, 3, x_541); +x_545 = lean_array_push(x_528, x_544); +x_546 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; lean_inc(x_545); -x_546 = lean_array_push(x_518, x_545); -x_547 = lean_array_push(x_546, x_520); -x_548 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_548, 0, x_538); -lean_ctor_set(x_548, 1, x_547); -x_549 = lean_array_push(x_541, x_548); -x_550 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_550, 0, x_16); -lean_ctor_set(x_550, 1, x_549); -x_551 = lean_array_push(x_528, x_550); -x_552 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_553 = lean_array_push(x_551, x_552); -x_554 = lean_array_push(x_518, x_512); -x_555 = lean_array_push(x_535, x_545); -x_556 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_556, 0, x_16); -lean_ctor_set(x_556, 1, x_555); -x_557 = lean_array_push(x_554, x_556); -x_558 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_559 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_559, 0, x_558); -lean_ctor_set(x_559, 1, x_557); -x_560 = lean_array_push(x_553, x_559); -x_561 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_562 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_562, 0, x_561); -lean_ctor_set(x_562, 1, x_560); -x_563 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_563, 0, x_562); -lean_ctor_set(x_563, 1, x_3); -return x_563; +x_547 = lean_array_push(x_545, x_546); +x_548 = l_Lean_Elab_Command_expandMixfix___closed__19; +x_549 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_549, 0, x_548); +lean_ctor_set(x_549, 1, x_547); +x_550 = lean_array_push(x_528, x_549); +x_551 = lean_array_push(x_550, x_520); +x_552 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_553 = l_Lean_addMacroScope(x_524, x_552, x_523); +x_554 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_555 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_555, 0, x_542); +lean_ctor_set(x_555, 1, x_554); +lean_ctor_set(x_555, 2, x_553); +lean_ctor_set(x_555, 3, x_541); +lean_inc(x_555); +x_556 = lean_array_push(x_528, x_555); +x_557 = lean_array_push(x_556, x_530); +x_558 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_558, 0, x_548); +lean_ctor_set(x_558, 1, x_557); +x_559 = lean_array_push(x_551, x_558); +x_560 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_560, 0, x_17); +lean_ctor_set(x_560, 1, x_559); +x_561 = lean_array_push(x_538, x_560); +x_562 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_563 = lean_array_push(x_561, x_562); +x_564 = lean_array_push(x_528, x_522); +x_565 = lean_array_push(x_545, x_555); +x_566 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_566, 0, x_17); +lean_ctor_set(x_566, 1, x_565); +x_567 = lean_array_push(x_564, x_566); +x_568 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_569, 0, x_568); +lean_ctor_set(x_569, 1, x_567); +x_570 = lean_array_push(x_563, x_569); +x_571 = l_Lean_Elab_Command_expandMixfix___closed__11; +x_572 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_572, 0, x_571); +lean_ctor_set(x_572, 1, x_570); +x_573 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_573, 0, x_572); +lean_ctor_set(x_573, 1, x_3); +return x_573; } } } @@ -18420,1736 +20277,6 @@ return x_563; } } } -else -{ -lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_986; lean_object* x_1309; uint8_t x_1310; -lean_dec(x_21); -x_713 = lean_unsigned_to_nat(1u); -x_714 = l_Lean_Syntax_getArg(x_1, x_713); -x_1309 = l_Lean_Elab_Command_expandMixfix___closed__28; -lean_inc(x_714); -x_1310 = l_Lean_Syntax_isOfKind(x_714, x_1309); -if (x_1310 == 0) -{ -lean_object* x_1311; -x_1311 = lean_box(0); -x_986 = x_1311; -goto block_1308; -} -else -{ -lean_object* x_1312; lean_object* x_1313; uint8_t x_1314; -x_1312 = l_Lean_Syntax_getArgs(x_714); -x_1313 = lean_array_get_size(x_1312); -lean_dec(x_1312); -x_1314 = lean_nat_dec_eq(x_1313, x_713); -lean_dec(x_1313); -if (x_1314 == 0) -{ -lean_object* x_1315; -x_1315 = lean_box(0); -x_986 = x_1315; -goto block_1308; -} -else -{ -lean_object* x_1316; lean_object* x_1317; uint8_t x_1318; -lean_dec(x_714); -lean_dec(x_2); -x_1316 = lean_unsigned_to_nat(2u); -x_1317 = l_Lean_Syntax_getArg(x_1, x_1316); -lean_inc(x_1317); -x_1318 = l_Lean_Syntax_isOfKind(x_1317, x_16); -if (x_1318 == 0) -{ -lean_object* x_1319; lean_object* x_1320; -lean_dec(x_1317); -lean_dec(x_1); -x_1319 = lean_box(1); -x_1320 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1320, 0, x_1319); -lean_ctor_set(x_1320, 1, x_3); -return x_1320; -} -else -{ -lean_object* x_1321; lean_object* x_1322; uint8_t x_1323; -x_1321 = l_Lean_Syntax_getArgs(x_1317); -x_1322 = lean_array_get_size(x_1321); -lean_dec(x_1321); -x_1323 = lean_nat_dec_eq(x_1322, x_713); -lean_dec(x_1322); -if (x_1323 == 0) -{ -lean_object* x_1324; lean_object* x_1325; -lean_dec(x_1317); -lean_dec(x_1); -x_1324 = lean_box(1); -x_1325 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1325, 0, x_1324); -lean_ctor_set(x_1325, 1, x_3); -return x_1325; -} -else -{ -lean_object* x_1326; lean_object* x_1327; uint8_t x_1328; -x_1326 = l_Lean_Syntax_getArg(x_1317, x_14); -lean_dec(x_1317); -x_1327 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_1326); -x_1328 = l_Lean_Syntax_isOfKind(x_1326, x_1327); -if (x_1328 == 0) -{ -lean_object* x_1329; lean_object* x_1330; -lean_dec(x_1326); -lean_dec(x_1); -x_1329 = lean_box(1); -x_1330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1330, 0, x_1329); -lean_ctor_set(x_1330, 1, x_3); -return x_1330; -} -else -{ -lean_object* x_1331; lean_object* x_1332; uint8_t x_1333; -x_1331 = l_Lean_Syntax_getArgs(x_1326); -x_1332 = lean_array_get_size(x_1331); -lean_dec(x_1331); -x_1333 = lean_nat_dec_eq(x_1332, x_1316); -lean_dec(x_1332); -if (x_1333 == 0) -{ -lean_object* x_1334; lean_object* x_1335; -lean_dec(x_1326); -lean_dec(x_1); -x_1334 = lean_box(1); -x_1335 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1335, 0, x_1334); -lean_ctor_set(x_1335, 1, x_3); -return x_1335; -} -else -{ -lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; uint8_t x_1374; -x_1336 = l_Lean_Syntax_getArg(x_1326, x_713); -lean_dec(x_1326); -x_1337 = lean_unsigned_to_nat(3u); -x_1338 = l_Lean_Syntax_getArg(x_1, x_1337); -lean_inc(x_1338); -x_1374 = l_Lean_Syntax_isOfKind(x_1338, x_16); -if (x_1374 == 0) -{ -lean_object* x_1375; -x_1375 = lean_box(0); -x_1339 = x_1375; -goto block_1373; -} -else -{ -lean_object* x_1376; lean_object* x_1377; uint8_t x_1378; -x_1376 = l_Lean_Syntax_getArgs(x_1338); -x_1377 = lean_array_get_size(x_1376); -lean_dec(x_1376); -x_1378 = lean_nat_dec_eq(x_1377, x_14); -lean_dec(x_1377); -if (x_1378 == 0) -{ -lean_object* x_1379; -x_1379 = lean_box(0); -x_1339 = x_1379; -goto block_1373; -} -else -{ -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_dec(x_1338); -x_1380 = lean_unsigned_to_nat(4u); -x_1381 = l_Lean_Syntax_getArg(x_1, x_1380); -x_1382 = lean_unsigned_to_nat(6u); -x_1383 = l_Lean_Syntax_getArg(x_1, x_1382); -lean_dec(x_1); -x_1384 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1385 = lean_array_push(x_1384, x_1336); -x_1386 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1386, 0, x_1327); -lean_ctor_set(x_1386, 1, x_1385); -x_1387 = l_Array_empty___closed__1; -x_1388 = lean_array_push(x_1387, x_1386); -x_1389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1389, 0, x_16); -lean_ctor_set(x_1389, 1, x_1388); -x_1390 = l_Lean_Elab_Command_expandMixfix___closed__34; -x_1391 = lean_array_push(x_1390, x_1389); -x_1392 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_1393 = lean_array_push(x_1391, x_1392); -x_1394 = lean_array_push(x_1393, x_1381); -x_1395 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1396 = lean_array_push(x_1394, x_1395); -x_1397 = lean_array_push(x_1396, x_1383); -x_1398 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1398, 0, x_4); -lean_ctor_set(x_1398, 1, x_1397); -x_1399 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1399, 0, x_1398); -lean_ctor_set(x_1399, 1, x_3); -return x_1399; -} -} -block_1373: -{ -uint8_t x_1340; -lean_dec(x_1339); -lean_inc(x_1338); -x_1340 = l_Lean_Syntax_isOfKind(x_1338, x_16); -if (x_1340 == 0) -{ -lean_object* x_1341; lean_object* x_1342; -lean_dec(x_1338); -lean_dec(x_1336); -lean_dec(x_1); -x_1341 = lean_box(1); -x_1342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1342, 0, x_1341); -lean_ctor_set(x_1342, 1, x_3); -return x_1342; -} -else -{ -lean_object* x_1343; lean_object* x_1344; uint8_t x_1345; -x_1343 = l_Lean_Syntax_getArgs(x_1338); -x_1344 = lean_array_get_size(x_1343); -lean_dec(x_1343); -x_1345 = lean_nat_dec_eq(x_1344, x_1337); -lean_dec(x_1344); -if (x_1345 == 0) -{ -lean_object* x_1346; lean_object* x_1347; -lean_dec(x_1338); -lean_dec(x_1336); -lean_dec(x_1); -x_1346 = lean_box(1); -x_1347 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1347, 0, x_1346); -lean_ctor_set(x_1347, 1, x_3); -return x_1347; -} -else -{ -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; -x_1348 = l_Lean_Syntax_getArg(x_1338, x_713); -lean_dec(x_1338); -x_1349 = lean_unsigned_to_nat(4u); -x_1350 = l_Lean_Syntax_getArg(x_1, x_1349); -x_1351 = lean_unsigned_to_nat(6u); -x_1352 = l_Lean_Syntax_getArg(x_1, x_1351); -lean_dec(x_1); -x_1353 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1354 = lean_array_push(x_1353, x_1336); -x_1355 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1355, 0, x_1327); -lean_ctor_set(x_1355, 1, x_1354); -x_1356 = l_Array_empty___closed__1; -x_1357 = lean_array_push(x_1356, x_1355); -x_1358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1358, 0, x_16); -lean_ctor_set(x_1358, 1, x_1357); -x_1359 = l_Lean_Elab_Command_expandMixfix___closed__34; -x_1360 = lean_array_push(x_1359, x_1358); -x_1361 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_1362 = lean_array_push(x_1361, x_1348); -x_1363 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1364 = lean_array_push(x_1362, x_1363); -x_1365 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1365, 0, x_16); -lean_ctor_set(x_1365, 1, x_1364); -x_1366 = lean_array_push(x_1360, x_1365); -x_1367 = lean_array_push(x_1366, x_1350); -x_1368 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1369 = lean_array_push(x_1367, x_1368); -x_1370 = lean_array_push(x_1369, x_1352); -x_1371 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1371, 0, x_4); -lean_ctor_set(x_1371, 1, x_1370); -x_1372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1372, 0, x_1371); -lean_ctor_set(x_1372, 1, x_3); -return x_1372; -} -} -} -} -} -} -} -} -} -block_985: -{ -lean_object* x_716; uint8_t x_717; -lean_dec(x_715); -x_716 = l_Lean_Elab_Command_expandMixfix___closed__4; -lean_inc(x_714); -x_717 = l_Lean_Syntax_isOfKind(x_714, x_716); -if (x_717 == 0) -{ -lean_object* x_718; uint8_t x_719; -x_718 = l_Lean_Elab_Command_expandMixfix___closed__6; -lean_inc(x_714); -x_719 = l_Lean_Syntax_isOfKind(x_714, x_718); -if (x_719 == 0) -{ -lean_object* x_720; lean_object* x_721; -lean_dec(x_714); -lean_dec(x_2); -lean_dec(x_1); -x_720 = lean_box(1); -x_721 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_721, 0, x_720); -lean_ctor_set(x_721, 1, x_3); -return x_721; -} -else -{ -lean_object* x_722; lean_object* x_723; uint8_t x_724; -x_722 = l_Lean_Syntax_getArgs(x_714); -lean_dec(x_714); -x_723 = lean_array_get_size(x_722); -lean_dec(x_722); -x_724 = lean_nat_dec_eq(x_723, x_713); -lean_dec(x_723); -if (x_724 == 0) -{ -lean_object* x_725; lean_object* x_726; -lean_dec(x_2); -lean_dec(x_1); -x_725 = lean_box(1); -x_726 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_726, 0, x_725); -lean_ctor_set(x_726, 1, x_3); -return x_726; -} -else -{ -lean_object* x_727; lean_object* x_728; uint8_t x_729; -x_727 = lean_unsigned_to_nat(2u); -x_728 = l_Lean_Syntax_getArg(x_1, x_727); -lean_inc(x_728); -x_729 = l_Lean_Syntax_isOfKind(x_728, x_16); -if (x_729 == 0) -{ -lean_object* x_730; lean_object* x_731; -lean_dec(x_728); -lean_dec(x_2); -lean_dec(x_1); -x_730 = lean_box(1); -x_731 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_731, 0, x_730); -lean_ctor_set(x_731, 1, x_3); -return x_731; -} -else -{ -lean_object* x_732; lean_object* x_733; uint8_t x_734; -x_732 = l_Lean_Syntax_getArgs(x_728); -x_733 = lean_array_get_size(x_732); -lean_dec(x_732); -x_734 = lean_nat_dec_eq(x_733, x_713); -lean_dec(x_733); -if (x_734 == 0) -{ -lean_object* x_735; lean_object* x_736; -lean_dec(x_728); -lean_dec(x_2); -lean_dec(x_1); -x_735 = lean_box(1); -x_736 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_736, 0, x_735); -lean_ctor_set(x_736, 1, x_3); -return x_736; -} -else -{ -lean_object* x_737; lean_object* x_738; uint8_t x_739; -x_737 = l_Lean_Syntax_getArg(x_728, x_14); -lean_dec(x_728); -x_738 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_737); -x_739 = l_Lean_Syntax_isOfKind(x_737, x_738); -if (x_739 == 0) -{ -lean_object* x_740; lean_object* x_741; -lean_dec(x_737); -lean_dec(x_2); -lean_dec(x_1); -x_740 = lean_box(1); -x_741 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_741, 0, x_740); -lean_ctor_set(x_741, 1, x_3); -return x_741; -} -else -{ -lean_object* x_742; lean_object* x_743; uint8_t x_744; -x_742 = l_Lean_Syntax_getArgs(x_737); -x_743 = lean_array_get_size(x_742); -lean_dec(x_742); -x_744 = lean_nat_dec_eq(x_743, x_727); -lean_dec(x_743); -if (x_744 == 0) -{ -lean_object* x_745; lean_object* x_746; -lean_dec(x_737); -lean_dec(x_2); -lean_dec(x_1); -x_745 = lean_box(1); -x_746 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_746, 0, x_745); -lean_ctor_set(x_746, 1, x_3); -return x_746; -} -else -{ -lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; uint8_t x_807; -x_747 = l_Lean_Syntax_getArg(x_737, x_713); -lean_dec(x_737); -x_748 = lean_unsigned_to_nat(3u); -x_749 = l_Lean_Syntax_getArg(x_1, x_748); -lean_inc(x_749); -x_807 = l_Lean_Syntax_isOfKind(x_749, x_16); -if (x_807 == 0) -{ -lean_object* x_808; -x_808 = lean_box(0); -x_750 = x_808; -goto block_806; -} -else -{ -lean_object* x_809; lean_object* x_810; uint8_t x_811; -x_809 = l_Lean_Syntax_getArgs(x_749); -x_810 = lean_array_get_size(x_809); -lean_dec(x_809); -x_811 = lean_nat_dec_eq(x_810, x_14); -lean_dec(x_810); -if (x_811 == 0) -{ -lean_object* x_812; -x_812 = lean_box(0); -x_750 = x_812; -goto block_806; -} -else -{ -lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; -lean_dec(x_749); -x_813 = lean_unsigned_to_nat(4u); -x_814 = l_Lean_Syntax_getArg(x_1, x_813); -x_815 = lean_unsigned_to_nat(6u); -x_816 = l_Lean_Syntax_getArg(x_1, x_815); -lean_dec(x_1); -x_817 = lean_ctor_get(x_2, 2); -lean_inc(x_817); -x_818 = lean_ctor_get(x_2, 1); -lean_inc(x_818); -lean_dec(x_2); -x_819 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_820 = lean_array_push(x_819, x_747); -x_821 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_821, 0, x_738); -lean_ctor_set(x_821, 1, x_820); -x_822 = l_Array_empty___closed__1; -x_823 = lean_array_push(x_822, x_821); -x_824 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_824, 0, x_16); -lean_ctor_set(x_824, 1, x_823); -x_825 = l_Lean_Elab_Command_expandMixfix___closed__33; -x_826 = lean_array_push(x_825, x_824); -x_827 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_828 = lean_array_push(x_826, x_827); -x_829 = l_Lean_Elab_Command_expandMixfix___closed__18; -x_830 = l_Lean_addMacroScope(x_818, x_829, x_817); -x_831 = lean_box(0); -x_832 = l_Lean_instInhabitedSourceInfo___closed__1; -x_833 = l_Lean_Elab_Command_expandMixfix___closed__17; -x_834 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_834, 0, x_832); -lean_ctor_set(x_834, 1, x_833); -lean_ctor_set(x_834, 2, x_830); -lean_ctor_set(x_834, 3, x_831); -x_835 = lean_array_push(x_822, x_834); -lean_inc(x_835); -x_836 = lean_array_push(x_835, x_827); -x_837 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_838 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_838, 0, x_837); -lean_ctor_set(x_838, 1, x_836); -x_839 = lean_array_push(x_822, x_838); -x_840 = lean_array_push(x_839, x_814); -x_841 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_841, 0, x_16); -lean_ctor_set(x_841, 1, x_840); -x_842 = lean_array_push(x_828, x_841); -x_843 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_844 = lean_array_push(x_842, x_843); -x_845 = lean_array_push(x_822, x_816); -x_846 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_846, 0, x_16); -lean_ctor_set(x_846, 1, x_835); -x_847 = lean_array_push(x_845, x_846); -x_848 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_849 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_849, 0, x_848); -lean_ctor_set(x_849, 1, x_847); -x_850 = lean_array_push(x_844, x_849); -x_851 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_852 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_852, 0, x_851); -lean_ctor_set(x_852, 1, x_850); -x_853 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_853, 0, x_852); -lean_ctor_set(x_853, 1, x_3); -return x_853; -} -} -block_806: -{ -uint8_t x_751; -lean_dec(x_750); -lean_inc(x_749); -x_751 = l_Lean_Syntax_isOfKind(x_749, x_16); -if (x_751 == 0) -{ -lean_object* x_752; lean_object* x_753; -lean_dec(x_749); -lean_dec(x_747); -lean_dec(x_2); -lean_dec(x_1); -x_752 = lean_box(1); -x_753 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_753, 0, x_752); -lean_ctor_set(x_753, 1, x_3); -return x_753; -} -else -{ -lean_object* x_754; lean_object* x_755; uint8_t x_756; -x_754 = l_Lean_Syntax_getArgs(x_749); -x_755 = lean_array_get_size(x_754); -lean_dec(x_754); -x_756 = lean_nat_dec_eq(x_755, x_748); -lean_dec(x_755); -if (x_756 == 0) -{ -lean_object* x_757; lean_object* x_758; -lean_dec(x_749); -lean_dec(x_747); -lean_dec(x_2); -lean_dec(x_1); -x_757 = lean_box(1); -x_758 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_758, 0, x_757); -lean_ctor_set(x_758, 1, x_3); -return x_758; -} -else -{ -lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; -x_759 = l_Lean_Syntax_getArg(x_749, x_713); -lean_dec(x_749); -x_760 = lean_unsigned_to_nat(4u); -x_761 = l_Lean_Syntax_getArg(x_1, x_760); -x_762 = lean_unsigned_to_nat(6u); -x_763 = l_Lean_Syntax_getArg(x_1, x_762); -lean_dec(x_1); -x_764 = lean_ctor_get(x_2, 2); -lean_inc(x_764); -x_765 = lean_ctor_get(x_2, 1); -lean_inc(x_765); -lean_dec(x_2); -x_766 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_767 = lean_array_push(x_766, x_747); -x_768 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_768, 0, x_738); -lean_ctor_set(x_768, 1, x_767); -x_769 = l_Array_empty___closed__1; -x_770 = lean_array_push(x_769, x_768); -x_771 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_771, 0, x_16); -lean_ctor_set(x_771, 1, x_770); -x_772 = l_Lean_Elab_Command_expandMixfix___closed__33; -x_773 = lean_array_push(x_772, x_771); -x_774 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_775 = lean_array_push(x_774, x_759); -x_776 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_777 = lean_array_push(x_775, x_776); -x_778 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_778, 0, x_16); -lean_ctor_set(x_778, 1, x_777); -x_779 = lean_array_push(x_773, x_778); -x_780 = l_Lean_Elab_Command_expandMixfix___closed__18; -x_781 = l_Lean_addMacroScope(x_765, x_780, x_764); -x_782 = lean_box(0); -x_783 = l_Lean_instInhabitedSourceInfo___closed__1; -x_784 = l_Lean_Elab_Command_expandMixfix___closed__17; -x_785 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_785, 0, x_783); -lean_ctor_set(x_785, 1, x_784); -lean_ctor_set(x_785, 2, x_781); -lean_ctor_set(x_785, 3, x_782); -x_786 = lean_array_push(x_769, x_785); -x_787 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_786); -x_788 = lean_array_push(x_786, x_787); -x_789 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_790 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_790, 0, x_789); -lean_ctor_set(x_790, 1, x_788); -x_791 = lean_array_push(x_769, x_790); -x_792 = lean_array_push(x_791, x_761); -x_793 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_793, 0, x_16); -lean_ctor_set(x_793, 1, x_792); -x_794 = lean_array_push(x_779, x_793); -x_795 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_796 = lean_array_push(x_794, x_795); -x_797 = lean_array_push(x_769, x_763); -x_798 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_798, 0, x_16); -lean_ctor_set(x_798, 1, x_786); -x_799 = lean_array_push(x_797, x_798); -x_800 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_801 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_801, 0, x_800); -lean_ctor_set(x_801, 1, x_799); -x_802 = lean_array_push(x_796, x_801); -x_803 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_804 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_804, 0, x_803); -lean_ctor_set(x_804, 1, x_802); -x_805 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_805, 0, x_804); -lean_ctor_set(x_805, 1, x_3); -return x_805; -} -} -} -} -} -} -} -} -} -} -else -{ -lean_object* x_854; lean_object* x_855; uint8_t x_856; -x_854 = l_Lean_Syntax_getArgs(x_714); -lean_dec(x_714); -x_855 = lean_array_get_size(x_854); -lean_dec(x_854); -x_856 = lean_nat_dec_eq(x_855, x_713); -lean_dec(x_855); -if (x_856 == 0) -{ -lean_object* x_857; lean_object* x_858; -lean_dec(x_2); -lean_dec(x_1); -x_857 = lean_box(1); -x_858 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_858, 0, x_857); -lean_ctor_set(x_858, 1, x_3); -return x_858; -} -else -{ -lean_object* x_859; lean_object* x_860; uint8_t x_861; -x_859 = lean_unsigned_to_nat(2u); -x_860 = l_Lean_Syntax_getArg(x_1, x_859); -lean_inc(x_860); -x_861 = l_Lean_Syntax_isOfKind(x_860, x_16); -if (x_861 == 0) -{ -lean_object* x_862; lean_object* x_863; -lean_dec(x_860); -lean_dec(x_2); -lean_dec(x_1); -x_862 = lean_box(1); -x_863 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_863, 0, x_862); -lean_ctor_set(x_863, 1, x_3); -return x_863; -} -else -{ -lean_object* x_864; lean_object* x_865; uint8_t x_866; -x_864 = l_Lean_Syntax_getArgs(x_860); -x_865 = lean_array_get_size(x_864); -lean_dec(x_864); -x_866 = lean_nat_dec_eq(x_865, x_713); -lean_dec(x_865); -if (x_866 == 0) -{ -lean_object* x_867; lean_object* x_868; -lean_dec(x_860); -lean_dec(x_2); -lean_dec(x_1); -x_867 = lean_box(1); -x_868 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_868, 0, x_867); -lean_ctor_set(x_868, 1, x_3); -return x_868; -} -else -{ -lean_object* x_869; lean_object* x_870; uint8_t x_871; -x_869 = l_Lean_Syntax_getArg(x_860, x_14); -lean_dec(x_860); -x_870 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_869); -x_871 = l_Lean_Syntax_isOfKind(x_869, x_870); -if (x_871 == 0) -{ -lean_object* x_872; lean_object* x_873; -lean_dec(x_869); -lean_dec(x_2); -lean_dec(x_1); -x_872 = lean_box(1); -x_873 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_873, 0, x_872); -lean_ctor_set(x_873, 1, x_3); -return x_873; -} -else -{ -lean_object* x_874; lean_object* x_875; uint8_t x_876; -x_874 = l_Lean_Syntax_getArgs(x_869); -x_875 = lean_array_get_size(x_874); -lean_dec(x_874); -x_876 = lean_nat_dec_eq(x_875, x_859); -lean_dec(x_875); -if (x_876 == 0) -{ -lean_object* x_877; lean_object* x_878; -lean_dec(x_869); -lean_dec(x_2); -lean_dec(x_1); -x_877 = lean_box(1); -x_878 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_878, 0, x_877); -lean_ctor_set(x_878, 1, x_3); -return x_878; -} -else -{ -lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; uint8_t x_938; -x_879 = l_Lean_Syntax_getArg(x_869, x_713); -lean_dec(x_869); -x_880 = lean_unsigned_to_nat(3u); -x_881 = l_Lean_Syntax_getArg(x_1, x_880); -lean_inc(x_881); -x_938 = l_Lean_Syntax_isOfKind(x_881, x_16); -if (x_938 == 0) -{ -lean_object* x_939; -x_939 = lean_box(0); -x_882 = x_939; -goto block_937; -} -else -{ -lean_object* x_940; lean_object* x_941; uint8_t x_942; -x_940 = l_Lean_Syntax_getArgs(x_881); -x_941 = lean_array_get_size(x_940); -lean_dec(x_940); -x_942 = lean_nat_dec_eq(x_941, x_14); -lean_dec(x_941); -if (x_942 == 0) -{ -lean_object* x_943; -x_943 = lean_box(0); -x_882 = x_943; -goto block_937; -} -else -{ -lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; -lean_dec(x_881); -x_944 = lean_unsigned_to_nat(4u); -x_945 = l_Lean_Syntax_getArg(x_1, x_944); -x_946 = lean_unsigned_to_nat(6u); -x_947 = l_Lean_Syntax_getArg(x_1, x_946); -lean_dec(x_1); -x_948 = lean_ctor_get(x_2, 2); -lean_inc(x_948); -x_949 = lean_ctor_get(x_2, 1); -lean_inc(x_949); -lean_dec(x_2); -x_950 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_951 = lean_array_push(x_950, x_879); -x_952 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_952, 0, x_870); -lean_ctor_set(x_952, 1, x_951); -x_953 = l_Array_empty___closed__1; -x_954 = lean_array_push(x_953, x_952); -x_955 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_955, 0, x_16); -lean_ctor_set(x_955, 1, x_954); -x_956 = l_Lean_Elab_Command_expandMixfix___closed__33; -lean_inc(x_955); -x_957 = lean_array_push(x_956, x_955); -x_958 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_959 = lean_array_push(x_957, x_958); -x_960 = lean_array_push(x_953, x_945); -x_961 = l_Lean_Elab_Command_expandMixfix___closed__18; -x_962 = l_Lean_addMacroScope(x_949, x_961, x_948); -x_963 = lean_box(0); -x_964 = l_Lean_instInhabitedSourceInfo___closed__1; -x_965 = l_Lean_Elab_Command_expandMixfix___closed__17; -x_966 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_966, 0, x_964); -lean_ctor_set(x_966, 1, x_965); -lean_ctor_set(x_966, 2, x_962); -lean_ctor_set(x_966, 3, x_963); -x_967 = lean_array_push(x_953, x_966); -lean_inc(x_967); -x_968 = lean_array_push(x_967, x_955); -x_969 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_970 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_970, 0, x_969); -lean_ctor_set(x_970, 1, x_968); -x_971 = lean_array_push(x_960, x_970); -x_972 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_972, 0, x_16); -lean_ctor_set(x_972, 1, x_971); -x_973 = lean_array_push(x_959, x_972); -x_974 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_975 = lean_array_push(x_973, x_974); -x_976 = lean_array_push(x_953, x_947); -x_977 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_977, 0, x_16); -lean_ctor_set(x_977, 1, x_967); -x_978 = lean_array_push(x_976, x_977); -x_979 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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 = lean_array_push(x_975, x_980); -x_982 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_983 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_983, 0, x_982); -lean_ctor_set(x_983, 1, x_981); -x_984 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_984, 0, x_983); -lean_ctor_set(x_984, 1, x_3); -return x_984; -} -} -block_937: -{ -uint8_t x_883; -lean_dec(x_882); -lean_inc(x_881); -x_883 = l_Lean_Syntax_isOfKind(x_881, x_16); -if (x_883 == 0) -{ -lean_object* x_884; lean_object* x_885; -lean_dec(x_881); -lean_dec(x_879); -lean_dec(x_2); -lean_dec(x_1); -x_884 = lean_box(1); -x_885 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_885, 0, x_884); -lean_ctor_set(x_885, 1, x_3); -return x_885; -} -else -{ -lean_object* x_886; lean_object* x_887; uint8_t x_888; -x_886 = l_Lean_Syntax_getArgs(x_881); -x_887 = lean_array_get_size(x_886); -lean_dec(x_886); -x_888 = lean_nat_dec_eq(x_887, x_880); -lean_dec(x_887); -if (x_888 == 0) -{ -lean_object* x_889; lean_object* x_890; -lean_dec(x_881); -lean_dec(x_879); -lean_dec(x_2); -lean_dec(x_1); -x_889 = lean_box(1); -x_890 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_890, 0, x_889); -lean_ctor_set(x_890, 1, x_3); -return x_890; -} -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; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; -x_891 = l_Lean_Syntax_getArg(x_881, x_713); -lean_dec(x_881); -x_892 = lean_unsigned_to_nat(4u); -x_893 = l_Lean_Syntax_getArg(x_1, x_892); -x_894 = lean_unsigned_to_nat(6u); -x_895 = l_Lean_Syntax_getArg(x_1, x_894); -lean_dec(x_1); -x_896 = lean_ctor_get(x_2, 2); -lean_inc(x_896); -x_897 = lean_ctor_get(x_2, 1); -lean_inc(x_897); -lean_dec(x_2); -x_898 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_899 = lean_array_push(x_898, x_879); -x_900 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_900, 0, x_870); -lean_ctor_set(x_900, 1, x_899); -x_901 = l_Array_empty___closed__1; -x_902 = lean_array_push(x_901, x_900); -x_903 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_903, 0, x_16); -lean_ctor_set(x_903, 1, x_902); -x_904 = l_Lean_Elab_Command_expandMixfix___closed__33; -lean_inc(x_903); -x_905 = lean_array_push(x_904, x_903); -x_906 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_907 = lean_array_push(x_906, x_891); -x_908 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_909 = lean_array_push(x_907, x_908); -x_910 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_910, 0, x_16); -lean_ctor_set(x_910, 1, x_909); -x_911 = lean_array_push(x_905, x_910); -x_912 = lean_array_push(x_901, x_893); -x_913 = l_Lean_Elab_Command_expandMixfix___closed__18; -x_914 = l_Lean_addMacroScope(x_897, x_913, x_896); -x_915 = lean_box(0); -x_916 = l_Lean_instInhabitedSourceInfo___closed__1; -x_917 = l_Lean_Elab_Command_expandMixfix___closed__17; -x_918 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_918, 0, x_916); -lean_ctor_set(x_918, 1, x_917); -lean_ctor_set(x_918, 2, x_914); -lean_ctor_set(x_918, 3, x_915); -x_919 = lean_array_push(x_901, x_918); -lean_inc(x_919); -x_920 = lean_array_push(x_919, x_903); -x_921 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_922 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_922, 0, x_921); -lean_ctor_set(x_922, 1, x_920); -x_923 = lean_array_push(x_912, x_922); -x_924 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_924, 0, x_16); -lean_ctor_set(x_924, 1, x_923); -x_925 = lean_array_push(x_911, x_924); -x_926 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_927 = lean_array_push(x_925, x_926); -x_928 = lean_array_push(x_901, x_895); -x_929 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_929, 0, x_16); -lean_ctor_set(x_929, 1, x_919); -x_930 = lean_array_push(x_928, x_929); -x_931 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_932 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_932, 0, x_931); -lean_ctor_set(x_932, 1, x_930); -x_933 = lean_array_push(x_927, x_932); -x_934 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_935 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_935, 0, x_934); -lean_ctor_set(x_935, 1, x_933); -x_936 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_936, 0, x_935); -lean_ctor_set(x_936, 1, x_3); -return x_936; -} -} -} -} -} -} -} -} -} -} -block_1308: -{ -lean_object* x_987; uint8_t x_988; -lean_dec(x_986); -x_987 = l_Lean_Elab_Command_expandMixfix___closed__20; -lean_inc(x_714); -x_988 = l_Lean_Syntax_isOfKind(x_714, x_987); -if (x_988 == 0) -{ -lean_object* x_989; uint8_t x_990; -x_989 = l_Lean_Elab_Command_expandMixfix___closed__22; -lean_inc(x_714); -x_990 = l_Lean_Syntax_isOfKind(x_714, x_989); -if (x_990 == 0) -{ -lean_object* x_991; -x_991 = lean_box(0); -x_715 = x_991; -goto block_985; -} -else -{ -lean_object* x_992; lean_object* x_993; uint8_t x_994; -x_992 = l_Lean_Syntax_getArgs(x_714); -x_993 = lean_array_get_size(x_992); -lean_dec(x_992); -x_994 = lean_nat_dec_eq(x_993, x_713); -lean_dec(x_993); -if (x_994 == 0) -{ -lean_object* x_995; -x_995 = lean_box(0); -x_715 = x_995; -goto block_985; -} -else -{ -lean_object* x_996; lean_object* x_997; uint8_t x_998; -lean_dec(x_714); -x_996 = lean_unsigned_to_nat(2u); -x_997 = l_Lean_Syntax_getArg(x_1, x_996); -lean_inc(x_997); -x_998 = l_Lean_Syntax_isOfKind(x_997, x_16); -if (x_998 == 0) -{ -lean_object* x_999; lean_object* x_1000; -lean_dec(x_997); -lean_dec(x_2); -lean_dec(x_1); -x_999 = lean_box(1); -x_1000 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1000, 0, x_999); -lean_ctor_set(x_1000, 1, x_3); -return x_1000; -} -else -{ -lean_object* x_1001; lean_object* x_1002; uint8_t x_1003; -x_1001 = l_Lean_Syntax_getArgs(x_997); -x_1002 = lean_array_get_size(x_1001); -lean_dec(x_1001); -x_1003 = lean_nat_dec_eq(x_1002, x_713); -lean_dec(x_1002); -if (x_1003 == 0) -{ -lean_object* x_1004; lean_object* x_1005; -lean_dec(x_997); -lean_dec(x_2); -lean_dec(x_1); -x_1004 = lean_box(1); -x_1005 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1005, 0, x_1004); -lean_ctor_set(x_1005, 1, x_3); -return x_1005; -} -else -{ -lean_object* x_1006; lean_object* x_1007; uint8_t x_1008; -x_1006 = l_Lean_Syntax_getArg(x_997, x_14); -lean_dec(x_997); -x_1007 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_1006); -x_1008 = l_Lean_Syntax_isOfKind(x_1006, x_1007); -if (x_1008 == 0) -{ -lean_object* x_1009; lean_object* x_1010; -lean_dec(x_1006); -lean_dec(x_2); -lean_dec(x_1); -x_1009 = lean_box(1); -x_1010 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1010, 0, x_1009); -lean_ctor_set(x_1010, 1, x_3); -return x_1010; -} -else -{ -lean_object* x_1011; lean_object* x_1012; uint8_t x_1013; -x_1011 = l_Lean_Syntax_getArgs(x_1006); -x_1012 = lean_array_get_size(x_1011); -lean_dec(x_1011); -x_1013 = lean_nat_dec_eq(x_1012, x_996); -lean_dec(x_1012); -if (x_1013 == 0) -{ -lean_object* x_1014; lean_object* x_1015; -lean_dec(x_1006); -lean_dec(x_2); -lean_dec(x_1); -x_1014 = lean_box(1); -x_1015 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1015, 0, x_1014); -lean_ctor_set(x_1015, 1, x_3); -return x_1015; -} -else -{ -lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; uint8_t x_1094; -x_1016 = l_Lean_Syntax_getArg(x_1006, x_713); -lean_dec(x_1006); -x_1017 = lean_unsigned_to_nat(3u); -x_1018 = l_Lean_Syntax_getArg(x_1, x_1017); -lean_inc(x_1018); -x_1094 = l_Lean_Syntax_isOfKind(x_1018, x_16); -if (x_1094 == 0) -{ -lean_object* x_1095; -x_1095 = lean_box(0); -x_1019 = x_1095; -goto block_1093; -} -else -{ -lean_object* x_1096; lean_object* x_1097; uint8_t x_1098; -x_1096 = l_Lean_Syntax_getArgs(x_1018); -x_1097 = lean_array_get_size(x_1096); -lean_dec(x_1096); -x_1098 = lean_nat_dec_eq(x_1097, x_14); -lean_dec(x_1097); -if (x_1098 == 0) -{ -lean_object* x_1099; -x_1099 = lean_box(0); -x_1019 = x_1099; -goto block_1093; -} -else -{ -lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; -lean_dec(x_1018); -x_1100 = lean_unsigned_to_nat(4u); -x_1101 = l_Lean_Syntax_getArg(x_1, x_1100); -x_1102 = lean_unsigned_to_nat(6u); -x_1103 = l_Lean_Syntax_getArg(x_1, x_1102); -lean_dec(x_1); -x_1104 = l_Lean_Syntax_toNat(x_1016); -x_1105 = lean_nat_add(x_1104, x_713); -lean_dec(x_1104); -x_1106 = l_Nat_repr(x_1105); -x_1107 = l_Lean_numLitKind; -x_1108 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1109 = l_Lean_Syntax_mkLit(x_1107, x_1106, x_1108); -x_1110 = lean_ctor_get(x_2, 2); -lean_inc(x_1110); -x_1111 = lean_ctor_get(x_2, 1); -lean_inc(x_1111); -lean_dec(x_2); -x_1112 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1113 = lean_array_push(x_1112, x_1016); -x_1114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1114, 0, x_1007); -lean_ctor_set(x_1114, 1, x_1113); -x_1115 = l_Array_empty___closed__1; -x_1116 = lean_array_push(x_1115, x_1114); -x_1117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1117, 0, x_16); -lean_ctor_set(x_1117, 1, x_1116); -x_1118 = l_Lean_Elab_Command_expandMixfix___closed__33; -x_1119 = lean_array_push(x_1118, x_1117); -x_1120 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_1121 = lean_array_push(x_1119, x_1120); -x_1122 = l_Lean_Elab_Command_expandMixfix___closed__26; -lean_inc(x_1110); -lean_inc(x_1111); -x_1123 = l_Lean_addMacroScope(x_1111, x_1122, x_1110); -x_1124 = lean_box(0); -x_1125 = l_Lean_Elab_Command_expandMixfix___closed__25; -x_1126 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1126, 0, x_1108); -lean_ctor_set(x_1126, 1, x_1125); -lean_ctor_set(x_1126, 2, x_1123); -lean_ctor_set(x_1126, 3, x_1124); -x_1127 = lean_array_push(x_1115, x_1126); -lean_inc(x_1127); -x_1128 = lean_array_push(x_1127, x_1120); -x_1129 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_1130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1130, 0, x_1129); -lean_ctor_set(x_1130, 1, x_1128); -x_1131 = lean_array_push(x_1115, x_1130); -x_1132 = lean_array_push(x_1131, x_1101); -x_1133 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_1134 = l_Lean_addMacroScope(x_1111, x_1133, x_1110); -x_1135 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; -x_1136 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1136, 0, x_1108); -lean_ctor_set(x_1136, 1, x_1135); -lean_ctor_set(x_1136, 2, x_1134); -lean_ctor_set(x_1136, 3, x_1124); -lean_inc(x_1136); -x_1137 = lean_array_push(x_1115, x_1136); -x_1138 = lean_array_push(x_1112, x_1109); -x_1139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1139, 0, x_1007); -lean_ctor_set(x_1139, 1, x_1138); -x_1140 = lean_array_push(x_1115, x_1139); -x_1141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1141, 0, x_16); -lean_ctor_set(x_1141, 1, x_1140); -x_1142 = lean_array_push(x_1137, x_1141); -x_1143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1143, 0, x_1129); -lean_ctor_set(x_1143, 1, x_1142); -x_1144 = lean_array_push(x_1132, x_1143); -x_1145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1145, 0, x_16); -lean_ctor_set(x_1145, 1, x_1144); -x_1146 = lean_array_push(x_1121, x_1145); -x_1147 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1148 = lean_array_push(x_1146, x_1147); -x_1149 = lean_array_push(x_1115, x_1103); -x_1150 = lean_array_push(x_1127, x_1136); -x_1151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1151, 0, x_16); -lean_ctor_set(x_1151, 1, x_1150); -x_1152 = lean_array_push(x_1149, x_1151); -x_1153 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1154 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1154, 0, x_1153); -lean_ctor_set(x_1154, 1, x_1152); -x_1155 = lean_array_push(x_1148, x_1154); -x_1156 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_1157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1157, 0, x_1156); -lean_ctor_set(x_1157, 1, x_1155); -x_1158 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1158, 0, x_1157); -lean_ctor_set(x_1158, 1, x_3); -return x_1158; -} -} -block_1093: -{ -uint8_t x_1020; -lean_dec(x_1019); -lean_inc(x_1018); -x_1020 = l_Lean_Syntax_isOfKind(x_1018, x_16); -if (x_1020 == 0) -{ -lean_object* x_1021; lean_object* x_1022; -lean_dec(x_1018); -lean_dec(x_1016); -lean_dec(x_2); -lean_dec(x_1); -x_1021 = lean_box(1); -x_1022 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1022, 0, x_1021); -lean_ctor_set(x_1022, 1, x_3); -return x_1022; -} -else -{ -lean_object* x_1023; lean_object* x_1024; uint8_t x_1025; -x_1023 = l_Lean_Syntax_getArgs(x_1018); -x_1024 = lean_array_get_size(x_1023); -lean_dec(x_1023); -x_1025 = lean_nat_dec_eq(x_1024, x_1017); -lean_dec(x_1024); -if (x_1025 == 0) -{ -lean_object* x_1026; lean_object* x_1027; -lean_dec(x_1018); -lean_dec(x_1016); -lean_dec(x_2); -lean_dec(x_1); -x_1026 = lean_box(1); -x_1027 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1027, 0, x_1026); -lean_ctor_set(x_1027, 1, x_3); -return x_1027; -} -else -{ -lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; -x_1028 = l_Lean_Syntax_getArg(x_1018, x_713); -lean_dec(x_1018); -x_1029 = lean_unsigned_to_nat(4u); -x_1030 = l_Lean_Syntax_getArg(x_1, x_1029); -x_1031 = lean_unsigned_to_nat(6u); -x_1032 = l_Lean_Syntax_getArg(x_1, x_1031); -lean_dec(x_1); -x_1033 = l_Lean_Syntax_toNat(x_1016); -x_1034 = lean_nat_add(x_1033, x_713); -lean_dec(x_1033); -x_1035 = l_Nat_repr(x_1034); -x_1036 = l_Lean_numLitKind; -x_1037 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1038 = l_Lean_Syntax_mkLit(x_1036, x_1035, x_1037); -x_1039 = lean_ctor_get(x_2, 2); -lean_inc(x_1039); -x_1040 = lean_ctor_get(x_2, 1); -lean_inc(x_1040); -lean_dec(x_2); -x_1041 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1042 = lean_array_push(x_1041, x_1016); -x_1043 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1043, 0, x_1007); -lean_ctor_set(x_1043, 1, x_1042); -x_1044 = l_Array_empty___closed__1; -x_1045 = lean_array_push(x_1044, x_1043); -x_1046 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1046, 0, x_16); -lean_ctor_set(x_1046, 1, x_1045); -x_1047 = l_Lean_Elab_Command_expandMixfix___closed__33; -x_1048 = lean_array_push(x_1047, x_1046); -x_1049 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_1050 = lean_array_push(x_1049, x_1028); -x_1051 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1052 = lean_array_push(x_1050, x_1051); -x_1053 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1053, 0, x_16); -lean_ctor_set(x_1053, 1, x_1052); -x_1054 = lean_array_push(x_1048, x_1053); -x_1055 = l_Lean_Elab_Command_expandMixfix___closed__26; -lean_inc(x_1039); -lean_inc(x_1040); -x_1056 = l_Lean_addMacroScope(x_1040, x_1055, x_1039); -x_1057 = lean_box(0); -x_1058 = l_Lean_Elab_Command_expandMixfix___closed__25; -x_1059 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1059, 0, x_1037); -lean_ctor_set(x_1059, 1, x_1058); -lean_ctor_set(x_1059, 2, x_1056); -lean_ctor_set(x_1059, 3, x_1057); -x_1060 = lean_array_push(x_1044, x_1059); -x_1061 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_1060); -x_1062 = lean_array_push(x_1060, x_1061); -x_1063 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_1064 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1064, 0, x_1063); -lean_ctor_set(x_1064, 1, x_1062); -x_1065 = lean_array_push(x_1044, x_1064); -x_1066 = lean_array_push(x_1065, x_1030); -x_1067 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_1068 = l_Lean_addMacroScope(x_1040, x_1067, x_1039); -x_1069 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; -x_1070 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1070, 0, x_1037); -lean_ctor_set(x_1070, 1, x_1069); -lean_ctor_set(x_1070, 2, x_1068); -lean_ctor_set(x_1070, 3, x_1057); -lean_inc(x_1070); -x_1071 = lean_array_push(x_1044, x_1070); -x_1072 = lean_array_push(x_1041, x_1038); -x_1073 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1073, 0, x_1007); -lean_ctor_set(x_1073, 1, x_1072); -x_1074 = lean_array_push(x_1044, x_1073); -x_1075 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1075, 0, x_16); -lean_ctor_set(x_1075, 1, x_1074); -x_1076 = lean_array_push(x_1071, x_1075); -x_1077 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1077, 0, x_1063); -lean_ctor_set(x_1077, 1, x_1076); -x_1078 = lean_array_push(x_1066, x_1077); -x_1079 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1079, 0, x_16); -lean_ctor_set(x_1079, 1, x_1078); -x_1080 = lean_array_push(x_1054, x_1079); -x_1081 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1082 = lean_array_push(x_1080, x_1081); -x_1083 = lean_array_push(x_1044, x_1032); -x_1084 = lean_array_push(x_1060, x_1070); -x_1085 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1085, 0, x_16); -lean_ctor_set(x_1085, 1, x_1084); -x_1086 = lean_array_push(x_1083, x_1085); -x_1087 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1088 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1088, 0, x_1087); -lean_ctor_set(x_1088, 1, x_1086); -x_1089 = lean_array_push(x_1082, x_1088); -x_1090 = l_Lean_Elab_Command_expandMixfix___closed__10; -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_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1092, 0, x_1091); -lean_ctor_set(x_1092, 1, x_3); -return x_1092; -} -} -} -} -} -} -} -} -} -} -else -{ -lean_object* x_1159; lean_object* x_1160; uint8_t x_1161; -x_1159 = l_Lean_Syntax_getArgs(x_714); -x_1160 = lean_array_get_size(x_1159); -lean_dec(x_1159); -x_1161 = lean_nat_dec_eq(x_1160, x_713); -lean_dec(x_1160); -if (x_1161 == 0) -{ -lean_object* x_1162; -x_1162 = lean_box(0); -x_715 = x_1162; -goto block_985; -} -else -{ -lean_object* x_1163; lean_object* x_1164; uint8_t x_1165; -lean_dec(x_714); -x_1163 = lean_unsigned_to_nat(2u); -x_1164 = l_Lean_Syntax_getArg(x_1, x_1163); -lean_inc(x_1164); -x_1165 = l_Lean_Syntax_isOfKind(x_1164, x_16); -if (x_1165 == 0) -{ -lean_object* x_1166; lean_object* x_1167; -lean_dec(x_1164); -lean_dec(x_2); -lean_dec(x_1); -x_1166 = lean_box(1); -x_1167 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1167, 0, x_1166); -lean_ctor_set(x_1167, 1, x_3); -return x_1167; -} -else -{ -lean_object* x_1168; lean_object* x_1169; uint8_t x_1170; -x_1168 = l_Lean_Syntax_getArgs(x_1164); -x_1169 = lean_array_get_size(x_1168); -lean_dec(x_1168); -x_1170 = lean_nat_dec_eq(x_1169, x_713); -lean_dec(x_1169); -if (x_1170 == 0) -{ -lean_object* x_1171; lean_object* x_1172; -lean_dec(x_1164); -lean_dec(x_2); -lean_dec(x_1); -x_1171 = lean_box(1); -x_1172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1172, 0, x_1171); -lean_ctor_set(x_1172, 1, x_3); -return x_1172; -} -else -{ -lean_object* x_1173; lean_object* x_1174; uint8_t x_1175; -x_1173 = l_Lean_Syntax_getArg(x_1164, x_14); -lean_dec(x_1164); -x_1174 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_1173); -x_1175 = l_Lean_Syntax_isOfKind(x_1173, x_1174); -if (x_1175 == 0) -{ -lean_object* x_1176; lean_object* x_1177; -lean_dec(x_1173); -lean_dec(x_2); -lean_dec(x_1); -x_1176 = lean_box(1); -x_1177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1177, 0, x_1176); -lean_ctor_set(x_1177, 1, x_3); -return x_1177; -} -else -{ -lean_object* x_1178; lean_object* x_1179; uint8_t x_1180; -x_1178 = l_Lean_Syntax_getArgs(x_1173); -x_1179 = lean_array_get_size(x_1178); -lean_dec(x_1178); -x_1180 = lean_nat_dec_eq(x_1179, x_1163); -lean_dec(x_1179); -if (x_1180 == 0) -{ -lean_object* x_1181; lean_object* x_1182; -lean_dec(x_1173); -lean_dec(x_2); -lean_dec(x_1); -x_1181 = lean_box(1); -x_1182 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1182, 0, x_1181); -lean_ctor_set(x_1182, 1, x_3); -return x_1182; -} -else -{ -lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; uint8_t x_1252; -x_1183 = l_Lean_Syntax_getArg(x_1173, x_713); -lean_dec(x_1173); -x_1184 = lean_unsigned_to_nat(3u); -x_1185 = l_Lean_Syntax_getArg(x_1, x_1184); -lean_inc(x_1185); -x_1252 = l_Lean_Syntax_isOfKind(x_1185, x_16); -if (x_1252 == 0) -{ -lean_object* x_1253; -x_1253 = lean_box(0); -x_1186 = x_1253; -goto block_1251; -} -else -{ -lean_object* x_1254; lean_object* x_1255; uint8_t x_1256; -x_1254 = l_Lean_Syntax_getArgs(x_1185); -x_1255 = lean_array_get_size(x_1254); -lean_dec(x_1254); -x_1256 = lean_nat_dec_eq(x_1255, x_14); -lean_dec(x_1255); -if (x_1256 == 0) -{ -lean_object* x_1257; -x_1257 = lean_box(0); -x_1186 = x_1257; -goto block_1251; -} -else -{ -lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; -lean_dec(x_1185); -x_1258 = lean_unsigned_to_nat(4u); -x_1259 = l_Lean_Syntax_getArg(x_1, x_1258); -x_1260 = lean_unsigned_to_nat(6u); -x_1261 = l_Lean_Syntax_getArg(x_1, x_1260); -lean_dec(x_1); -x_1262 = lean_ctor_get(x_2, 2); -lean_inc(x_1262); -x_1263 = lean_ctor_get(x_2, 1); -lean_inc(x_1263); -lean_dec(x_2); -x_1264 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1265 = lean_array_push(x_1264, x_1183); -x_1266 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1266, 0, x_1174); -lean_ctor_set(x_1266, 1, x_1265); -x_1267 = l_Array_empty___closed__1; -x_1268 = lean_array_push(x_1267, x_1266); -x_1269 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1269, 0, x_16); -lean_ctor_set(x_1269, 1, x_1268); -x_1270 = l_Lean_Elab_Command_expandMixfix___closed__33; -lean_inc(x_1269); -x_1271 = lean_array_push(x_1270, x_1269); -x_1272 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -x_1273 = lean_array_push(x_1271, x_1272); -x_1274 = l_Lean_Elab_Command_expandMixfix___closed__26; -lean_inc(x_1262); -lean_inc(x_1263); -x_1275 = l_Lean_addMacroScope(x_1263, x_1274, x_1262); -x_1276 = lean_box(0); -x_1277 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1278 = l_Lean_Elab_Command_expandMixfix___closed__25; -x_1279 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1279, 0, x_1277); -lean_ctor_set(x_1279, 1, x_1278); -lean_ctor_set(x_1279, 2, x_1275); -lean_ctor_set(x_1279, 3, x_1276); -x_1280 = lean_array_push(x_1267, x_1279); -lean_inc(x_1280); -x_1281 = lean_array_push(x_1280, x_1272); -x_1282 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_1283 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1283, 0, x_1282); -lean_ctor_set(x_1283, 1, x_1281); -x_1284 = lean_array_push(x_1267, x_1283); -x_1285 = lean_array_push(x_1284, x_1259); -x_1286 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_1287 = l_Lean_addMacroScope(x_1263, x_1286, x_1262); -x_1288 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; -x_1289 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1289, 0, x_1277); -lean_ctor_set(x_1289, 1, x_1288); -lean_ctor_set(x_1289, 2, x_1287); -lean_ctor_set(x_1289, 3, x_1276); -lean_inc(x_1289); -x_1290 = lean_array_push(x_1267, x_1289); -x_1291 = lean_array_push(x_1290, x_1269); -x_1292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1292, 0, x_1282); -lean_ctor_set(x_1292, 1, x_1291); -x_1293 = lean_array_push(x_1285, x_1292); -x_1294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1294, 0, x_16); -lean_ctor_set(x_1294, 1, x_1293); -x_1295 = lean_array_push(x_1273, x_1294); -x_1296 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1297 = lean_array_push(x_1295, x_1296); -x_1298 = lean_array_push(x_1267, x_1261); -x_1299 = lean_array_push(x_1280, x_1289); -x_1300 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1300, 0, x_16); -lean_ctor_set(x_1300, 1, x_1299); -x_1301 = lean_array_push(x_1298, x_1300); -x_1302 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1303 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1303, 0, x_1302); -lean_ctor_set(x_1303, 1, x_1301); -x_1304 = lean_array_push(x_1297, x_1303); -x_1305 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_1306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1306, 0, x_1305); -lean_ctor_set(x_1306, 1, x_1304); -x_1307 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1307, 0, x_1306); -lean_ctor_set(x_1307, 1, x_3); -return x_1307; -} -} -block_1251: -{ -uint8_t x_1187; -lean_dec(x_1186); -lean_inc(x_1185); -x_1187 = l_Lean_Syntax_isOfKind(x_1185, x_16); -if (x_1187 == 0) -{ -lean_object* x_1188; lean_object* x_1189; -lean_dec(x_1185); -lean_dec(x_1183); -lean_dec(x_2); -lean_dec(x_1); -x_1188 = lean_box(1); -x_1189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1189, 0, x_1188); -lean_ctor_set(x_1189, 1, x_3); -return x_1189; -} -else -{ -lean_object* x_1190; lean_object* x_1191; uint8_t x_1192; -x_1190 = l_Lean_Syntax_getArgs(x_1185); -x_1191 = lean_array_get_size(x_1190); -lean_dec(x_1190); -x_1192 = lean_nat_dec_eq(x_1191, x_1184); -lean_dec(x_1191); -if (x_1192 == 0) -{ -lean_object* x_1193; lean_object* x_1194; -lean_dec(x_1185); -lean_dec(x_1183); -lean_dec(x_2); -lean_dec(x_1); -x_1193 = lean_box(1); -x_1194 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1194, 0, x_1193); -lean_ctor_set(x_1194, 1, x_3); -return x_1194; -} -else -{ -lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; -x_1195 = l_Lean_Syntax_getArg(x_1185, x_713); -lean_dec(x_1185); -x_1196 = lean_unsigned_to_nat(4u); -x_1197 = l_Lean_Syntax_getArg(x_1, x_1196); -x_1198 = lean_unsigned_to_nat(6u); -x_1199 = l_Lean_Syntax_getArg(x_1, x_1198); -lean_dec(x_1); -x_1200 = lean_ctor_get(x_2, 2); -lean_inc(x_1200); -x_1201 = lean_ctor_get(x_2, 1); -lean_inc(x_1201); -lean_dec(x_2); -x_1202 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; -x_1203 = lean_array_push(x_1202, x_1183); -x_1204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1204, 0, x_1174); -lean_ctor_set(x_1204, 1, x_1203); -x_1205 = l_Array_empty___closed__1; -x_1206 = lean_array_push(x_1205, x_1204); -x_1207 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1207, 0, x_16); -lean_ctor_set(x_1207, 1, x_1206); -x_1208 = l_Lean_Elab_Command_expandMixfix___closed__33; -lean_inc(x_1207); -x_1209 = lean_array_push(x_1208, x_1207); -x_1210 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__9; -x_1211 = lean_array_push(x_1210, x_1195); -x_1212 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__10; -x_1213 = lean_array_push(x_1211, x_1212); -x_1214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1214, 0, x_16); -lean_ctor_set(x_1214, 1, x_1213); -x_1215 = lean_array_push(x_1209, x_1214); -x_1216 = l_Lean_Elab_Command_expandMixfix___closed__26; -lean_inc(x_1200); -lean_inc(x_1201); -x_1217 = l_Lean_addMacroScope(x_1201, x_1216, x_1200); -x_1218 = lean_box(0); -x_1219 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1220 = l_Lean_Elab_Command_expandMixfix___closed__25; -x_1221 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1221, 0, x_1219); -lean_ctor_set(x_1221, 1, x_1220); -lean_ctor_set(x_1221, 2, x_1217); -lean_ctor_set(x_1221, 3, x_1218); -x_1222 = lean_array_push(x_1205, x_1221); -x_1223 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; -lean_inc(x_1222); -x_1224 = lean_array_push(x_1222, x_1223); -x_1225 = l_Lean_Elab_Command_expandMixfix___closed__14; -x_1226 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1226, 0, x_1225); -lean_ctor_set(x_1226, 1, x_1224); -x_1227 = lean_array_push(x_1205, x_1226); -x_1228 = lean_array_push(x_1227, x_1197); -x_1229 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -x_1230 = l_Lean_addMacroScope(x_1201, x_1229, x_1200); -x_1231 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; -x_1232 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1232, 0, x_1219); -lean_ctor_set(x_1232, 1, x_1231); -lean_ctor_set(x_1232, 2, x_1230); -lean_ctor_set(x_1232, 3, x_1218); -lean_inc(x_1232); -x_1233 = lean_array_push(x_1205, x_1232); -x_1234 = lean_array_push(x_1233, x_1207); -x_1235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1235, 0, x_1225); -lean_ctor_set(x_1235, 1, x_1234); -x_1236 = lean_array_push(x_1228, x_1235); -x_1237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1237, 0, x_16); -lean_ctor_set(x_1237, 1, x_1236); -x_1238 = lean_array_push(x_1215, x_1237); -x_1239 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_1240 = lean_array_push(x_1238, x_1239); -x_1241 = lean_array_push(x_1205, x_1199); -x_1242 = lean_array_push(x_1222, x_1232); -x_1243 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1243, 0, x_16); -lean_ctor_set(x_1243, 1, x_1242); -x_1244 = lean_array_push(x_1241, x_1243); -x_1245 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1246, 0, x_1245); -lean_ctor_set(x_1246, 1, x_1244); -x_1247 = lean_array_push(x_1240, x_1246); -x_1248 = l_Lean_Elab_Command_expandMixfix___closed__10; -x_1249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1249, 0, x_1248); -lean_ctor_set(x_1249, 1, x_1247); -x_1250 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1250, 0, x_1249); -lean_ctor_set(x_1250, 1, x_3); -return x_1250; -} -} -} -} -} -} -} -} -} } } } @@ -20383,7 +20510,7 @@ _start: lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_inc(x_1); x_5 = l_Lean_Syntax_getKind(x_1); -x_6 = l_Lean_Elab_Command_expandMixfix___closed__14; +x_6 = l_Lean_Elab_Command_expandMixfix___closed__19; x_7 = lean_name_eq(x_5, x_6); if (x_7 == 0) { @@ -20521,7 +20648,7 @@ _start: lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_inc(x_1); x_5 = l_Lean_Syntax_getKind(x_1); -x_6 = l_Lean_Elab_Command_expandMixfix___closed__14; +x_6 = l_Lean_Elab_Command_expandMixfix___closed__19; x_7 = lean_name_eq(x_5, x_6); if (x_7 == 0) { @@ -25203,7 +25330,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_Lean_Elab_Command_expandMixfix___closed__14; +x_8 = l_Lean_Elab_Command_expandMixfix___closed__19; x_9 = lean_name_eq(x_7, x_8); lean_dec(x_7); x_10 = 1; @@ -25429,7 +25556,7 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__10; +x_1 = l_Lean_Elab_Command_expandMixfix___closed__15; x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; @@ -25690,7 +25817,7 @@ lean_inc(x_117); lean_dec(x_116); x_118 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; x_119 = lean_array_push(x_118, x_113); -x_120 = l_Lean_Elab_Command_expandMixfix___closed__8; +x_120 = l_Lean_Elab_Command_expandMixfix___closed__9; x_121 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_121, 0, x_120); lean_ctor_set(x_121, 1, x_119); @@ -25757,7 +25884,7 @@ lean_inc(x_158); lean_dec(x_157); x_159 = l_myMacro____x40_Init_Notation___hyg_11836____closed__11; x_160 = lean_array_push(x_159, x_154); -x_161 = l_Lean_Elab_Command_expandMixfix___closed__8; +x_161 = l_Lean_Elab_Command_expandMixfix___closed__9; x_162 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_162, 0, x_161); lean_ctor_set(x_162, 1, x_160); @@ -25963,7 +26090,7 @@ lean_dec(x_5); x_8 = lean_ctor_get(x_6, 2); lean_inc(x_8); lean_dec(x_6); -x_9 = l_Lean_Elab_Command_expandMixfix___closed__10; +x_9 = l_Lean_Elab_Command_expandMixfix___closed__11; lean_inc(x_1); x_10 = l_Lean_Syntax_isOfKind(x_1, x_9); if (x_10 == 0) @@ -25997,40 +26124,405 @@ return x_16; } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_131; uint8_t x_132; x_17 = lean_unsigned_to_nat(0u); x_18 = l_Lean_Syntax_getArg(x_1, x_17); -x_19 = l_Lean_nullKind___closed__2; +x_131 = l_Lean_nullKind___closed__2; lean_inc(x_18); -x_20 = l_Lean_Syntax_isOfKind(x_18, x_19); -if (x_20 == 0) +x_132 = l_Lean_Syntax_isOfKind(x_18, x_131); +if (x_132 == 0) { -lean_object* x_21; +lean_object* x_133; +x_133 = lean_box(0); +x_19 = x_133; +goto block_130; +} +else +{ +lean_object* x_134; lean_object* x_135; uint8_t x_136; +x_134 = l_Lean_Syntax_getArgs(x_18); +x_135 = lean_array_get_size(x_134); +lean_dec(x_134); +x_136 = lean_nat_dec_eq(x_135, x_17); +lean_dec(x_135); +if (x_136 == 0) +{ +lean_object* x_137; +x_137 = lean_box(0); +x_19 = x_137; +goto block_130; +} +else +{ +lean_object* x_138; lean_object* x_139; uint8_t x_140; +lean_dec(x_18); +x_138 = lean_unsigned_to_nat(2u); +x_139 = l_Lean_Syntax_getArg(x_1, x_138); +lean_inc(x_139); +x_140 = l_Lean_Syntax_isOfKind(x_139, x_131); +if (x_140 == 0) +{ +lean_object* x_141; +lean_dec(x_139); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_141 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_141; +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; uint8_t x_145; +x_142 = l_Lean_Syntax_getArgs(x_139); +x_143 = lean_array_get_size(x_142); +lean_dec(x_142); +x_144 = lean_unsigned_to_nat(1u); +x_145 = lean_nat_dec_eq(x_143, x_144); +if (x_145 == 0) +{ +uint8_t x_146; +lean_dec(x_139); +x_146 = lean_nat_dec_eq(x_143, x_17); +lean_dec(x_143); +if (x_146 == 0) +{ +lean_object* x_147; +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_147 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_147; +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_172; +x_148 = lean_unsigned_to_nat(3u); +x_149 = l_Lean_Syntax_getArg(x_1, x_148); +lean_inc(x_149); +x_172 = l_Lean_Syntax_isOfKind(x_149, x_131); +if (x_172 == 0) +{ +lean_object* x_173; +x_173 = lean_box(0); +x_150 = x_173; +goto block_171; +} +else +{ +lean_object* x_174; lean_object* x_175; uint8_t x_176; +x_174 = l_Lean_Syntax_getArgs(x_149); +x_175 = lean_array_get_size(x_174); +lean_dec(x_174); +x_176 = lean_nat_dec_eq(x_175, x_17); +lean_dec(x_175); +if (x_176 == 0) +{ +lean_object* x_177; +x_177 = lean_box(0); +x_150 = x_177; +goto block_171; +} +else +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; uint8_t x_184; lean_object* x_185; +lean_dec(x_149); +x_178 = lean_unsigned_to_nat(4u); +x_179 = l_Lean_Syntax_getArg(x_1, x_178); +x_180 = lean_unsigned_to_nat(6u); +x_181 = l_Lean_Syntax_getArg(x_1, x_180); +x_182 = l_Lean_Syntax_getArgs(x_179); +lean_dec(x_179); +x_183 = lean_box(0); +x_184 = 0; +x_185 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_184, x_183, x_17, x_182, x_181, x_2, x_3, x_7); +lean_dec(x_8); +lean_dec(x_1); +return x_185; +} +} +block_171: +{ +uint8_t x_151; +lean_dec(x_150); +lean_inc(x_149); +x_151 = l_Lean_Syntax_isOfKind(x_149, x_131); +if (x_151 == 0) +{ +lean_object* x_152; +lean_dec(x_149); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_152 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_152; +} +else +{ +lean_object* x_153; lean_object* x_154; uint8_t x_155; +x_153 = l_Lean_Syntax_getArgs(x_149); +x_154 = lean_array_get_size(x_153); +lean_dec(x_153); +x_155 = lean_nat_dec_eq(x_154, x_148); +lean_dec(x_154); +if (x_155 == 0) +{ +lean_object* x_156; +lean_dec(x_149); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_156 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_156; +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +x_157 = l_Lean_Syntax_getArg(x_149, x_144); +lean_dec(x_149); +x_158 = lean_unsigned_to_nat(4u); +x_159 = l_Lean_Syntax_getArg(x_1, x_158); +x_160 = lean_unsigned_to_nat(6u); +x_161 = l_Lean_Syntax_getArg(x_1, x_160); +x_162 = l_Lean_Syntax_getArgs(x_159); +lean_dec(x_159); +x_163 = lean_box(0); +x_164 = l_Lean_numLitKind; +x_165 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_164, x_157); +lean_dec(x_157); +if (lean_obj_tag(x_165) == 0) +{ +uint8_t x_166; lean_object* x_167; +x_166 = 0; +x_167 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_166, x_163, x_17, x_162, x_161, x_2, x_3, x_7); +lean_dec(x_8); +lean_dec(x_1); +return x_167; +} +else +{ +lean_object* x_168; uint8_t x_169; lean_object* x_170; +x_168 = lean_ctor_get(x_165, 0); +lean_inc(x_168); +lean_dec(x_165); +x_169 = 0; +x_170 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_169, x_163, x_168, x_162, x_161, x_2, x_3, x_7); +lean_dec(x_8); +lean_dec(x_1); +return x_170; +} +} +} +} +} +} +else +{ +lean_object* x_186; lean_object* x_187; uint8_t x_188; +lean_dec(x_143); +x_186 = l_Lean_Syntax_getArg(x_139, x_17); +lean_dec(x_139); +x_187 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_186); +x_188 = l_Lean_Syntax_isOfKind(x_186, x_187); +if (x_188 == 0) +{ +lean_object* x_189; +lean_dec(x_186); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_189 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_189; +} +else +{ +lean_object* x_190; lean_object* x_191; uint8_t x_192; +x_190 = l_Lean_Syntax_getArgs(x_186); +x_191 = lean_array_get_size(x_190); +lean_dec(x_190); +x_192 = lean_nat_dec_eq(x_191, x_138); +lean_dec(x_191); +if (x_192 == 0) +{ +lean_object* x_193; +lean_dec(x_186); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_193 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_193; +} +else +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_219; +x_194 = l_Lean_Syntax_getArg(x_186, x_144); +lean_dec(x_186); +x_195 = lean_unsigned_to_nat(3u); +x_196 = l_Lean_Syntax_getArg(x_1, x_195); +lean_inc(x_196); +x_219 = l_Lean_Syntax_isOfKind(x_196, x_131); +if (x_219 == 0) +{ +lean_object* x_220; +x_220 = lean_box(0); +x_197 = x_220; +goto block_218; +} +else +{ +lean_object* x_221; lean_object* x_222; uint8_t x_223; +x_221 = l_Lean_Syntax_getArgs(x_196); +x_222 = lean_array_get_size(x_221); +lean_dec(x_221); +x_223 = lean_nat_dec_eq(x_222, x_17); +lean_dec(x_222); +if (x_223 == 0) +{ +lean_object* x_224; +x_224 = lean_box(0); +x_197 = x_224; +goto block_218; +} +else +{ +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; lean_object* x_232; +lean_dec(x_196); +x_225 = lean_unsigned_to_nat(4u); +x_226 = l_Lean_Syntax_getArg(x_1, x_225); +x_227 = lean_unsigned_to_nat(6u); +x_228 = l_Lean_Syntax_getArg(x_1, x_227); +x_229 = l_Lean_Syntax_getArgs(x_226); +lean_dec(x_226); +x_230 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_230, 0, x_194); +x_231 = 0; +x_232 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_231, x_230, x_17, x_229, x_228, x_2, x_3, x_7); +lean_dec(x_8); +lean_dec(x_1); +return x_232; +} +} +block_218: +{ +uint8_t x_198; +lean_dec(x_197); +lean_inc(x_196); +x_198 = l_Lean_Syntax_isOfKind(x_196, x_131); +if (x_198 == 0) +{ +lean_object* x_199; +lean_dec(x_196); +lean_dec(x_194); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_199 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_199; +} +else +{ +lean_object* x_200; lean_object* x_201; uint8_t x_202; +x_200 = l_Lean_Syntax_getArgs(x_196); +x_201 = lean_array_get_size(x_200); +lean_dec(x_200); +x_202 = lean_nat_dec_eq(x_201, x_195); +lean_dec(x_201); +if (x_202 == 0) +{ +lean_object* x_203; +lean_dec(x_196); +lean_dec(x_194); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_203 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_203; +} +else +{ +lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_204 = l_Lean_Syntax_getArg(x_196, x_144); +lean_dec(x_196); +x_205 = lean_unsigned_to_nat(4u); +x_206 = l_Lean_Syntax_getArg(x_1, x_205); +x_207 = lean_unsigned_to_nat(6u); +x_208 = l_Lean_Syntax_getArg(x_1, x_207); +x_209 = l_Lean_Syntax_getArgs(x_206); +lean_dec(x_206); +x_210 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_210, 0, x_194); +x_211 = l_Lean_numLitKind; +x_212 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_211, x_204); +lean_dec(x_204); +if (lean_obj_tag(x_212) == 0) +{ +uint8_t x_213; lean_object* x_214; +x_213 = 0; +x_214 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_213, x_210, x_17, x_209, x_208, x_2, x_3, x_7); +lean_dec(x_8); +lean_dec(x_1); +return x_214; +} +else +{ +lean_object* x_215; uint8_t x_216; lean_object* x_217; +x_215 = lean_ctor_get(x_212, 0); +lean_inc(x_215); +lean_dec(x_212); +x_216 = 0; +x_217 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_216, x_210, x_215, x_209, x_208, x_2, x_3, x_7); +lean_dec(x_8); +lean_dec(x_1); +return x_217; +} +} +} +} +} +} +} +} +} +} +block_130: +{ +lean_object* x_20; uint8_t x_21; +lean_dec(x_19); +x_20 = l_Lean_nullKind___closed__2; +lean_inc(x_18); +x_21 = l_Lean_Syntax_isOfKind(x_18, x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_dec(x_18); lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_21 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_21; +x_22 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_22; } else { -lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_22 = l_Lean_Syntax_getArgs(x_18); -lean_dec(x_18); -x_23 = lean_array_get_size(x_22); -lean_dec(x_22); -x_24 = lean_nat_dec_eq(x_23, x_17); -if (x_24 == 0) -{ -lean_object* x_25; uint8_t x_26; -x_25 = lean_unsigned_to_nat(1u); -x_26 = lean_nat_dec_eq(x_23, x_25); +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_23 = l_Lean_Syntax_getArgs(x_18); +x_24 = lean_array_get_size(x_23); lean_dec(x_23); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_dec_eq(x_24, x_25); +lean_dec(x_24); if (x_26 == 0) { lean_object* x_27; +lean_dec(x_18); lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); @@ -26041,14 +26533,15 @@ return x_27; else { lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_28 = lean_unsigned_to_nat(2u); -x_29 = l_Lean_Syntax_getArg(x_1, x_28); -lean_inc(x_29); -x_30 = l_Lean_Syntax_isOfKind(x_29, x_19); +x_28 = l_Lean_Syntax_getArg(x_18, x_17); +lean_dec(x_18); +x_29 = l_Lean_Elab_Command_expandMixfix___closed__3; +lean_inc(x_28); +x_30 = l_Lean_Syntax_isOfKind(x_28, x_29); if (x_30 == 0) { lean_object* x_31; -lean_dec(x_29); +lean_dec(x_28); lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); @@ -26059,656 +26552,356 @@ return x_31; else { lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_32 = l_Lean_Syntax_getArgs(x_29); +x_32 = l_Lean_Syntax_getArgs(x_28); +lean_dec(x_28); x_33 = lean_array_get_size(x_32); lean_dec(x_32); x_34 = lean_nat_dec_eq(x_33, x_25); +lean_dec(x_33); if (x_34 == 0) { -uint8_t x_35; -lean_dec(x_29); -x_35 = lean_nat_dec_eq(x_33, x_17); -lean_dec(x_33); -if (x_35 == 0) -{ -lean_object* x_36; +lean_object* x_35; lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_36 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_36; +x_35 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_35; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_61; -x_37 = lean_unsigned_to_nat(3u); -x_38 = l_Lean_Syntax_getArg(x_1, x_37); -lean_inc(x_38); -x_61 = l_Lean_Syntax_isOfKind(x_38, x_19); -if (x_61 == 0) +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = lean_unsigned_to_nat(2u); +x_37 = l_Lean_Syntax_getArg(x_1, x_36); +lean_inc(x_37); +x_38 = l_Lean_Syntax_isOfKind(x_37, x_20); +if (x_38 == 0) { -lean_object* x_62; -x_62 = lean_box(0); -x_39 = x_62; -goto block_60; -} -else -{ -lean_object* x_63; lean_object* x_64; uint8_t x_65; -x_63 = l_Lean_Syntax_getArgs(x_38); -x_64 = lean_array_get_size(x_63); -lean_dec(x_63); -x_65 = lean_nat_dec_eq(x_64, x_17); -lean_dec(x_64); -if (x_65 == 0) -{ -lean_object* x_66; -x_66 = lean_box(0); -x_39 = x_66; -goto block_60; -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_object* x_74; -lean_dec(x_38); -x_67 = lean_unsigned_to_nat(4u); -x_68 = l_Lean_Syntax_getArg(x_1, x_67); -x_69 = lean_unsigned_to_nat(6u); -x_70 = l_Lean_Syntax_getArg(x_1, x_69); -x_71 = l_Lean_Syntax_getArgs(x_68); -lean_dec(x_68); -x_72 = lean_box(0); -x_73 = 1; -x_74 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_73, x_72, x_17, x_71, x_70, x_2, x_3, x_7); -lean_dec(x_8); -lean_dec(x_1); -return x_74; -} -} -block_60: -{ -uint8_t x_40; -lean_dec(x_39); -lean_inc(x_38); -x_40 = l_Lean_Syntax_isOfKind(x_38, x_19); -if (x_40 == 0) -{ -lean_object* x_41; -lean_dec(x_38); +lean_object* x_39; +lean_dec(x_37); lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_41 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_41; +x_39 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_39; } else { -lean_object* x_42; lean_object* x_43; uint8_t x_44; -x_42 = l_Lean_Syntax_getArgs(x_38); -x_43 = lean_array_get_size(x_42); -lean_dec(x_42); -x_44 = lean_nat_dec_eq(x_43, x_37); -lean_dec(x_43); -if (x_44 == 0) +lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_40 = l_Lean_Syntax_getArgs(x_37); +x_41 = lean_array_get_size(x_40); +lean_dec(x_40); +x_42 = lean_nat_dec_eq(x_41, x_25); +if (x_42 == 0) { -lean_object* x_45; -lean_dec(x_38); +uint8_t x_43; +lean_dec(x_37); +x_43 = lean_nat_dec_eq(x_41, x_17); +lean_dec(x_41); +if (x_43 == 0) +{ +lean_object* x_44; lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_45 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_45; +x_44 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_44; } else { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_46 = l_Lean_Syntax_getArg(x_38, x_25); -lean_dec(x_38); -x_47 = lean_unsigned_to_nat(4u); -x_48 = l_Lean_Syntax_getArg(x_1, x_47); -x_49 = lean_unsigned_to_nat(6u); -x_50 = l_Lean_Syntax_getArg(x_1, x_49); -x_51 = l_Lean_Syntax_getArgs(x_48); -lean_dec(x_48); -x_52 = lean_box(0); -x_53 = l_Lean_numLitKind; -x_54 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_53, x_46); +lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_69; +x_45 = lean_unsigned_to_nat(3u); +x_46 = l_Lean_Syntax_getArg(x_1, x_45); +lean_inc(x_46); +x_69 = l_Lean_Syntax_isOfKind(x_46, x_20); +if (x_69 == 0) +{ +lean_object* x_70; +x_70 = lean_box(0); +x_47 = x_70; +goto block_68; +} +else +{ +lean_object* x_71; lean_object* x_72; uint8_t x_73; +x_71 = l_Lean_Syntax_getArgs(x_46); +x_72 = lean_array_get_size(x_71); +lean_dec(x_71); +x_73 = lean_nat_dec_eq(x_72, x_17); +lean_dec(x_72); +if (x_73 == 0) +{ +lean_object* x_74; +x_74 = lean_box(0); +x_47 = x_74; +goto block_68; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; lean_dec(x_46); -if (lean_obj_tag(x_54) == 0) -{ -uint8_t x_55; lean_object* x_56; -x_55 = 1; -x_56 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_55, x_52, x_17, x_51, x_50, x_2, x_3, x_7); +x_75 = lean_unsigned_to_nat(4u); +x_76 = l_Lean_Syntax_getArg(x_1, x_75); +x_77 = lean_unsigned_to_nat(6u); +x_78 = l_Lean_Syntax_getArg(x_1, x_77); +x_79 = l_Lean_Syntax_getArgs(x_76); +lean_dec(x_76); +x_80 = lean_box(0); +x_81 = 1; +x_82 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_81, x_80, x_17, x_79, x_78, x_2, x_3, x_7); lean_dec(x_8); lean_dec(x_1); -return x_56; -} -else -{ -lean_object* x_57; uint8_t x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_54, 0); -lean_inc(x_57); -lean_dec(x_54); -x_58 = 1; -x_59 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_58, x_52, x_57, x_51, x_50, x_2, x_3, x_7); -lean_dec(x_8); -lean_dec(x_1); -return x_59; -} -} -} -} -} -} -else -{ -lean_object* x_75; lean_object* x_76; uint8_t x_77; -lean_dec(x_33); -x_75 = l_Lean_Syntax_getArg(x_29, x_17); -lean_dec(x_29); -x_76 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_75); -x_77 = l_Lean_Syntax_isOfKind(x_75, x_76); -if (x_77 == 0) -{ -lean_object* x_78; -lean_dec(x_75); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_78 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_78; -} -else -{ -lean_object* x_79; lean_object* x_80; uint8_t x_81; -x_79 = l_Lean_Syntax_getArgs(x_75); -x_80 = lean_array_get_size(x_79); -lean_dec(x_79); -x_81 = lean_nat_dec_eq(x_80, x_28); -lean_dec(x_80); -if (x_81 == 0) -{ -lean_object* x_82; -lean_dec(x_75); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_82 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); return x_82; } -else +} +block_68: { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_108; -x_83 = l_Lean_Syntax_getArg(x_75, x_25); -lean_dec(x_75); -x_84 = lean_unsigned_to_nat(3u); -x_85 = l_Lean_Syntax_getArg(x_1, x_84); -lean_inc(x_85); -x_108 = l_Lean_Syntax_isOfKind(x_85, x_19); -if (x_108 == 0) +uint8_t x_48; +lean_dec(x_47); +lean_inc(x_46); +x_48 = l_Lean_Syntax_isOfKind(x_46, x_20); +if (x_48 == 0) { -lean_object* x_109; -x_109 = lean_box(0); -x_86 = x_109; -goto block_107; +lean_object* x_49; +lean_dec(x_46); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_49 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_49; } else { -lean_object* x_110; lean_object* x_111; uint8_t x_112; -x_110 = l_Lean_Syntax_getArgs(x_85); -x_111 = lean_array_get_size(x_110); -lean_dec(x_110); -x_112 = lean_nat_dec_eq(x_111, x_17); -lean_dec(x_111); -if (x_112 == 0) +lean_object* x_50; lean_object* x_51; uint8_t x_52; +x_50 = l_Lean_Syntax_getArgs(x_46); +x_51 = lean_array_get_size(x_50); +lean_dec(x_50); +x_52 = lean_nat_dec_eq(x_51, x_45); +lean_dec(x_51); +if (x_52 == 0) { -lean_object* x_113; -x_113 = lean_box(0); -x_86 = x_113; -goto block_107; +lean_object* x_53; +lean_dec(x_46); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_53 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_53; } else { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; -lean_dec(x_85); -x_114 = lean_unsigned_to_nat(4u); -x_115 = l_Lean_Syntax_getArg(x_1, x_114); -x_116 = lean_unsigned_to_nat(6u); -x_117 = l_Lean_Syntax_getArg(x_1, x_116); -x_118 = l_Lean_Syntax_getArgs(x_115); -lean_dec(x_115); -x_119 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_119, 0, x_83); -x_120 = 1; -x_121 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_120, x_119, x_17, x_118, x_117, x_2, x_3, x_7); +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_54 = l_Lean_Syntax_getArg(x_46, x_25); +lean_dec(x_46); +x_55 = lean_unsigned_to_nat(4u); +x_56 = l_Lean_Syntax_getArg(x_1, x_55); +x_57 = lean_unsigned_to_nat(6u); +x_58 = l_Lean_Syntax_getArg(x_1, x_57); +x_59 = l_Lean_Syntax_getArgs(x_56); +lean_dec(x_56); +x_60 = lean_box(0); +x_61 = l_Lean_numLitKind; +x_62 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_61, x_54); +lean_dec(x_54); +if (lean_obj_tag(x_62) == 0) +{ +uint8_t x_63; lean_object* x_64; +x_63 = 1; +x_64 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_63, x_60, x_17, x_59, x_58, x_2, x_3, x_7); lean_dec(x_8); lean_dec(x_1); -return x_121; +return x_64; +} +else +{ +lean_object* x_65; uint8_t x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_62, 0); +lean_inc(x_65); +lean_dec(x_62); +x_66 = 1; +x_67 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_66, x_60, x_65, x_59, x_58, x_2, x_3, x_7); +lean_dec(x_8); +lean_dec(x_1); +return x_67; } } -block_107: +} +} +} +} +else { -uint8_t x_87; -lean_dec(x_86); -lean_inc(x_85); -x_87 = l_Lean_Syntax_isOfKind(x_85, x_19); -if (x_87 == 0) +lean_object* x_83; lean_object* x_84; uint8_t x_85; +lean_dec(x_41); +x_83 = l_Lean_Syntax_getArg(x_37, x_17); +lean_dec(x_37); +x_84 = l_Lean_Elab_Command_expandMixfix___closed__9; +lean_inc(x_83); +x_85 = l_Lean_Syntax_isOfKind(x_83, x_84); +if (x_85 == 0) { -lean_object* x_88; -lean_dec(x_85); +lean_object* x_86; lean_dec(x_83); lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_88 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_88; +x_86 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_86; } else { -lean_object* x_89; lean_object* x_90; uint8_t x_91; -x_89 = l_Lean_Syntax_getArgs(x_85); -x_90 = lean_array_get_size(x_89); -lean_dec(x_89); -x_91 = lean_nat_dec_eq(x_90, x_84); -lean_dec(x_90); -if (x_91 == 0) +lean_object* x_87; lean_object* x_88; uint8_t x_89; +x_87 = l_Lean_Syntax_getArgs(x_83); +x_88 = lean_array_get_size(x_87); +lean_dec(x_87); +x_89 = lean_nat_dec_eq(x_88, x_36); +lean_dec(x_88); +if (x_89 == 0) { -lean_object* x_92; -lean_dec(x_85); +lean_object* x_90; lean_dec(x_83); lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_92 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_92; +x_90 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_90; } else { -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; -x_93 = l_Lean_Syntax_getArg(x_85, x_25); -lean_dec(x_85); -x_94 = lean_unsigned_to_nat(4u); -x_95 = l_Lean_Syntax_getArg(x_1, x_94); -x_96 = lean_unsigned_to_nat(6u); -x_97 = l_Lean_Syntax_getArg(x_1, x_96); -x_98 = l_Lean_Syntax_getArgs(x_95); -lean_dec(x_95); -x_99 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_99, 0, x_83); -x_100 = l_Lean_numLitKind; -x_101 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_100, x_93); +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_116; +x_91 = l_Lean_Syntax_getArg(x_83, x_25); +lean_dec(x_83); +x_92 = lean_unsigned_to_nat(3u); +x_93 = l_Lean_Syntax_getArg(x_1, x_92); +lean_inc(x_93); +x_116 = l_Lean_Syntax_isOfKind(x_93, x_20); +if (x_116 == 0) +{ +lean_object* x_117; +x_117 = lean_box(0); +x_94 = x_117; +goto block_115; +} +else +{ +lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_118 = l_Lean_Syntax_getArgs(x_93); +x_119 = lean_array_get_size(x_118); +lean_dec(x_118); +x_120 = lean_nat_dec_eq(x_119, x_17); +lean_dec(x_119); +if (x_120 == 0) +{ +lean_object* x_121; +x_121 = lean_box(0); +x_94 = x_121; +goto block_115; +} +else +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; uint8_t x_128; lean_object* x_129; lean_dec(x_93); -if (lean_obj_tag(x_101) == 0) -{ -uint8_t x_102; lean_object* x_103; -x_102 = 1; -x_103 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_102, x_99, x_17, x_98, x_97, x_2, x_3, x_7); -lean_dec(x_8); -lean_dec(x_1); -return x_103; -} -else -{ -lean_object* x_104; uint8_t x_105; lean_object* x_106; -x_104 = lean_ctor_get(x_101, 0); -lean_inc(x_104); -lean_dec(x_101); -x_105 = 1; -x_106 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_105, x_99, x_104, x_98, x_97, x_2, x_3, x_7); -lean_dec(x_8); -lean_dec(x_1); -return x_106; -} -} -} -} -} -} -} -} -} -} -else -{ -lean_object* x_122; lean_object* x_123; uint8_t x_124; -lean_dec(x_23); -x_122 = lean_unsigned_to_nat(2u); +x_122 = lean_unsigned_to_nat(4u); x_123 = l_Lean_Syntax_getArg(x_1, x_122); -lean_inc(x_123); -x_124 = l_Lean_Syntax_isOfKind(x_123, x_19); -if (x_124 == 0) -{ -lean_object* x_125; -lean_dec(x_123); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_125 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_125; -} -else -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; +x_124 = lean_unsigned_to_nat(6u); +x_125 = l_Lean_Syntax_getArg(x_1, x_124); x_126 = l_Lean_Syntax_getArgs(x_123); -x_127 = lean_array_get_size(x_126); -lean_dec(x_126); -x_128 = lean_unsigned_to_nat(1u); -x_129 = lean_nat_dec_eq(x_127, x_128); -if (x_129 == 0) -{ -uint8_t x_130; lean_dec(x_123); -x_130 = lean_nat_dec_eq(x_127, x_17); -lean_dec(x_127); -if (x_130 == 0) +x_127 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_127, 0, x_91); +x_128 = 1; +x_129 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_128, x_127, x_17, x_126, x_125, x_2, x_3, x_7); +lean_dec(x_8); +lean_dec(x_1); +return x_129; +} +} +block_115: { -lean_object* x_131; +uint8_t x_95; +lean_dec(x_94); +lean_inc(x_93); +x_95 = l_Lean_Syntax_isOfKind(x_93, x_20); +if (x_95 == 0) +{ +lean_object* x_96; +lean_dec(x_93); +lean_dec(x_91); lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_131 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_131; +x_96 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_96; } else { -lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_156; -x_132 = lean_unsigned_to_nat(3u); -x_133 = l_Lean_Syntax_getArg(x_1, x_132); -lean_inc(x_133); -x_156 = l_Lean_Syntax_isOfKind(x_133, x_19); -if (x_156 == 0) +lean_object* x_97; lean_object* x_98; uint8_t x_99; +x_97 = l_Lean_Syntax_getArgs(x_93); +x_98 = lean_array_get_size(x_97); +lean_dec(x_97); +x_99 = lean_nat_dec_eq(x_98, x_92); +lean_dec(x_98); +if (x_99 == 0) { -lean_object* x_157; -x_157 = lean_box(0); -x_134 = x_157; -goto block_155; -} -else -{ -lean_object* x_158; lean_object* x_159; uint8_t x_160; -x_158 = l_Lean_Syntax_getArgs(x_133); -x_159 = lean_array_get_size(x_158); -lean_dec(x_158); -x_160 = lean_nat_dec_eq(x_159, x_17); -lean_dec(x_159); -if (x_160 == 0) -{ -lean_object* x_161; -x_161 = lean_box(0); -x_134 = x_161; -goto block_155; -} -else -{ -lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; -lean_dec(x_133); -x_162 = lean_unsigned_to_nat(4u); -x_163 = l_Lean_Syntax_getArg(x_1, x_162); -x_164 = lean_unsigned_to_nat(6u); -x_165 = l_Lean_Syntax_getArg(x_1, x_164); -x_166 = l_Lean_Syntax_getArgs(x_163); -lean_dec(x_163); -x_167 = lean_box(0); -x_168 = 0; -x_169 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_168, x_167, x_17, x_166, x_165, x_2, x_3, x_7); -lean_dec(x_8); -lean_dec(x_1); -return x_169; -} -} -block_155: -{ -uint8_t x_135; -lean_dec(x_134); -lean_inc(x_133); -x_135 = l_Lean_Syntax_isOfKind(x_133, x_19); -if (x_135 == 0) -{ -lean_object* x_136; -lean_dec(x_133); +lean_object* x_100; +lean_dec(x_93); +lean_dec(x_91); lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_136 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_136; +x_100 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); +return x_100; } else { -lean_object* x_137; lean_object* x_138; uint8_t x_139; -x_137 = l_Lean_Syntax_getArgs(x_133); -x_138 = lean_array_get_size(x_137); -lean_dec(x_137); -x_139 = lean_nat_dec_eq(x_138, x_132); -lean_dec(x_138); -if (x_139 == 0) +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_101 = l_Lean_Syntax_getArg(x_93, x_25); +lean_dec(x_93); +x_102 = lean_unsigned_to_nat(4u); +x_103 = l_Lean_Syntax_getArg(x_1, x_102); +x_104 = lean_unsigned_to_nat(6u); +x_105 = l_Lean_Syntax_getArg(x_1, x_104); +x_106 = l_Lean_Syntax_getArgs(x_103); +lean_dec(x_103); +x_107 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_107, 0, x_91); +x_108 = l_Lean_numLitKind; +x_109 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_108, x_101); +lean_dec(x_101); +if (lean_obj_tag(x_109) == 0) { -lean_object* x_140; -lean_dec(x_133); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_140 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_140; -} -else -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; -x_141 = l_Lean_Syntax_getArg(x_133, x_128); -lean_dec(x_133); -x_142 = lean_unsigned_to_nat(4u); -x_143 = l_Lean_Syntax_getArg(x_1, x_142); -x_144 = lean_unsigned_to_nat(6u); -x_145 = l_Lean_Syntax_getArg(x_1, x_144); -x_146 = l_Lean_Syntax_getArgs(x_143); -lean_dec(x_143); -x_147 = lean_box(0); -x_148 = l_Lean_numLitKind; -x_149 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_148, x_141); -lean_dec(x_141); -if (lean_obj_tag(x_149) == 0) -{ -uint8_t x_150; lean_object* x_151; -x_150 = 0; -x_151 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_150, x_147, x_17, x_146, x_145, x_2, x_3, x_7); +uint8_t x_110; lean_object* x_111; +x_110 = 1; +x_111 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_110, x_107, x_17, x_106, x_105, x_2, x_3, x_7); lean_dec(x_8); lean_dec(x_1); -return x_151; +return x_111; } else { -lean_object* x_152; uint8_t x_153; lean_object* x_154; -x_152 = lean_ctor_get(x_149, 0); -lean_inc(x_152); -lean_dec(x_149); -x_153 = 0; -x_154 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_153, x_147, x_152, x_146, x_145, x_2, x_3, x_7); +lean_object* x_112; uint8_t x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_109, 0); +lean_inc(x_112); +lean_dec(x_109); +x_113 = 1; +x_114 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_113, x_107, x_112, x_106, x_105, x_2, x_3, x_7); lean_dec(x_8); lean_dec(x_1); -return x_154; +return x_114; } } } } } } -else -{ -lean_object* x_170; lean_object* x_171; uint8_t x_172; -lean_dec(x_127); -x_170 = l_Lean_Syntax_getArg(x_123, x_17); -lean_dec(x_123); -x_171 = l_Lean_Elab_Command_expandMixfix___closed__8; -lean_inc(x_170); -x_172 = l_Lean_Syntax_isOfKind(x_170, x_171); -if (x_172 == 0) -{ -lean_object* x_173; -lean_dec(x_170); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_173 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_173; -} -else -{ -lean_object* x_174; lean_object* x_175; uint8_t x_176; -x_174 = l_Lean_Syntax_getArgs(x_170); -x_175 = lean_array_get_size(x_174); -lean_dec(x_174); -x_176 = lean_nat_dec_eq(x_175, x_122); -lean_dec(x_175); -if (x_176 == 0) -{ -lean_object* x_177; -lean_dec(x_170); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_177 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_177; -} -else -{ -lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; uint8_t x_203; -x_178 = l_Lean_Syntax_getArg(x_170, x_128); -lean_dec(x_170); -x_179 = lean_unsigned_to_nat(3u); -x_180 = l_Lean_Syntax_getArg(x_1, x_179); -lean_inc(x_180); -x_203 = l_Lean_Syntax_isOfKind(x_180, x_19); -if (x_203 == 0) -{ -lean_object* x_204; -x_204 = lean_box(0); -x_181 = x_204; -goto block_202; -} -else -{ -lean_object* x_205; lean_object* x_206; uint8_t x_207; -x_205 = l_Lean_Syntax_getArgs(x_180); -x_206 = lean_array_get_size(x_205); -lean_dec(x_205); -x_207 = lean_nat_dec_eq(x_206, x_17); -lean_dec(x_206); -if (x_207 == 0) -{ -lean_object* x_208; -x_208 = lean_box(0); -x_181 = x_208; -goto block_202; -} -else -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; lean_object* x_216; -lean_dec(x_180); -x_209 = lean_unsigned_to_nat(4u); -x_210 = l_Lean_Syntax_getArg(x_1, x_209); -x_211 = lean_unsigned_to_nat(6u); -x_212 = l_Lean_Syntax_getArg(x_1, x_211); -x_213 = l_Lean_Syntax_getArgs(x_210); -lean_dec(x_210); -x_214 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_214, 0, x_178); -x_215 = 0; -x_216 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_215, x_214, x_17, x_213, x_212, x_2, x_3, x_7); -lean_dec(x_8); -lean_dec(x_1); -return x_216; -} -} -block_202: -{ -uint8_t x_182; -lean_dec(x_181); -lean_inc(x_180); -x_182 = l_Lean_Syntax_isOfKind(x_180, x_19); -if (x_182 == 0) -{ -lean_object* x_183; -lean_dec(x_180); -lean_dec(x_178); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_183 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_183; -} -else -{ -lean_object* x_184; lean_object* x_185; uint8_t x_186; -x_184 = l_Lean_Syntax_getArgs(x_180); -x_185 = lean_array_get_size(x_184); -lean_dec(x_184); -x_186 = lean_nat_dec_eq(x_185, x_179); -lean_dec(x_185); -if (x_186 == 0) -{ -lean_object* x_187; -lean_dec(x_180); -lean_dec(x_178); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_187 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_7); -return x_187; -} -else -{ -lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; -x_188 = l_Lean_Syntax_getArg(x_180, x_128); -lean_dec(x_180); -x_189 = lean_unsigned_to_nat(4u); -x_190 = l_Lean_Syntax_getArg(x_1, x_189); -x_191 = lean_unsigned_to_nat(6u); -x_192 = l_Lean_Syntax_getArg(x_1, x_191); -x_193 = l_Lean_Syntax_getArgs(x_190); -lean_dec(x_190); -x_194 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_194, 0, x_178); -x_195 = l_Lean_numLitKind; -x_196 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_195, x_188); -lean_dec(x_188); -if (lean_obj_tag(x_196) == 0) -{ -uint8_t x_197; lean_object* x_198; -x_197 = 0; -x_198 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_197, x_194, x_17, x_193, x_192, x_2, x_3, x_7); -lean_dec(x_8); -lean_dec(x_1); -return x_198; -} -else -{ -lean_object* x_199; uint8_t x_200; lean_object* x_201; -x_199 = lean_ctor_get(x_196, 0); -lean_inc(x_199); -lean_dec(x_196); -x_200 = 0; -x_201 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(x_1, x_8, x_200, x_194, x_199, x_193, x_192, x_2, x_3, x_7); -lean_dec(x_8); -lean_dec(x_1); -return x_201; -} -} -} } } } @@ -26750,7 +26943,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Command_commandElabAttribute; -x_3 = l_Lean_Elab_Command_expandMixfix___closed__10; +x_3 = l_Lean_Elab_Command_expandMixfix___closed__11; x_4 = l___regBuiltin_Lean_Elab_Command_expandNotation___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -28564,7 +28757,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -28574,11 +28767,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -32974,6 +33167,16 @@ l_Lean_Elab_Command_expandMixfix___closed__33 = _init_l_Lean_Elab_Command_expand lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___closed__33); l_Lean_Elab_Command_expandMixfix___closed__34 = _init_l_Lean_Elab_Command_expandMixfix___closed__34(); lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___closed__34); +l_Lean_Elab_Command_expandMixfix___closed__35 = _init_l_Lean_Elab_Command_expandMixfix___closed__35(); +lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___closed__35); +l_Lean_Elab_Command_expandMixfix___closed__36 = _init_l_Lean_Elab_Command_expandMixfix___closed__36(); +lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___closed__36); +l_Lean_Elab_Command_expandMixfix___closed__37 = _init_l_Lean_Elab_Command_expandMixfix___closed__37(); +lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___closed__37); +l_Lean_Elab_Command_expandMixfix___closed__38 = _init_l_Lean_Elab_Command_expandMixfix___closed__38(); +lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___closed__38); +l_Lean_Elab_Command_expandMixfix___closed__39 = _init_l_Lean_Elab_Command_expandMixfix___closed__39(); +lean_mark_persistent(l_Lean_Elab_Command_expandMixfix___closed__39); l___regBuiltin_Lean_Elab_Command_expandMixfix___closed__1 = _init_l___regBuiltin_Lean_Elab_Command_expandMixfix___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_expandMixfix___closed__1); res = l___regBuiltin_Lean_Elab_Command_expandMixfix(lean_io_mk_world()); @@ -33077,9 +33280,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabMacro___closed__2); res = l___regBuiltin_Lean_Elab_Command_elabMacro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17240_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17534_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_withExpectedType___closed__1 = _init_l_Lean_Elab_Command_withExpectedType___closed__1(); diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 31ae1c19d4..bee268b83b 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -20,7 +20,6 @@ lean_object* l_Lean_Parser_Command_universes_formatter(lean_object*, lean_object lean_object* l_Lean_Parser_Command_check__failure___closed__5; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__3; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__23; -lean_object* l_Lean_Parser_Command_attribute_formatter___closed__11; lean_object* l_Lean_Parser_Command_builtin__initialize___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_example___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__22; @@ -647,7 +646,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_quot_formatter___closed__1; lean_object* l_Lean_Parser_Command_noncomputable_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structureTk_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_universe_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__23; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_declaration_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_ctor___closed__10; @@ -701,6 +699,7 @@ lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__20; lean_object* l_Lean_Parser_Command_declaration_formatter___closed__10; lean_object* l_Lean_Parser_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_local___closed__1; lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_initialize___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_example___elambda__1___closed__1; @@ -708,7 +707,6 @@ lean_object* l_Lean_Parser_Command_ctor_formatter___closed__2; lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__3; lean_object* l_Lean_Parser_Command_universes_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_openRenamingItem___closed__4; -lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__21; lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_extends___closed__5; @@ -834,7 +832,6 @@ lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__3; lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__4; lean_object* l_Lean_Parser_Command_init__quot_formatter___closed__2; -lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__20; lean_object* l_Lean_Parser_Command_openHiding_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__4; @@ -1259,6 +1256,7 @@ lean_object* l_Lean_Parser_Command_classTk___closed__2; lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__2; lean_object* l_Lean_Parser_Command_noncomputable_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__14; +extern lean_object* l_Lean_Parser_Term_local_formatter___closed__2; lean_object* l_Lean_Parser_Command_structSimpleBinder_formatter___closed__2; lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__2; @@ -1462,7 +1460,6 @@ lean_object* l_Lean_Parser_Term_quot___closed__10; lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__9; lean_object* l_Lean_Parser_Command_noncomputable_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_declSig___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__22; lean_object* l_Lean_Parser_Command_structSimpleBinder___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__8; lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__9; @@ -2310,6 +2307,7 @@ lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_openOnly_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openOnly___closed__7; lean_object* l_Lean_Parser_Command_attribute_formatter___closed__7; +extern lean_object* l_Lean_Parser_Term_local___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__14; lean_object* l_Lean_Parser_Command_inductive_formatter___closed__7; lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__4; @@ -23925,9 +23923,13 @@ return x_4; static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__5() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("local "); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_local___closed__1; +x_2 = l_Lean_Parser_Term_local___elambda__1___closed__7; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__6() { @@ -23935,51 +23937,11 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__6; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__7; -x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__9; x_2 = l_Lean_Parser_optional(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__11() { +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__7() { _start: { lean_object* x_1; @@ -23987,59 +23949,98 @@ x_1 = lean_mk_string("] "); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__12() { +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__11; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__7; x_2 = l_String_trim(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__13() { +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__12; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__8; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__14() { +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__7; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__13; +x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__9; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_4, 0, x_3); lean_closure_set(x_4, 1, x_2); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__15() { +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_attributes___elambda__1___closed__3; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__14; +x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__10; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_4, 0, x_2); lean_closure_set(x_4, 1, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__16() { +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_mkAntiquotScope___closed__5; -x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__15; +x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__11; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("attribute "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__13; +x_2 = l_String_trim(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__14; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__15; +x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__12; 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); @@ -24049,74 +24050,35 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__17() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("attribute "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__17; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__18; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__20() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__19; -x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__16; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__21() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__10; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__6; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__20; +x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__16; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_4, 0, x_2); lean_closure_set(x_4, 1, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__22() { +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__21; +x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__17; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__23() { +static lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__11; -x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__22; +x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__18; 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); @@ -24130,7 +24092,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__4; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Command_attribute___elambda__1___closed__23; +x_5 = l_Lean_Parser_Command_attribute___elambda__1___closed__19; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -24140,7 +24102,7 @@ static lean_object* _init_l_Lean_Parser_Command_attribute___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__12; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__8; x_2 = l_Lean_Parser_symbolInfo(x_1); return x_2; } @@ -24183,7 +24145,7 @@ static lean_object* _init_l_Lean_Parser_Command_attribute___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__18; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__14; x_2 = l_Lean_Parser_symbolInfo(x_1); return x_2; } @@ -24202,7 +24164,7 @@ static lean_object* _init_l_Lean_Parser_Command_attribute___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__10; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__6; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_attribute___closed__6; @@ -24302,8 +24264,8 @@ static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__2( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); +x_1 = l_Lean_Parser_Term_local_formatter___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -24312,8 +24274,8 @@ static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__3( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute_formatter___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__13; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -24322,7 +24284,7 @@ static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__4( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__17; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__7; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -24331,19 +24293,21 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__11; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_attribute_formatter___closed__4; +x_2 = l_Lean_Parser_Command_structExplicitBinder_formatter___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_attribute_formatter___closed__5; -x_2 = l_Lean_Parser_Command_structExplicitBinder_formatter___closed__4; +x_1 = l_Lean_Parser_Term_attributes_formatter___closed__4; +x_2 = l_Lean_Parser_Command_attribute_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -24354,7 +24318,7 @@ static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__7( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attributes_formatter___closed__4; +x_1 = l_Lean_Parser_mkAntiquotScope_formatter___closed__1; x_2 = l_Lean_Parser_Command_attribute_formatter___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -24366,7 +24330,7 @@ static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__8( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquotScope_formatter___closed__1; +x_1 = l_Lean_Parser_Command_attribute_formatter___closed__3; x_2 = l_Lean_Parser_Command_attribute_formatter___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -24378,7 +24342,7 @@ static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__9( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_attribute_formatter___closed__4; +x_1 = l_Lean_Parser_Command_attribute_formatter___closed__2; x_2 = l_Lean_Parser_Command_attribute_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -24389,22 +24353,10 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_attribute_formatter___closed__3; -x_2 = l_Lean_Parser_Command_attribute_formatter___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_attribute_formatter___closed__11() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_attribute_formatter___closed__10; +x_3 = l_Lean_Parser_Command_attribute_formatter___closed__9; 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); @@ -24417,7 +24369,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_attribute_formatter___closed__1; -x_7 = l_Lean_Parser_Command_attribute_formatter___closed__11; +x_7 = l_Lean_Parser_Command_attribute_formatter___closed__10; 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; } @@ -32681,14 +32633,6 @@ l_Lean_Parser_Command_attribute___elambda__1___closed__18 = _init_l_Lean_Parser_ lean_mark_persistent(l_Lean_Parser_Command_attribute___elambda__1___closed__18); l_Lean_Parser_Command_attribute___elambda__1___closed__19 = _init_l_Lean_Parser_Command_attribute___elambda__1___closed__19(); lean_mark_persistent(l_Lean_Parser_Command_attribute___elambda__1___closed__19); -l_Lean_Parser_Command_attribute___elambda__1___closed__20 = _init_l_Lean_Parser_Command_attribute___elambda__1___closed__20(); -lean_mark_persistent(l_Lean_Parser_Command_attribute___elambda__1___closed__20); -l_Lean_Parser_Command_attribute___elambda__1___closed__21 = _init_l_Lean_Parser_Command_attribute___elambda__1___closed__21(); -lean_mark_persistent(l_Lean_Parser_Command_attribute___elambda__1___closed__21); -l_Lean_Parser_Command_attribute___elambda__1___closed__22 = _init_l_Lean_Parser_Command_attribute___elambda__1___closed__22(); -lean_mark_persistent(l_Lean_Parser_Command_attribute___elambda__1___closed__22); -l_Lean_Parser_Command_attribute___elambda__1___closed__23 = _init_l_Lean_Parser_Command_attribute___elambda__1___closed__23(); -lean_mark_persistent(l_Lean_Parser_Command_attribute___elambda__1___closed__23); l_Lean_Parser_Command_attribute___closed__1 = _init_l_Lean_Parser_Command_attribute___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_attribute___closed__1); l_Lean_Parser_Command_attribute___closed__2 = _init_l_Lean_Parser_Command_attribute___closed__2(); @@ -32738,8 +32682,6 @@ l_Lean_Parser_Command_attribute_formatter___closed__9 = _init_l_Lean_Parser_Comm lean_mark_persistent(l_Lean_Parser_Command_attribute_formatter___closed__9); l_Lean_Parser_Command_attribute_formatter___closed__10 = _init_l_Lean_Parser_Command_attribute_formatter___closed__10(); lean_mark_persistent(l_Lean_Parser_Command_attribute_formatter___closed__10); -l_Lean_Parser_Command_attribute_formatter___closed__11 = _init_l_Lean_Parser_Command_attribute_formatter___closed__11(); -lean_mark_persistent(l_Lean_Parser_Command_attribute_formatter___closed__11); l___regBuiltin_Lean_Parser_Command_attribute_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_attribute_formatter___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_attribute_formatter___closed__1); res = l___regBuiltin_Lean_Parser_Command_attribute_formatter(lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Parser/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c index 1f47e3608a..316993b503 100644 --- a/stage0/stdlib/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -23,14 +23,12 @@ lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__12; lean_object* l_Lean_Parser_Syntax_cat___closed__6; lean_object* l_Lean_Parser_Command_syntax_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_stx_quot_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Command_scoped___closed__2; lean_object* l_Lean_Parser_Command_parserPrio___closed__1; lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_mixfixKind___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_postfix___closed__6; lean_object* l_Lean_Parser_Command_parserPrio_formatter___closed__2; -lean_object* l_Lean_Parser_Command_scoped___closed__1; lean_object* l_Lean_Parser_Term_stx_quot___closed__4; lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_notationItem_parenthesizer___closed__1; @@ -86,13 +84,11 @@ lean_object* l_Lean_Parser_Syntax_unary___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_macroTail_formatter___closed__1; extern lean_object* l_Lean_Parser_Term_matchAlt___closed__3; -lean_object* l_Lean_Parser_Command_local___closed__4; lean_object* l_Lean_Parser_Syntax_binary___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_notation_formatter___closed__2; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__3; -lean_object* l_Lean_Parser_Command_local___elambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_macroTailCommand_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -130,7 +126,6 @@ lean_object* l_Lean_Parser_Command_parserKindPrio_formatter(lean_object*, lean_o lean_object* l_Lean_Parser_Command_parserKindPrio___closed__7; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_infixr___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_scoped___closed__6; lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Command_elab__rules(lean_object*); lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__5; @@ -154,7 +149,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_atomic_formatter(lean_object*, lean_ lean_object* l_Lean_Parser_Command_elab___closed__6; lean_object* l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__5; -lean_object* l_Lean_Parser_Command_local___elambda__1___closed__3; +extern lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__7; lean_object* l_Lean_Parser_Command_macro___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_parserKind___closed__1; lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__6; @@ -177,7 +172,6 @@ lean_object* l_Lean_Parser_Command_infixr_formatter(lean_object*, lean_object*, extern lean_object* l_term___u2218_____closed__6; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_identPrec___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_local___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_optKindPrio_parenthesizer___closed__7; lean_object* l___regBuiltin_Lean_Parser_Command_elab_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_macroArg_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -194,7 +188,6 @@ lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_postfix_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailTactic___closed__3; lean_object* l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__1; -lean_object* l_Lean_Parser_Command_local___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_prefix; extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__7; lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__4; @@ -209,12 +202,10 @@ extern lean_object* l_Lean_Parser_ident; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__15; lean_object* l_Lean_Parser_precedence___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_stx_quot___elambda__1___closed__10; -lean_object* l_Lean_Parser_Command_attrKind___closed__2; lean_object* l_Lean_Parser_Command_notationItem___closed__3; lean_object* l_Lean_Parser_Command_macro_formatter___closed__5; lean_object* l_Lean_Parser_Command_macroArgSimple_formatter___closed__3; lean_object* l_Lean_Parser_Command_mixfixKind___elambda__1___closed__2; -lean_object* l_Lean_Parser_Command_attrKind_parenthesizer___closed__1; lean_object* l_Lean_Parser_nonReservedSymbolFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_nonReserved___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_paren; @@ -248,7 +239,6 @@ lean_object* l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer(lean_o lean_object* l_Lean_Parser_Command_elab__rules_formatter___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_stx_quot(lean_object*); lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__13; -lean_object* l_Lean_Parser_Command_attrKind___closed__1; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_atom_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__4; @@ -259,7 +249,6 @@ lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, l lean_object* l_Lean_Parser_Command_macroTail_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_binary___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__10; -lean_object* l_Lean_Parser_Command_scoped___elambda__1___closed__6; lean_object* l_Lean_Parser_precedenceLit___closed__2; lean_object* l_Lean_Parser_Command_syntax_formatter___closed__8; lean_object* l_Lean_Parser_Syntax_binary_formatter___closed__5; @@ -285,7 +274,6 @@ lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__7; lean_object* l_Lean_Parser_Syntax_binary_formatter___closed__7; lean_object* l_Lean_Parser_Syntax_binary___closed__6; lean_object* l_Lean_Parser_Command_infixr; -lean_object* l_Lean_Parser_Command_attrKind; lean_object* l_Lean_Parser_Syntax_nonReserved___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_syntax_formatter___closed__4; @@ -309,7 +297,6 @@ lean_object* l_Lean_Parser_Command_syntax_formatter___closed__1; lean_object* l_Lean_Parser_Command_notationItem_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macroTailTactic_formatter___closed__4; lean_object* l___regBuiltin_Lean_Parser_Command_syntaxCat_formatter___closed__1; -lean_object* l_Lean_Parser_Command_attrKind_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_optPrio___closed__1; lean_object* l_Lean_Parser_maxSymbol___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat_formatter___closed__2; @@ -359,7 +346,6 @@ lean_object* l_Lean_Parser_Command_infixl___closed__2; lean_object* l_Lean_Parser_precedence___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_macroTailTactic_formatter___closed__1; -lean_object* l_Lean_Parser_Command_scoped___closed__5; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_parserKindPrio; lean_object* l_Lean_Parser_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -372,7 +358,6 @@ lean_object* l_Lean_Parser_Command_infix_formatter___closed__3; lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_parserKindPrio___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_elab__rules___closed__5; lean_object* l_Lean_Parser_Command_macro___closed__5; lean_object* l_Lean_Parser_optPrecedence_formatter___closed__1; @@ -384,7 +369,6 @@ lean_object* l_Lean_Parser_Command_syntax; lean_object* l_Lean_Parser_Command_infixl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_syntax___closed__5; -lean_object* l_Lean_Parser_Command_local___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Syntax___hyg_4____closed__2; extern lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__4; lean_object* l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_formatter(lean_object*); @@ -395,7 +379,6 @@ lean_object* l_Lean_Parser_Command_mixfix___closed__8; lean_object* l_Lean_Parser_Command_elab__rules___closed__3; lean_object* l_Lean_Parser_Command_optKindPrio_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_nonReserved___closed__3; -lean_object* l_Lean_Parser_Command_local___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Syntax___hyg_15____closed__1; @@ -406,7 +389,6 @@ lean_object* l_Lean_Parser_Command_elab_formatter___closed__13; lean_object* l_Lean_Parser_Command_elab; lean_object* l_Lean_Parser_Command_elab___closed__7; lean_object* l_Lean_Parser_Command_identPrec___closed__5; -extern lean_object* l_Lean_Parser_Command_attribute_formatter___closed__2; lean_object* l_Lean_Parser_Command_macroTailDefault___closed__5; lean_object* l_Lean_Parser_Command_notation___closed__6; lean_object* l_Lean_Parser_Command_infixl_formatter___closed__2; @@ -415,7 +397,6 @@ lean_object* l_Lean_Parser_maxSymbol_formatter___closed__3; lean_object* l_Lean_Parser_Command_macroArg___closed__3; lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macroTail___closed__2; -lean_object* l_Lean_Parser_Command_scoped___elambda__1___closed__5; lean_object* l_Lean_Parser_Syntax_atom_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Command_mixfix_formatter___closed__1; extern lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__6; @@ -443,13 +424,11 @@ lean_object* l_Lean_Parser_Command_syntaxCat_formatter___closed__2; lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Command_attrKind___closed__3; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_elab__rules_formatter___closed__2; extern lean_object* l_Lean_Parser_numLit___closed__2; lean_object* l_Lean_Parser_Command_macroArg___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_stx_quot_formatter___closed__1; -lean_object* l_Lean_Parser_Command_scoped___closed__4; lean_object* l_Lean_Parser_Command_macroTailCommand_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Command_syntax_formatter___closed__1; lean_object* l_Lean_Parser_precedence_formatter___closed__2; @@ -602,7 +581,6 @@ lean_object* l_Lean_Parser_Command_parserKind___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Command_scoped___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_macroTailCommand___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__6; @@ -677,7 +655,6 @@ lean_object* l_Lean_Parser_Command_infixl___closed__6; 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; -lean_object* l_Lean_Parser_Command_local; lean_object* l_Lean_Parser_maxSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat; lean_object* l_Lean_Parser_Command_macroTailDefault_formatter___closed__1; @@ -687,7 +664,6 @@ lean_object* l_Lean_Parser_Command_notation_formatter___closed__10; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__12; lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__3; -lean_object* l_Lean_Parser_Command_local_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_parserKind_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_notationItem___elambda__1(lean_object*, lean_object*); @@ -711,7 +687,6 @@ lean_object* l_Lean_Parser_Command_infix___elambda__1(lean_object*, lean_object* lean_object* l_Lean_Parser_Syntax_unary___closed__4; lean_object* l_Lean_Parser_precedence_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__1; -lean_object* l_Lean_Parser_Command_local___elambda__1___closed__4; extern lean_object* l_Lean_Parser_maxPrec; lean_object* l_Lean_Parser_Command_parserKind_formatter___closed__2; lean_object* l_Lean_Parser_Command_macroTailDefault_formatter___closed__2; @@ -736,7 +711,6 @@ lean_object* l_Lean_Parser_Command_parserPrio___elambda__1(lean_object*, lean_ob lean_object* l_Lean_Parser_Command_macroTail_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_parserKind_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_scoped___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__3; lean_object* l_Lean_Parser_Syntax_nonReserved___elambda__1___closed__5; @@ -777,7 +751,6 @@ lean_object* l_Lean_Parser_Syntax_binary___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_prefix___closed__2; lean_object* l_Lean_Parser_Command_macroArg___elambda__1___closed__1; -lean_object* l_Lean_Parser_Command_attrKind_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notationItem___closed__2; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_optKindPrio_formatter___closed__4; @@ -785,7 +758,6 @@ lean_object* l_Lean_Parser_Command_mixfixKind_formatter___closed__3; lean_object* l_Lean_Parser_Syntax_atom_formatter___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11167____closed__2; lean_object* l_Lean_Parser_maxSymbol___closed__3; -lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__11; lean_object* l_Lean_Parser_precedence_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__9; lean_object* l_Lean_Parser_Syntax_binary___elambda__1___closed__9; @@ -889,7 +861,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11515____closed__1; lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__3; -lean_object* l_Lean_Parser_Command_scoped_formatter___closed__2; lean_object* l_Lean_Parser_Command_postfix___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__6; lean_object* l_Lean_Parser_precedence; @@ -898,13 +869,11 @@ lean_object* l_Lean_Parser_Syntax_binary_formatter___closed__1; lean_object* l_Lean_Parser_Command_macroTailTactic___elambda__1___closed__1; lean_object* l_Lean_Parser_precedenceLit___closed__3; lean_object* l_Lean_Parser_Command_parserKind___elambda__1___closed__6; -lean_object* l_Lean_Parser_Command_local_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_quot_formatter___closed__3; lean_object* l_Lean_Parser_Syntax_nonReserved_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_atom___closed__1; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__4; -lean_object* l_Lean_Parser_Command_scoped_formatter___closed__1; lean_object* l_Lean_Parser_Command_macroTailDefault_formatter___closed__7; lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elab_formatter___closed__9; @@ -929,7 +898,6 @@ lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__9; lean_object* l_Lean_Parser_toggleInsideQuotFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__7; -lean_object* l_Lean_Parser_Command_attrKind_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__9; lean_object* l_Lean_Parser_maxSymbol___closed__1; @@ -955,7 +923,6 @@ lean_object* l_Lean_Parser_Command_infix___closed__5; lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__6; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; -lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__11; extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3741____closed__4; lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__9; @@ -970,11 +937,11 @@ lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__1; lean_object* l_Lean_Parser_precedence___closed__5; lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__8; +extern lean_object* l_Lean_Parser_Term_attrKind; lean_object* l_Lean_Parser_Command_parserPrio___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Syntax_binary_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_infixl___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_local___closed__3; lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__8; lean_object* l_Lean_Parser_Syntax_atom_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_postfix___closed__4; @@ -1016,6 +983,7 @@ lean_object* l___regBuiltin_Lean_Parser_Syntax_paren_formatter___closed__1; lean_object* l_Lean_Parser_Syntax_nonReserved___elambda__1___closed__10; lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__4; +extern lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_infixl_formatter___closed__1; @@ -1039,7 +1007,6 @@ lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_optKindPrio___closed__8; lean_object* l_Lean_Parser_Command_parserKind; lean_object* l_Lean_Parser_Command_macro__rules_formatter___closed__4; -lean_object* l_Lean_Parser_Command_local___closed__5; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__13; lean_object* l_Lean_Parser_precedence_formatter___closed__3; @@ -1068,7 +1035,6 @@ lean_object* l_Lean_Parser_Command_elab___closed__11; lean_object* l_Lean_Parser_Command_macroTail_parenthesizer___closed__3; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__7; -lean_object* l_Lean_Parser_Command_local_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Term_typeAscription___closed__1; lean_object* l_Lean_Parser_Command_parserKind___elambda__1(lean_object*, lean_object*); @@ -1102,7 +1068,6 @@ lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_infix_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailDefault_formatter___closed__5; lean_object* l_Lean_Parser_Command_mixfixKind_formatter___closed__2; -lean_object* l_Lean_Parser_Command_local_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_notation___closed__9; lean_object* l_Lean_Parser_Command_notation_formatter___closed__3; lean_object* l_Lean_Parser_Command_macro___closed__11; @@ -1124,7 +1089,6 @@ lean_object* l___regBuiltin_Lean_Parser_Command_elab_formatter___closed__1; lean_object* l_Lean_Parser_Command_infixl___closed__1; lean_object* l_Lean_Parser_Syntax_unary___closed__5; lean_object* l_Lean_Parser_Command_optKind___closed__4; -lean_object* l_Lean_Parser_Command_attrKind_formatter___closed__3; lean_object* l_Lean_Parser_Command_macroHead_formatter___closed__1; lean_object* l_Lean_Parser_Command_syntax___closed__11; lean_object* l_Lean_Parser_precedenceLit___elambda__1(lean_object*, lean_object*); @@ -1143,11 +1107,9 @@ lean_object* l_Lean_Parser_Command_mixfixKind___closed__6; lean_object* l___regBuiltin_Lean_Parser_Command_notation_formatter(lean_object*); lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__8; -lean_object* l_Lean_Parser_Command_scoped; lean_object* l_Lean_Parser_Command_macroTailDefault___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_prefix_formatter___closed__1; -lean_object* l_Lean_Parser_Command_local_formatter___closed__2; lean_object* l_Lean_Parser_Command_elabTail_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elab__rules___closed__4; extern lean_object* l_Lean_Parser_Term_matchAlt___closed__2; @@ -1181,7 +1143,6 @@ lean_object* l_Lean_Parser_Command_optKind; lean_object* l_Lean_Parser_precedence___closed__6; lean_object* l_Lean_Parser_Command_macro__rules_formatter___closed__1; lean_object* l_Lean_Parser_Command_parserPrio___closed__5; -lean_object* l_Lean_Parser_Command_scoped_formatter___closed__3; lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_notationItem___closed__5; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__2; @@ -1208,13 +1169,11 @@ lean_object* l_Lean_Parser_Command_macroTailCommand___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__12; lean_object* l_Lean_Parser_Command_syntax_formatter___closed__3; lean_object* l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__7; -lean_object* l_Lean_Parser_Command_scoped_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notationItem_parenthesizer___closed__3; lean_object* l_Lean_Parser_Syntax_binary_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_mkAntiquot___closed__6; lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__8; extern lean_object* l_Lean_Parser_Tactic_quotSeq___closed__1; lean_object* l_Lean_Parser_Command_parserPrio___closed__3; lean_object* l_Lean_Parser_Command_macroArg_parenthesizer___closed__2; @@ -1243,7 +1202,6 @@ lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macro__rules_formatter___closed__2; extern lean_object* l_Lean_Parser_Term_matchAlt_formatter___closed__1; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_optKindPrio_parenthesizer___closed__6; lean_object* l_Lean_Parser_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__6; @@ -1251,7 +1209,6 @@ lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_optKindPrio_formatter___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__4; lean_object* l_Lean_Parser_Command_macroTailTactic_formatter___closed__6; -lean_object* l_Lean_Parser_Command_scoped_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_atom_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_macroTailDefault___elambda__1___closed__2; @@ -1264,16 +1221,13 @@ lean_object* l_Lean_Parser_Syntax_binary_formatter___closed__3; lean_object* l_Lean_Parser_Syntax_nonReserved___closed__4; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__10; lean_object* l_Lean_Parser_Syntax_cat___closed__3; -lean_object* l_Lean_Parser_Command_local_formatter___closed__1; lean_object* l_Lean_Parser_Command_elab_formatter___closed__12; extern lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__5; -lean_object* l_Lean_Parser_Command_local___closed__2; extern lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_macroArg_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_optKind___closed__5; -lean_object* l_Lean_Parser_Command_local___closed__1; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__3; lean_object* l_Lean_Parser_Syntax_unary___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macro__rules___closed__2; @@ -1283,17 +1237,14 @@ lean_object* l_Lean_Parser_Command_parserPrio___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_syntax___closed__9; lean_object* l_Lean_Parser_Command_optKindPrio_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_elabTail_formatter___closed__6; -lean_object* l_Lean_Parser_Command_scoped___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Command_syntaxCat_formatter(lean_object*); lean_object* l_Lean_Parser_Command_notationItem___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macroTailDefault___closed__2; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_elab__rules_formatter___closed__1; lean_object* l_Lean_Parser_Command_prefix_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_scoped___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__14; lean_object* l_Lean_Parser_Syntax_atom___closed__2; -lean_object* l_Lean_Parser_Command_scoped___elambda__1___closed__1; lean_object* l_Lean_Parser_precedence___closed__2; extern lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_parserKind___closed__2; @@ -1322,7 +1273,6 @@ lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__2; lean_object* l_Lean_Parser_Syntax_cat_formatter___closed__4; lean_object* l_Lean_Parser_maxSymbol; lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__7; -lean_object* l_Lean_Parser_Command_scoped___elambda__1___closed__8; extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__4; lean_object* l_Lean_Parser_Command_infix_formatter___closed__1; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__4; @@ -1339,7 +1289,6 @@ lean_object* l_Lean_Parser_Command_elabTail___closed__5; lean_object* l___regBuiltin_Lean_Parser_Syntax_cat_formatter___closed__1; lean_object* l_Lean_Parser_Command_mixfixKind___closed__5; lean_object* l_Lean_Parser_Command_infix_formatter___closed__2; -lean_object* l_Lean_Parser_Command_attrKind_formatter___closed__1; lean_object* l_Lean_Parser_Syntax_atom___closed__5; lean_object* l_Lean_Parser_Command_macro___closed__4; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__1; @@ -1350,9 +1299,7 @@ lean_object* l_Lean_Parser_Command_mixfixKind_formatter___closed__7; lean_object* l_Lean_Parser_Command_elab___closed__8; lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__5; -lean_object* l_Lean_Parser_Command_attrKind___closed__4; lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_scoped___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__10; lean_object* l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__8; @@ -1390,7 +1337,6 @@ lean_object* l_Lean_Parser_Command_parserPrio___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__7; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__2; -lean_object* l_Lean_Parser_Command_attrKind_formatter___closed__2; lean_object* l_Lean_Parser_optPrecedence_parenthesizer___closed__1; lean_object* l_Lean_Parser_optPrecedence___closed__2; lean_object* l_Lean_Parser_precedence___closed__1; @@ -1402,7 +1348,6 @@ lean_object* l___regBuiltin_Lean_Parser_Command_macro_parenthesizer(lean_object* lean_object* l_Lean_Parser_Command_parserKindPrio_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_haveAssign_formatter___closed__2; extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_953____closed__19; -lean_object* l_Lean_Parser_Command_scoped___closed__3; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__3; extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__8; @@ -1426,8 +1371,6 @@ lean_object* l_Lean_Parser_Syntax_unary_formatter___closed__1; lean_object* l_Lean_Parser_Command_mixfix_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_prefix___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_attrKind_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Command_scoped_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_strLit___closed__2; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_mixfix___closed__7; @@ -1451,7 +1394,6 @@ lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailCommand___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__3; -lean_object* l_Lean_Parser_Command_scoped_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macro___closed__9; lean_object* l_Lean_Parser_Syntax_cat_parenthesizer___closed__4; @@ -4982,361 +4924,6 @@ x_1 = l_Lean_Parser_Command_optPrio___closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_scoped___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__3; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__1; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__3; -x_2 = l_Lean_Parser_Command_scoped___elambda__1___closed__2; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("scoped "); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__4; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__1; -x_2 = l_Lean_Parser_Command_scoped___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__11; -x_2 = l_Lean_Parser_Command_scoped___elambda__1___closed__7; -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_Command_scoped___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_Command_scoped___elambda__1___closed__3; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Command_scoped___elambda__1___closed__8; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__5; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__1; -x_2 = l_Lean_Parser_Command_scoped___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Command_scoped___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Command_scoped___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_scoped___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_scoped___closed__4; -x_2 = l_Lean_Parser_Command_scoped___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Command_scoped___closed__6; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("local"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__2; -x_2 = l_Lean_Parser_Command_local___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__1; -x_2 = l_Lean_Parser_Command_local___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_attribute___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_Command_local___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__11; -x_2 = l_Lean_Parser_Command_local___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; -} -} -lean_object* l_Lean_Parser_Command_local___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_Command_local___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Command_local___elambda__1___closed__6; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__7; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Command_local___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Command_local___closed__2; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_local___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_local___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_local___closed__3; -x_2 = l_Lean_Parser_Command_local___closed__4; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_local() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Command_local___closed__5; -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Command_scoped; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Command_local; -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_Command_attrKind___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_scoped___closed__5; -x_2 = l_Lean_Parser_Command_local___closed__4; -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_Command_attrKind___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_attrKind___closed__1; -x_2 = l_Lean_Parser_Command_attrKind___closed__2; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_attrKind___closed__3; -x_2 = l_Lean_Parser_optional(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Command_attrKind___closed__4; -return x_1; -} -} static lean_object* _init_l_Lean_Parser_Command_prefix___elambda__1___closed__1() { _start: { @@ -6389,7 +5976,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix___elambda__1___closed__10 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_attrKind; +x_1 = l_Lean_Parser_Term_attrKind; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); x_3 = l_Lean_Parser_Command_mixfix___elambda__1___closed__9; @@ -6498,7 +6085,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_attrKind; +x_1 = l_Lean_Parser_Term_attrKind; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_mixfix___closed__5; @@ -6579,131 +6166,6 @@ x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); return x_7; } } -static lean_object* _init_l_Lean_Parser_Command_scoped_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_attrInstance___elambda__1___closed__3; -x_2 = l_Lean_Parser_Command_scoped___elambda__1___closed__2; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_scoped_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); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Command_scoped_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Command_scoped_formatter___closed__1; -x_7 = l_Lean_Parser_Command_scoped_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; -} -} -static lean_object* _init_l_Lean_Parser_Command_local_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__1; -x_2 = l_Lean_Parser_Command_local___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Command_local_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_attribute_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); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Command_local_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Command_local_formatter___closed__1; -x_7 = l_Lean_Parser_Command_local_formatter___closed__2; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_scoped_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind_formatter___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_local_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_attrKind_formatter___closed__1; -x_2 = l_Lean_Parser_Command_attrKind_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; -} -} -lean_object* l_Lean_Parser_Command_attrKind_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; -x_6 = l_Lean_Parser_Command_attrKind_formatter___closed__3; -x_7 = l_Lean_Parser_optional_formatter(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} static lean_object* _init_l_Lean_Parser_Command_prefix_formatter___closed__1() { _start: { @@ -7162,16 +6624,8 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_mixfix_formatter___closed__9() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_attrKind_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_mixfix_formatter___closed__10() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_mixfix_formatter___closed__9; +x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__7; x_2 = l_Lean_Parser_Command_mixfix_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -7179,13 +6633,13 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_mixfix_formatter___closed__11() { +static lean_object* _init_l_Lean_Parser_Command_mixfix_formatter___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_mixfix___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_mixfix_formatter___closed__10; +x_3 = l_Lean_Parser_Command_mixfix_formatter___closed__9; 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); @@ -7198,7 +6652,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_mixfix_formatter___closed__1; -x_7 = l_Lean_Parser_Command_mixfix_formatter___closed__11; +x_7 = l_Lean_Parser_Command_mixfix_formatter___closed__10; 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; } @@ -7222,117 +6676,6 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_Command_scoped_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__2; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_scoped_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_scoped___elambda__1___closed__1; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -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_Command_scoped_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Command_scoped_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_scoped_parenthesizer___closed__2; -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; -} -} -static lean_object* _init_l_Lean_Parser_Command_local_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__3; -x_2 = 1; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_local_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_local___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -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_Command_local_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Command_local_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_local_parenthesizer___closed__2; -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; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_scoped_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_local_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_attrKind_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_attrKind_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Command_attrKind_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); -return x_3; -} -} -lean_object* l_Lean_Parser_Command_attrKind_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; -x_6 = l_Lean_Parser_Command_attrKind_parenthesizer___closed__3; -x_7 = l_Lean_Parser_optional_parenthesizer(x_6, x_1, x_2, x_3, x_4, x_5); -return x_7; -} -} static lean_object* _init_l_Lean_Parser_Command_prefix_parenthesizer___closed__1() { _start: { @@ -7729,16 +7072,8 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__9() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_attrKind_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__10() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__9; +x_1 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7; x_2 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -7746,13 +7081,13 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__11() { +static lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_mixfix___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__10; +x_3 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__9; 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); @@ -7765,7 +7100,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__11; +x_7 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__10; 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; } @@ -8282,7 +7617,7 @@ static lean_object* _init_l_Lean_Parser_Command_notation___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_attrKind; +x_1 = l_Lean_Parser_Term_attrKind; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); x_3 = l_Lean_Parser_Command_notation___elambda__1___closed__11; @@ -8388,7 +7723,7 @@ static lean_object* _init_l_Lean_Parser_Command_notation___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_attrKind; +x_1 = l_Lean_Parser_Term_attrKind; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_notation___closed__5; @@ -8660,7 +7995,7 @@ static lean_object* _init_l_Lean_Parser_Command_notation_formatter___closed__9() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_mixfix_formatter___closed__9; +x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__7; x_2 = l_Lean_Parser_Command_notation_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -8886,7 +8221,7 @@ static lean_object* _init_l_Lean_Parser_Command_notation_parenthesizer___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__9; +x_1 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7; x_2 = l_Lean_Parser_Command_notation_parenthesizer___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -10139,7 +9474,7 @@ static lean_object* _init_l_Lean_Parser_Command_syntax___elambda__1___closed__12 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_attrKind; +x_1 = l_Lean_Parser_Term_attrKind; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); x_3 = l_Lean_Parser_Command_syntax___elambda__1___closed__11; @@ -10257,7 +9592,7 @@ static lean_object* _init_l_Lean_Parser_Command_syntax___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_attrKind; +x_1 = l_Lean_Parser_Term_attrKind; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_syntax___closed__6; @@ -10667,7 +10002,7 @@ static lean_object* _init_l_Lean_Parser_Command_syntax_formatter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_mixfix_formatter___closed__9; +x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__7; x_2 = l_Lean_Parser_Command_syntax_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -10995,7 +10330,7 @@ static lean_object* _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__7 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__9; +x_1 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7; x_2 = l_Lean_Parser_Command_syntax_parenthesizer___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -16343,70 +15678,6 @@ l_Lean_Parser_Command_optPrio___closed__6 = _init_l_Lean_Parser_Command_optPrio_ lean_mark_persistent(l_Lean_Parser_Command_optPrio___closed__6); l_Lean_Parser_Command_optPrio = _init_l_Lean_Parser_Command_optPrio(); lean_mark_persistent(l_Lean_Parser_Command_optPrio); -l_Lean_Parser_Command_scoped___elambda__1___closed__1 = _init_l_Lean_Parser_Command_scoped___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___elambda__1___closed__1); -l_Lean_Parser_Command_scoped___elambda__1___closed__2 = _init_l_Lean_Parser_Command_scoped___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___elambda__1___closed__2); -l_Lean_Parser_Command_scoped___elambda__1___closed__3 = _init_l_Lean_Parser_Command_scoped___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___elambda__1___closed__3); -l_Lean_Parser_Command_scoped___elambda__1___closed__4 = _init_l_Lean_Parser_Command_scoped___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___elambda__1___closed__4); -l_Lean_Parser_Command_scoped___elambda__1___closed__5 = _init_l_Lean_Parser_Command_scoped___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___elambda__1___closed__5); -l_Lean_Parser_Command_scoped___elambda__1___closed__6 = _init_l_Lean_Parser_Command_scoped___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___elambda__1___closed__6); -l_Lean_Parser_Command_scoped___elambda__1___closed__7 = _init_l_Lean_Parser_Command_scoped___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___elambda__1___closed__7); -l_Lean_Parser_Command_scoped___elambda__1___closed__8 = _init_l_Lean_Parser_Command_scoped___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___elambda__1___closed__8); -l_Lean_Parser_Command_scoped___closed__1 = _init_l_Lean_Parser_Command_scoped___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___closed__1); -l_Lean_Parser_Command_scoped___closed__2 = _init_l_Lean_Parser_Command_scoped___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___closed__2); -l_Lean_Parser_Command_scoped___closed__3 = _init_l_Lean_Parser_Command_scoped___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___closed__3); -l_Lean_Parser_Command_scoped___closed__4 = _init_l_Lean_Parser_Command_scoped___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___closed__4); -l_Lean_Parser_Command_scoped___closed__5 = _init_l_Lean_Parser_Command_scoped___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___closed__5); -l_Lean_Parser_Command_scoped___closed__6 = _init_l_Lean_Parser_Command_scoped___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_scoped___closed__6); -l_Lean_Parser_Command_scoped = _init_l_Lean_Parser_Command_scoped(); -lean_mark_persistent(l_Lean_Parser_Command_scoped); -l_Lean_Parser_Command_local___elambda__1___closed__1 = _init_l_Lean_Parser_Command_local___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_local___elambda__1___closed__1); -l_Lean_Parser_Command_local___elambda__1___closed__2 = _init_l_Lean_Parser_Command_local___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_local___elambda__1___closed__2); -l_Lean_Parser_Command_local___elambda__1___closed__3 = _init_l_Lean_Parser_Command_local___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_local___elambda__1___closed__3); -l_Lean_Parser_Command_local___elambda__1___closed__4 = _init_l_Lean_Parser_Command_local___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_local___elambda__1___closed__4); -l_Lean_Parser_Command_local___elambda__1___closed__5 = _init_l_Lean_Parser_Command_local___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_local___elambda__1___closed__5); -l_Lean_Parser_Command_local___elambda__1___closed__6 = _init_l_Lean_Parser_Command_local___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_local___elambda__1___closed__6); -l_Lean_Parser_Command_local___closed__1 = _init_l_Lean_Parser_Command_local___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_local___closed__1); -l_Lean_Parser_Command_local___closed__2 = _init_l_Lean_Parser_Command_local___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_local___closed__2); -l_Lean_Parser_Command_local___closed__3 = _init_l_Lean_Parser_Command_local___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_local___closed__3); -l_Lean_Parser_Command_local___closed__4 = _init_l_Lean_Parser_Command_local___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_local___closed__4); -l_Lean_Parser_Command_local___closed__5 = _init_l_Lean_Parser_Command_local___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_local___closed__5); -l_Lean_Parser_Command_local = _init_l_Lean_Parser_Command_local(); -lean_mark_persistent(l_Lean_Parser_Command_local); -l_Lean_Parser_Command_attrKind___closed__1 = _init_l_Lean_Parser_Command_attrKind___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind___closed__1); -l_Lean_Parser_Command_attrKind___closed__2 = _init_l_Lean_Parser_Command_attrKind___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind___closed__2); -l_Lean_Parser_Command_attrKind___closed__3 = _init_l_Lean_Parser_Command_attrKind___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind___closed__3); -l_Lean_Parser_Command_attrKind___closed__4 = _init_l_Lean_Parser_Command_attrKind___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind___closed__4); -l_Lean_Parser_Command_attrKind = _init_l_Lean_Parser_Command_attrKind(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind); l_Lean_Parser_Command_prefix___elambda__1___closed__1 = _init_l_Lean_Parser_Command_prefix___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_prefix___elambda__1___closed__1); l_Lean_Parser_Command_prefix___elambda__1___closed__2 = _init_l_Lean_Parser_Command_prefix___elambda__1___closed__2(); @@ -16628,22 +15899,6 @@ lean_mark_persistent(l_Lean_Parser_Command_mixfix); res = l___regBuiltinParser_Lean_Parser_Command_mixfix(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Command_scoped_formatter___closed__1 = _init_l_Lean_Parser_Command_scoped_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_scoped_formatter___closed__1); -l_Lean_Parser_Command_scoped_formatter___closed__2 = _init_l_Lean_Parser_Command_scoped_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_scoped_formatter___closed__2); -l_Lean_Parser_Command_scoped_formatter___closed__3 = _init_l_Lean_Parser_Command_scoped_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_scoped_formatter___closed__3); -l_Lean_Parser_Command_local_formatter___closed__1 = _init_l_Lean_Parser_Command_local_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_local_formatter___closed__1); -l_Lean_Parser_Command_local_formatter___closed__2 = _init_l_Lean_Parser_Command_local_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_local_formatter___closed__2); -l_Lean_Parser_Command_attrKind_formatter___closed__1 = _init_l_Lean_Parser_Command_attrKind_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind_formatter___closed__1); -l_Lean_Parser_Command_attrKind_formatter___closed__2 = _init_l_Lean_Parser_Command_attrKind_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind_formatter___closed__2); -l_Lean_Parser_Command_attrKind_formatter___closed__3 = _init_l_Lean_Parser_Command_attrKind_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind_formatter___closed__3); l_Lean_Parser_Command_prefix_formatter___closed__1 = _init_l_Lean_Parser_Command_prefix_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_prefix_formatter___closed__1); l_Lean_Parser_Command_prefix_formatter___closed__2 = _init_l_Lean_Parser_Command_prefix_formatter___closed__2(); @@ -16714,27 +15969,11 @@ l_Lean_Parser_Command_mixfix_formatter___closed__9 = _init_l_Lean_Parser_Command lean_mark_persistent(l_Lean_Parser_Command_mixfix_formatter___closed__9); l_Lean_Parser_Command_mixfix_formatter___closed__10 = _init_l_Lean_Parser_Command_mixfix_formatter___closed__10(); lean_mark_persistent(l_Lean_Parser_Command_mixfix_formatter___closed__10); -l_Lean_Parser_Command_mixfix_formatter___closed__11 = _init_l_Lean_Parser_Command_mixfix_formatter___closed__11(); -lean_mark_persistent(l_Lean_Parser_Command_mixfix_formatter___closed__11); l___regBuiltin_Lean_Parser_Command_mixfix_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_mixfix_formatter___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_mixfix_formatter___closed__1); res = l___regBuiltin_Lean_Parser_Command_mixfix_formatter(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Command_scoped_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_scoped_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_scoped_parenthesizer___closed__1); -l_Lean_Parser_Command_scoped_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_scoped_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_scoped_parenthesizer___closed__2); -l_Lean_Parser_Command_local_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_local_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_local_parenthesizer___closed__1); -l_Lean_Parser_Command_local_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_local_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_local_parenthesizer___closed__2); -l_Lean_Parser_Command_attrKind_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_attrKind_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind_parenthesizer___closed__1); -l_Lean_Parser_Command_attrKind_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_attrKind_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind_parenthesizer___closed__2); -l_Lean_Parser_Command_attrKind_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_attrKind_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_attrKind_parenthesizer___closed__3); l_Lean_Parser_Command_prefix_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_prefix_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_prefix_parenthesizer___closed__1); l_Lean_Parser_Command_prefix_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_prefix_parenthesizer___closed__2(); @@ -16795,8 +16034,6 @@ l_Lean_Parser_Command_mixfix_parenthesizer___closed__9 = _init_l_Lean_Parser_Com lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__9); l_Lean_Parser_Command_mixfix_parenthesizer___closed__10 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__10(); lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__10); -l_Lean_Parser_Command_mixfix_parenthesizer___closed__11 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__11(); -lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__11); l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1); res = l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer(lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 5f9a3e9036..281d9b54a3 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -15,11 +15,14 @@ extern "C" { #endif lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__7; +lean_object* l_Lean_Parser_Term_scoped___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_panic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let_x2a_formatter___closed__1; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__6; lean_object* l_Lean_Parser_Level_quot_formatter___closed__6; lean_object* l_Lean_Parser_Level_quot___closed__5; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__10; +lean_object* l_Lean_Parser_Term_scoped___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___closed__7; lean_object* l_Lean_Parser_Term_basicFun_formatter___closed__3; lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__1; @@ -55,12 +58,14 @@ lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_match__syntax_parenthesizer___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__20; lean_object* l_Lean_Parser_Term_macroLastArg_formatter___closed__1; lean_object* l_Lean_Parser_Term_have_formatter___closed__2; 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_Term_let_x2a_formatter___closed__2; +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_funImplicitBinder_formatter___closed__3; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -93,6 +98,7 @@ lean_object* l_Lean_Parser_Term_byTactic_formatter___closed__4; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_unreachable___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__32; +lean_object* l_Lean_Parser_Term_local___closed__2; extern lean_object* l_Lean_Parser_Tactic_letrec___closed__12; lean_object* l_Lean_Parser_Term_proj_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letrec_formatter___closed__9; @@ -187,11 +193,11 @@ lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter___closed__5; lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_funImplicitBinder_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_ensureTypeOf_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__19; extern lean_object* l_Lean_Parser_Level_num_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_instBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_let_x21___closed__8; lean_object* l_Lean_Parser_Term_byTactic___closed__4; +lean_object* l_Lean_Parser_Term_attrKind_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_show; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__14; lean_object* l_Lean_Parser_Level_quot_parenthesizer___closed__2; @@ -244,6 +250,7 @@ lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_stateRefT; lean_object* l_Lean_Parser_Term_ellipsis___closed__3; lean_object* l_Lean_Parser_Term_letIdLhs___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_explicit___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_let_formatter___closed__1; lean_object* l_Lean_Parser_many(lean_object*); @@ -273,7 +280,6 @@ lean_object* l_Lean_Parser_Term_unreachable___closed__6; lean_object* l_Lean_Parser_Term_let_formatter___closed__7; lean_object* l_Lean_Parser_tacticParser_formatter___boxed(lean_object*); lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__5; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__9; lean_object* l_Lean_Parser_Term_haveAssign___closed__2; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_let_parenthesizer___closed__1; @@ -597,6 +603,7 @@ lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_nomatch_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ensureExpectedType___closed__8; lean_object* l_Lean_Parser_Term_optExprPrecedence_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_scoped_formatter___closed__3; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__11; extern lean_object* l_instReprSigma___rarg___closed__1; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__11; @@ -640,6 +647,7 @@ lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__3; lean_object* l_Lean_Parser_Term_hole___closed__2; lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__4; +lean_object* l_Lean_Parser_Term_local___closed__6; lean_object* l_Lean_Parser_Term_arrayRef___closed__4; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__2; lean_object* l_Lean_Parser_Term_parser_x21___closed__3; @@ -651,6 +659,7 @@ lean_object* l_Lean_Parser_Term_bracketedBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__7; lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_ensureTypeOf___closed__7; @@ -662,6 +671,7 @@ lean_object* l_Lean_Parser_Term_optIdent_formatter___closed__1; lean_object* l_Lean_Parser_Term_let_formatter___closed__2; 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_scoped___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_let_x2a_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_letrec(lean_object*); lean_object* l_Lean_Parser_Term_decide; @@ -691,7 +701,6 @@ lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__3; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letRecDecls_formatter___closed__1; lean_object* l_Lean_Parser_Term_optIdent___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__4; lean_object* l_Lean_Parser_optional_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -709,7 +718,6 @@ lean_object* l_Lean_Parser_Level_quot_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__4; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_syntheticHole___closed__7; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__17; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__7; extern lean_object* l_Lean_Parser_leadPrec___closed__1; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__8; @@ -735,6 +743,7 @@ lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__3; 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_scoped___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_show___closed__6; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3; @@ -745,11 +754,11 @@ lean_object* l___regBuiltin_Lean_Parser_Term_fun_parenthesizer(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__16; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_optType___closed__1; +lean_object* l_Lean_Parser_Term_local___closed__4; lean_object* l_Lean_Parser_Term_funBinder; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_match__syntax___closed__5; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__5; -lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_instBinder___closed__3; lean_object* l_Lean_Parser_Term_haveAssign_parenthesizer___closed__2; @@ -915,6 +924,7 @@ lean_object* l_Lean_Parser_Term_borrowed; extern lean_object* l_Lean_Parser_leadingNode_formatter___closed__1; lean_object* l_Lean_Parser_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_funBinder_quot___closed__1; +lean_object* l_Lean_Parser_Term_local___closed__1; lean_object* l_Lean_Parser_Term_let_x2a___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_paren___closed__7; lean_object* l_Lean_Parser_Term_unreachable___closed__1; @@ -938,7 +948,7 @@ lean_object* l_Lean_Parser_Term_explicit___closed__4; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_let_formatter(lean_object*); lean_object* l_Lean_Parser_Term_cdot___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__21; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__22; extern lean_object* l_Lean_Parser_fieldIdx___closed__4; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_assert___closed__8; @@ -1005,6 +1015,7 @@ lean_object* l_Lean_Parser_Term_implicitBinder_formatter(uint8_t, lean_object*, lean_object* l_Lean_Parser_Term_dbgTrace___closed__2; lean_object* l_Lean_Parser_Term_typeOf_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optional(lean_object*); extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; @@ -1055,6 +1066,7 @@ lean_object* l___regBuiltin_Lean_Parser_Level_quot_formatter(lean_object*); lean_object* l_Lean_Parser_Term_arrayRef___closed__5; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_parserOfStack_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_hole_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2; lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); @@ -1081,7 +1093,6 @@ lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_stateRefT_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__13; lean_object* l_Lean_Parser_Term_dbgTrace_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1; @@ -1144,7 +1155,6 @@ lean_object* l_Lean_Parser_Term_letDecl___closed__6; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_subst_formatter___closed__1; lean_object* l_Lean_Parser_Term_sort___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__23; lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__30; lean_object* l_Lean_Parser_Term_have_formatter___closed__7; @@ -1160,10 +1170,12 @@ lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_sort___closed__2; +lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_let___closed__1; lean_object* l_Lean_Parser_Term_panic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_let_x21___closed__3; lean_object* l_Lean_Parser_Term_matchDiscr_formatter___closed__7; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__3; lean_object* l_Lean_Parser_Term_typeAscription; lean_object* l_Lean_Parser_Term_simpleBinder___closed__4; lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__4; @@ -1313,12 +1325,12 @@ 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_attributes___closed__5; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__10; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__5; lean_object* l_Lean_Parser_Term_binderTactic; lean_object* l_Lean_Parser_Tactic_seq1___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__8; lean_object* l___regBuiltinParser_Lean_Parser_Term_forall(lean_object*); -lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_instBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdDecl_formatter___closed__2; lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1358,6 +1370,7 @@ lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter___closed__1; lean_object* l_Lean_Parser_Term_type_formatter___closed__4; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_match_formatter___closed__9; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__14; lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_haveAssign_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitUniv___closed__6; @@ -1371,6 +1384,7 @@ lean_object* l_Lean_Parser_Term_typeOf_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_sort; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_scoped_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_haveAssign___closed__7; lean_object* l_Lean_Parser_Term_byTactic_parenthesizer___closed__3; @@ -1441,7 +1455,6 @@ lean_object* l_Lean_Parser_Term_typeSpec; lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__3; lean_object* l_Lean_Parser_Term_haveDecl___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__1; lean_object* l_Lean_Parser_Term_letPatDecl___closed__5; lean_object* l_Lean_Parser_Term_anonymousCtor_formatter___closed__1; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__7; @@ -1459,6 +1472,7 @@ lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__2; lean_object* l_Lean_Parser_darrow_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_prop_formatter___closed__1; lean_object* l_Lean_Parser_Term_whereDecls___closed__7; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__18; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_nativeRefl___closed__6; @@ -1485,11 +1499,13 @@ lean_object* l_Lean_Parser_Term_structInst_formatter___closed__13; lean_object* l_Lean_Parser_Term_dynamicQuot_formatter___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_letrec___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__15; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_syntheticHole_formatter(lean_object*); lean_object* l_Lean_Parser_Term_paren___closed__4; extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__6; +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__9; lean_object* l_Lean_Parser_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_stateRefT___closed__8; lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__1; @@ -1499,6 +1515,7 @@ lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_panic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_byTactic_formatter___closed__3; lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_local; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_matchDiscr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__4; @@ -1514,7 +1531,6 @@ lean_object* l_Lean_Parser_Term_syntheticHole___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_type_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__5; lean_object* l_Lean_Parser_Term_instBinder_formatter___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_sort_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_unreachable___closed__5; @@ -1605,7 +1621,9 @@ 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; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter___closed__6; +lean_object* l_Lean_Parser_Term_scoped_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_let_x2a_formatter___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__7; lean_object* l_Lean_Parser_Term_type_formatter___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__24; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__8; @@ -1667,7 +1685,9 @@ lean_object* l_Lean_Parser_Term_assert_formatter___closed__4; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__34; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__17; lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__10; +lean_object* l_Lean_Parser_Term_scoped; lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fun___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__8; @@ -1711,7 +1731,6 @@ extern lean_object* l_Lean_Parser_Tactic_letrec___closed__1; lean_object* l_Lean_Parser_Term_quotedName___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstField_parenthesizer___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__11; lean_object* l_Lean_Parser_Term_let_x21___closed__7; lean_object* l___regBuiltin_Lean_Parser_Term_unreachable_formatter(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_letrec_parenthesizer(lean_object*); @@ -1730,6 +1749,7 @@ 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_scoped___closed__3; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_letIdDecl_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_dbgTrace_parenthesizer___closed__1; @@ -1752,11 +1772,12 @@ lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__4; 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; +lean_object* l_Lean_Parser_Term_scoped_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ensureExpectedType_formatter___closed__3; -lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_quot___closed__2; extern lean_object* l_Lean_Parser_maxPrec; +lean_object* l_Lean_Parser_Term_local_formatter___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__6; lean_object* l_Lean_Parser_Term_type_formatter___closed__2; @@ -1764,6 +1785,7 @@ lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_whereDecls_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_assert___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_local_formatter___closed__2; lean_object* l_Lean_Parser_Term_explicit_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1(lean_object*, lean_object*); @@ -1775,13 +1797,14 @@ extern lean_object* l_Lean_Parser_rawIdent; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_funBinder_quot(lean_object*); lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__9; lean_object* l_Lean_Parser_Term_structInstField_formatter___closed__5; lean_object* l_Lean_Parser_Term_fromTerm___closed__7; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__8; extern lean_object* l_Lean_Parser_optional___closed__3; lean_object* l_Lean_Parser_Term_dynamicQuot___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_decide_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_syntheticHole___closed__2; lean_object* l_Lean_Parser_Term_funImplicitBinder_parenthesizer___closed__2; @@ -1798,10 +1821,10 @@ lean_object* l_Lean_Parser_many1Indent_formatter(lean_object*, lean_object*, lea lean_object* l_Lean_Parser_pushNone___elambda__1___rarg(lean_object*); lean_object* l_Lean_Parser_Term_arrayRef___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__11; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__2; lean_object* l_Lean_Parser_Term_nativeDecide___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_anonymousCtor(lean_object*); extern lean_object* l_Lean_Parser_Tactic_let___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__8; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_depArrow___closed__1; lean_object* l_Lean_Parser_Tactic_quotSeq_parenthesizer___closed__6; @@ -1810,12 +1833,12 @@ lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_binderDefault___closed__2; lean_object* l_Lean_Parser_Term_fromTerm_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__11; lean_object* l_Lean_Parser_Term_structInstField___closed__1; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_forall_formatter___closed__7; lean_object* l_Lean_Parser_Term_sort_formatter___closed__3; +lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_attributes_formatter___closed__2; @@ -1856,7 +1879,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_prop_formatter(lean_object*); lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__9; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__15; lean_object* l_Lean_Parser_Term_nomatch_formatter___closed__1; lean_object* l_Lean_Parser_Term_haveDecl___closed__4; lean_object* l_Lean_Parser_Term_unreachable; @@ -1879,6 +1901,7 @@ lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__2; lean_object* l_Lean_Parser_Term_basicFun_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__6; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_char___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__2; @@ -1886,7 +1909,6 @@ lean_object* l_Lean_PrettyPrinter_Formatter_lookahead_formatter___boxed(lean_obj lean_object* l_Lean_Parser_parserOfStack(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let_x2a___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_formatter___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__18; extern lean_object* l_Lean_Parser_Tactic_suffices___closed__1; lean_object* l_Lean_Parser_Term_letDecl___closed__9; extern lean_object* l_Lean_Parser_Level_ident___closed__1; @@ -1938,6 +1960,7 @@ lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_ensureTypeOf_formatter___closed__5; lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__9; lean_object* l_Lean_Parser_Term_basicFun___closed__6; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__4; lean_object* l_Lean_Parser_Term_fun___closed__4; lean_object* l_Lean_Parser_Term_panic_formatter___closed__4; lean_object* l_Lean_Parser_Term_suffices___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*); @@ -1954,6 +1977,7 @@ lean_object* l_Lean_Parser_Term_namedPattern___closed__5; lean_object* l_Lean_Parser_Term_app_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder(uint8_t); lean_object* l_Lean_Parser_Term_type___closed__1; +lean_object* l_Lean_Parser_Term_attrKind___closed__4; lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_prop_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_borrowed_formatter___closed__1; @@ -1975,6 +1999,7 @@ lean_object* l_Lean_Parser_Term_app___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType; lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_match_formatter___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_let_x2a_formatter(lean_object*); lean_object* l_Lean_Parser_Term_proj_parenthesizer___closed__3; @@ -2014,7 +2039,6 @@ lean_object* l_Lean_Parser_Term_namedArgument___closed__2; extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_1076____closed__3; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letEqnsDecl; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__3; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_depArrow_formatter___closed__6; lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer___closed__3; @@ -2033,6 +2057,7 @@ lean_object* l_Lean_Parser_Term_forall_formatter___closed__8; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_letEqnsDecl___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_scoped_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_funBinder_quot; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__3; @@ -2074,8 +2099,10 @@ extern lean_object* l_Lean_Parser_Tactic_letrec___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_cdot(lean_object*); lean_object* l_Lean_Parser_Term_app_formatter___closed__4; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__12; +lean_object* l_Lean_Parser_Term_local_formatter___closed__3; lean_object* l_Lean_Parser_Term_forall; lean_object* l___regBuiltin_Lean_Parser_Term_typeOf_formatter(lean_object*); +lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__10; lean_object* l_Lean_Parser_Term_cdot_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_str(lean_object*); @@ -2086,7 +2113,6 @@ 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; lean_object* l_Lean_Parser_Term_match_formatter___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__24; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_parser_x21; @@ -2105,6 +2131,7 @@ lean_object* l_Lean_Parser_Term_typeAscription_formatter___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_let___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_nomatch(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__13; lean_object* l_Lean_Parser_Term_structInstField; lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_app_parenthesizer___closed__1; @@ -2202,7 +2229,6 @@ lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__7; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__3; lean_object* l_Lean_Parser_Term_binderType___closed__5; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__7; extern lean_object* l_rawNatLit___closed__7; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__8; @@ -2244,6 +2270,7 @@ lean_object* l_Lean_Parser_Term_emptyC___closed__8; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_binderIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__1; lean_object* l_Lean_Parser_Term_nomatch___closed__1; lean_object* l_Lean_Parser_Term_whereDecls_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__1; @@ -2256,6 +2283,7 @@ lean_object* l_Lean_Parser_Term_haveDecl_formatter(lean_object*, lean_object*, l lean_object* l_Lean_Parser_Term_ensureExpectedType___closed__3; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_match__syntax___closed__2; +lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_explicit___closed__3; lean_object* l_Lean_Parser_Term_binderType___closed__3; @@ -2288,7 +2316,6 @@ lean_object* l_Lean_Parser_Term_haveAssign___closed__6; lean_object* l_Lean_Parser_Term_arrayRef___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__20; -lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__13; lean_object* l_Lean_Parser_checkColGeFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedArgument___closed__8; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__4; @@ -2301,6 +2328,8 @@ extern lean_object* l_Lean_Parser_Tactic_match___closed__1; lean_object* l_Lean_Parser_Term_funBinder_quot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_quot___closed__2; lean_object* l_Lean_Parser_Term_sort___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__23; +lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__3; lean_object* l_Lean_Parser_Term_let___closed__7; lean_object* l_Lean_Parser_Term_let_x2a___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__4; @@ -2313,6 +2342,7 @@ lean_object* l_Lean_Parser_nodeWithAntiquot(lean_object*, lean_object*, lean_obj lean_object* l_Lean_Parser_Term_byTactic___closed__5; lean_object* l_Lean_Parser_Term_proj___closed__7; lean_object* l_Lean_Parser_Term_app_formatter___closed__1; +lean_object* l_Lean_Parser_Term_attrKind___closed__1; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__12; lean_object* l_Lean_Parser_Term_decide___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__2; @@ -2333,6 +2363,7 @@ lean_object* l_Lean_Parser_charLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter___closed__8; lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_ensureExpectedType(lean_object*); +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__6; lean_object* l_Lean_Parser_toggleInsideQuotFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_fromTerm___closed__4; @@ -2347,6 +2378,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_parserOfStack_formatter___boxed(lean lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_optExprPrecedence___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__2; +lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__5; lean_object* l_Lean_Parser_tacticParser_formatter(lean_object*); lean_object* l_Lean_Parser_Term_have___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__8; @@ -2358,6 +2390,7 @@ lean_object* l_Lean_Parser_Term_syntheticHole___elambda__1___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_inaccessible_formatter___closed__1; lean_object* l_Lean_Parser_Term_binderTactic___closed__2; extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____closed__10; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__21; lean_object* l_Lean_Parser_Term_match__syntax___closed__8; lean_object* l_Lean_Parser_Term_forall___closed__1; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__10; @@ -2410,8 +2443,10 @@ lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_explicit_formatter___closed__4; lean_object* l_Lean_Parser_Term_syntheticHole___closed__4; lean_object* l_Lean_Parser_Tactic_quotSeq___closed__3; +lean_object* l_Lean_Parser_Term_scoped___closed__5; lean_object* l_Lean_Parser_Term_instBinder___closed__1; lean_object* l_Lean_Parser_Term_bracketedBinder___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Tactic_suffices___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_scientific_formatter(lean_object*); extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13266____closed__2; @@ -2424,12 +2459,13 @@ lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3; extern lean_object* l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; +lean_object* l_Lean_Parser_Term_attrKind; lean_object* l_Lean_Parser_Term_sorry; lean_object* l_Lean_Parser_Term_arrow_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_panic___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tparser_x21___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__16; +lean_object* l_Lean_Parser_Term_attrKind___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal___closed__4; lean_object* l_Lean_Parser_Term_macroArg_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlt; @@ -2446,6 +2482,7 @@ lean_object* l_Lean_Parser_Term_emptyC_formatter___closed__3; lean_object* l_Lean_Parser_Term_type___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_haveDecl; lean_object* l_Lean_Parser_Term_ident_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__2; extern lean_object* l_Lean_Parser_Tactic_match___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_str_formatter___closed__1; lean_object* l_Lean_Parser_Term_prop___closed__1; @@ -2482,8 +2519,10 @@ lean_object* l_Lean_Parser_Term_structInstLVal___closed__1; lean_object* l_Lean_Parser_Term_have___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_haveDecl_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_local___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sorry_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__3; +lean_object* l_Lean_Parser_Term_scoped___closed__6; lean_object* l_Lean_Parser_Term_emptyC_formatter___closed__5; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_tupleTail___closed__6; @@ -2493,6 +2532,7 @@ lean_object* l_Lean_Parser_Term_type___elambda__1___closed__17; lean_object* l_Lean_Parser_Level_quot; lean_object* l_Lean_Parser_Term_anonymousCtor_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let_x2a___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_attrKind_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__4; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__10; @@ -2509,6 +2549,7 @@ lean_object* l_Lean_Parser_Term_letDecl_parenthesizer(lean_object*, lean_object* extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_pipeProj(lean_object*); lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__6; lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_funBinder_formatter___closed__1; lean_object* l_Lean_Parser_darrow___closed__1; @@ -2583,6 +2624,7 @@ lean_object* l_Lean_Parser_Term_inaccessible___closed__5; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__2; lean_object* l_Lean_Parser_Term_haveDecl_formatter___closed__3; lean_object* l_Lean_Parser_Term_let_x21___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_letDecl_formatter___closed__5; lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_macroDollarArg; @@ -2642,6 +2684,7 @@ lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__2; lean_object* l_Lean_Parser_Term_explicitBinder___closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_local_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_have___closed__1; lean_object* l_Lean_Parser_darrow___closed__2; @@ -2655,6 +2698,7 @@ lean_object* l_Lean_Parser_Term_let_x2a___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__1; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_hole_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_local_parenthesizer___closed__1; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2467____closed__1; lean_object* l_Lean_Parser_Term_ensureTypeOf_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__3; @@ -2775,13 +2819,14 @@ lean_object* l_Lean_Parser_Term_forall___closed__4; lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); 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_attrKind_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_match___closed__8; lean_object* l_Lean_Parser_Term_forall___closed__8; +lean_object* l_Lean_Parser_Term_local_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_fromTerm___closed__6; lean_object* l_Lean_Parser_Term_type; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_let_x2a; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__22; lean_object* l_Lean_Parser_Term_pipeProj___closed__2; lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__1; @@ -2850,6 +2895,7 @@ lean_object* l_Lean_Parser_Term_structInstField___closed__5; lean_object* l_Lean_Parser_Term_attrArg___closed__1; extern lean_object* l_Lean_Parser_optional_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchAlts___closed__2; +lean_object* l_Lean_Parser_Term_scoped___closed__4; lean_object* l_Lean_Parser_Term_letDecl_formatter___closed__7; lean_object* l_Lean_Parser_Term_matchDiscr_formatter___closed__2; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__7; @@ -2863,6 +2909,7 @@ lean_object* l_Lean_Parser_Term_haveAssign_formatter___closed__4; 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_Parser_Term_stateRefT_parenthesizer___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__12; lean_object* l___regBuiltin_Lean_Parser_Term_cdot_formatter(lean_object*); lean_object* l_Lean_Parser_Term_explicit_formatter___closed__3; lean_object* l_Lean_Parser_Term_assert_formatter___closed__5; @@ -2944,6 +2991,7 @@ lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__2; lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__10; +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_unreachable___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_funBinder___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_syntheticHole_parenthesizer(lean_object*); @@ -2989,6 +3037,7 @@ lean_object* l_Lean_Parser_Term_letIdLhs_formatter___closed__4; lean_object* l_Lean_Parser_Term_namedArgument___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_borrowed_formatter___closed__1; lean_object* l_Lean_Parser_Term_panic___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_funImplicitBinder_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__4; extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_953____closed__11; @@ -3026,6 +3075,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_match_formatter___closed__1; lean_object* l_Lean_Parser_Term_basicFun___closed__8; lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_instBinder___closed__4; +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__3; lean_object* l_Lean_Parser_rawIdent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_ensureExpectedType_formatter(lean_object*); lean_object* l_Lean_Parser_Term_tparser_x21_formatter___closed__4; @@ -3040,6 +3090,7 @@ lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__2; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_parser_x21___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__19; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__6; lean_object* l_Lean_Parser_Term_assert_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; @@ -3141,7 +3192,6 @@ extern lean_object* l_Lean_commandUnif__hint______Where___x7c_x2d_u22a2_____clos lean_object* l_Lean_Parser_Term_explicit; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__14; lean_object* l_Lean_Parser_Tactic_tacticSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__6; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__7; @@ -3155,7 +3205,6 @@ lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_namedPattern(lean_object*); lean_object* l_Lean_Parser_Term_attrInstance___closed__3; lean_object* l_Lean_Parser_Term_typeAscription___closed__6; -lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_haveDecl___closed__6; lean_object* l_Lean_Parser_Term_ensureTypeOf_parenthesizer___closed__5; @@ -3181,6 +3230,7 @@ lean_object* l_Lean_Parser_Term_optSemicolon_parenthesizer(lean_object*, lean_ob lean_object* l___regBuiltin_Lean_Parser_Term_parser_x21_formatter___closed__1; lean_object* l_Lean_Parser_unicodeSymbolFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstField___closed__3; +lean_object* l_Lean_Parser_Term_local___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_suffices_formatter___closed__1; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__3; lean_object* l_Lean_Parser_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3197,6 +3247,7 @@ extern lean_object* l_Lean_Parser_Level_max___elambda__1___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Term_match(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_depArrow(lean_object*); lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__11; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrayRef_formatter___closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__5; @@ -3265,10 +3316,10 @@ lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_hole(lean_object*); lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_local___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_fun_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchAlt_formatter___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__12; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_show_formatter___closed__2; @@ -3385,6 +3436,7 @@ lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nomatch___closed__3; lean_object* l_Lean_Parser_Term_dbgTrace___closed__3; +lean_object* l_Lean_Parser_Term_local_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_quotSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__27; @@ -3395,6 +3447,7 @@ lean_object* l_Lean_Parser_symbolFnAux(lean_object*, lean_object*, lean_object*, extern lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_match___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_scoped_formatter___closed__1; 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; @@ -3419,7 +3472,7 @@ lean_object* l_Lean_Parser_Term_syntheticHole_parenthesizer___closed__1; lean_object* l_Lean_Parser_checkWsBefore___elambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4_(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432_(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499_(lean_object*); lean_object* l_Lean_Parser_Term_parenSpecial_formatter___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_match_formatter(lean_object*); lean_object* l_Lean_Parser_Term_let_x2a___closed__6; @@ -3441,6 +3494,7 @@ lean_object* l_Lean_Parser_Term_dbgTrace___closed__7; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__9; extern lean_object* l_Lean_Parser_Tactic_let_x21___closed__3; lean_object* l_Lean_Parser_Term_letRecDecls___closed__2; +lean_object* l_Lean_Parser_Term_scoped___closed__1; lean_object* l_Lean_Parser_Term_letrec_formatter___closed__2; lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__7; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__4; @@ -3464,6 +3518,7 @@ 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_Parser_Term_match__syntax_formatter___closed__2; lean_object* l_Lean_Parser_Term_byTactic___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__16; lean_object* l___regBuiltin_Lean_Parser_Term_type_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__5; lean_object* l_Lean_Parser_Term_letDecl___closed__3; @@ -3503,7 +3558,6 @@ lean_object* l_Lean_PrettyPrinter_Formatter_withoutPosition_formatter(lean_objec lean_object* l_Lean_Parser_Term_depArrow___closed__7; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Term_paren(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__5; lean_object* l_Lean_Parser_Term_arrow___closed__3; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__12; @@ -3513,6 +3567,7 @@ lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1(lean_object*, lean_object lean_object* l___regBuiltin_Lean_Parser_Term_num_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_cdot_formatter___closed__5; lean_object* l_Lean_Parser_Term_binderTactic___closed__3; +lean_object* l_Lean_Parser_Term_scoped_formatter___closed__2; lean_object* l_Lean_Parser_Term_depArrow_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__10; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__6; @@ -3520,6 +3575,7 @@ lean_object* l_Lean_Parser_Term_sort___closed__7; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_pipeProj___closed__1; lean_object* l_Lean_Parser_Term_letIdLhs_formatter___closed__6; +lean_object* l_Lean_Parser_Term_attrKind___closed__3; lean_object* l_Lean_Parser_Term_ensureExpectedType___closed__6; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__9; lean_object* l___regBuiltin_Lean_Parser_Term_letrec_parenthesizer___closed__1; @@ -3537,7 +3593,6 @@ lean_object* l_Lean_Parser_Term_paren_formatter___closed__7; lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_num_formatter(lean_object*); lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__14; lean_object* l_Lean_Parser_Term_ensureExpectedType_formatter___closed__1; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__9; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__14; @@ -3546,6 +3601,7 @@ lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__7; lean_object* l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__7; extern lean_object* l_instReprChar___closed__1; +lean_object* l_Lean_Parser_Term_local___closed__5; lean_object* l_Lean_Parser_Level_quot_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_funBinder_quot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_letrec___closed__10; @@ -3567,6 +3623,7 @@ lean_object* l_Lean_Parser_Term_let_x2a___closed__1; lean_object* l_Lean_Parser_Term_instBinder___closed__6; extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__8; lean_object* l_Lean_Parser_Term_dynamicQuot___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__24; extern lean_object* l_Lean_Parser_strLit; lean_object* l_Lean_Parser_Term_matchAlts___closed__12; lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__4; @@ -3645,7 +3702,6 @@ lean_object* l_Lean_Parser_Term_app___closed__3; lean_object* l_Lean_Parser_Term_tparser_x21; lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__3; lean_object* l_Lean_Parser_Term_funBinder_quot_parenthesizer___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__20; lean_object* l_Lean_Parser_Term_letrec; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__5; @@ -3678,7 +3734,6 @@ extern lean_object* l_Lean_Parser_many1Indent___closed__2; lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_ellipsis_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_char_parenthesizer___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__10; lean_object* l___regBuiltin_Lean_Parser_Tactic_quotSeq_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____closed__18; lean_object* l_Lean_Parser_Term_syntheticHole; @@ -29088,6 +29143,405 @@ x_1 = l_Lean_Parser_Term_attrArg___closed__4; return x_1; } } +static lean_object* _init_l_Lean_Parser_Term_scoped___elambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("scoped"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Parser_Term_scoped___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_scoped___elambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_scoped___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_scoped___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_scoped___elambda__1___closed__1; +x_2 = l_Lean_Parser_Term_scoped___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_scoped___elambda__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("scoped "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___elambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_scoped___elambda__1___closed__5; +x_2 = l_String_trim(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___elambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_scoped___elambda__1___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___elambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_scoped___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_scoped___elambda__1___closed__7; +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_scoped___elambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__11; +x_2 = l_Lean_Parser_Term_scoped___elambda__1___closed__8; +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_scoped___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_scoped___elambda__1___closed__4; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +x_5 = l_Lean_Parser_Term_scoped___elambda__1___closed__9; +x_6 = 1; +x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); +return x_7; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_scoped___elambda__1___closed__6; +x_2 = l_Lean_Parser_symbolInfo(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_scoped___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_scoped___closed__1; +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___closed__3() { +_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_scoped___closed__2; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___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_scoped___elambda__1___closed__4; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Term_scoped___closed__3; +x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_scoped___elambda__1), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_scoped___closed__4; +x_2 = l_Lean_Parser_Term_scoped___closed__5; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Term_scoped___closed__6; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___elambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("local"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Parser_Term_local___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_local___elambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_local___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_local___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_local___elambda__1___closed__1; +x_2 = l_Lean_Parser_Term_local___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_local___elambda__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("local "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___elambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_local___elambda__1___closed__5; +x_2 = l_String_trim(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___elambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_local___elambda__1___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___elambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_local___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_local___elambda__1___closed__7; +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_local___elambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__11; +x_2 = l_Lean_Parser_Term_local___elambda__1___closed__8; +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_local___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_local___elambda__1___closed__4; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +x_5 = l_Lean_Parser_Term_local___elambda__1___closed__9; +x_6 = 1; +x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); +return x_7; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_local___elambda__1___closed__6; +x_2 = l_Lean_Parser_symbolInfo(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_local___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_local___closed__1; +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___closed__3() { +_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_local___closed__2; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___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_local___elambda__1___closed__4; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Term_local___closed__3; +x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_local___elambda__1), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_local___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_local___closed__4; +x_2 = l_Lean_Parser_Term_local___closed__5; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_local() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Term_local___closed__6; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Term_scoped; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Term_local; +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_attrKind___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_scoped___closed__5; +x_2 = l_Lean_Parser_Term_local___closed__5; +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_attrKind___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_attrKind___closed__1; +x_2 = l_Lean_Parser_Term_attrKind___closed__2; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_attrKind___closed__3; +x_2 = l_Lean_Parser_optional(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Term_attrKind___closed__4; +return x_1; +} +} static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__1() { _start: { @@ -29112,63 +29566,6 @@ return x_4; static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("scoped"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__3; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__4; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__5; -x_2 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__7; -x_2 = l_Lean_Parser_optional(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__9() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_attrArg; x_2 = lean_ctor_get(x_1, 0); @@ -29178,7 +29575,7 @@ x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__10() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -29190,32 +29587,32 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__11() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__9; -x_2 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__10; +x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__3; +x_2 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__12() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__11; +x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__5; x_2 = l_Lean_Parser_many(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__13() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__12; +x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__6; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); x_3 = l_Lean_Parser_rawIdent___closed__2; @@ -29225,38 +29622,38 @@ lean_closure_set(x_4, 1, x_2); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__14() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___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_attrInstance___elambda__1___closed__8; +x_1 = l_Lean_Parser_Term_attrKind; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__13; +x_3 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__7; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_4, 0, x_2); lean_closure_set(x_4, 1, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__15() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__14; -x_2 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__14; +x_2 = l_Lean_Parser_Term_attrInstance___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_attrInstance___elambda__1___closed__16() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_sepByScopeSuffixes___elambda__1___closed__11; -x_2 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__15; +x_2 = l_Lean_Parser_Term_attrInstance___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); @@ -29270,7 +29667,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_attrInstance___elambda__1___closed__2; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__16; +x_5 = l_Lean_Parser_Term_attrInstance___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; @@ -29283,7 +29680,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_obj x_1 = l_Lean_Parser_rawIdent; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__12; +x_3 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__6; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = l_Lean_Parser_andthenInfo(x_2, x_4); @@ -29294,7 +29691,7 @@ static lean_object* _init_l_Lean_Parser_Term_attrInstance___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_attrInstance___elambda__1___closed__8; +x_1 = l_Lean_Parser_Term_attrKind; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Term_attrInstance___closed__1; @@ -30310,6 +30707,141 @@ x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); return x_7; } } +static lean_object* _init_l_Lean_Parser_Term_scoped_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_scoped___elambda__1___closed__1; +x_2 = l_Lean_Parser_Term_scoped___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_scoped_formatter___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_scoped___elambda__1___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped_formatter___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_scoped___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_scoped_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); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_scoped_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_scoped_formatter___closed__1; +x_7 = l_Lean_Parser_Term_scoped_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; +} +} +static lean_object* _init_l_Lean_Parser_Term_local_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_local___elambda__1___closed__1; +x_2 = l_Lean_Parser_Term_local___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_local_formatter___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_local___elambda__1___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_local_formatter___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_local___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_local_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); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_local_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_local_formatter___closed__1; +x_7 = l_Lean_Parser_Term_local_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; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_scoped_formatter), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_local_formatter), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_formatter___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_attrKind_formatter___closed__1; +x_2 = l_Lean_Parser_Term_attrKind_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; +} +} +lean_object* l_Lean_Parser_Term_attrKind_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; +x_6 = l_Lean_Parser_Term_attrKind_formatter___closed__3; +x_7 = l_Lean_Parser_optional_formatter(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} static lean_object* _init_l_Lean_Parser_Term_attrArg_formatter___closed__1() { _start: { @@ -30350,36 +30882,46 @@ return x_5; static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrInstance___elambda__1___closed__3; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__4() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_attrArg_formatter), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__5() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____closed__16; +x_2 = l_Lean_Parser_Term_attrInstance_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_attrInstance_formatter___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_rawIdent_formatter), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__5; x_2 = l_Lean_Parser_Term_attrInstance_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -30387,21 +30929,11 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__7() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_rawIdent_formatter), 5, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_attrKind_formatter), 5, 0); return x_1; } } @@ -30420,22 +30952,10 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__9() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__3; -x_2 = l_Lean_Parser_Term_attrInstance_formatter___closed__8; -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_attrInstance_formatter___closed__10() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__14; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_attrInstance_formatter___closed__9; +x_3 = l_Lean_Parser_Term_attrInstance_formatter___closed__8; 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); @@ -30443,12 +30963,12 @@ lean_closure_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__11() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_attrInstance_formatter___closed__1; -x_2 = l_Lean_Parser_Term_attrInstance_formatter___closed__10; +x_2 = l_Lean_Parser_Term_attrInstance_formatter___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -30459,7 +30979,7 @@ lean_object* l_Lean_Parser_Term_attrInstance_formatter(lean_object* x_1, lean_ob _start: { lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Parser_Term_attrInstance_formatter___closed__11; +x_6 = l_Lean_Parser_Term_attrInstance_formatter___closed__10; x_7 = l_Lean_ppGroup_formatter(x_6, x_1, x_2, x_3, x_4, x_5); return x_7; } @@ -30743,6 +31263,117 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } +static lean_object* _init_l_Lean_Parser_Term_scoped_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_scoped___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Term_scoped_parenthesizer___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_scoped___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; +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_scoped_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_scoped_parenthesizer___closed__1; +x_7 = l_Lean_Parser_Term_scoped_parenthesizer___closed__2; +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; +} +} +static lean_object* _init_l_Lean_Parser_Term_local_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_local___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Term_local_parenthesizer___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_local___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; +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_local_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_local_parenthesizer___closed__1; +x_7 = l_Lean_Parser_Term_local_parenthesizer___closed__2; +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; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_scoped_parenthesizer), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_local_parenthesizer), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_attrKind_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); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_attrKind_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; +x_6 = l_Lean_Parser_Term_attrKind_parenthesizer___closed__3; +x_7 = l_Lean_Parser_optional_parenthesizer(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} static lean_object* _init_l_Lean_Parser_Term_attrArg_parenthesizer___closed__1() { _start: { @@ -30831,8 +31462,16 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7() { _start: { +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_attrKind_parenthesizer), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed__8() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__3; +x_1 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7; x_2 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -30840,13 +31479,13 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed__8() { +static lean_object* _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1121____closed__14; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7; +x_3 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__8; 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); @@ -30859,7 +31498,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__8; +x_7 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__9; 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; } @@ -42790,7 +43429,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -42800,7 +43439,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -42810,7 +43449,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -42820,7 +43459,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -42830,7 +43469,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__5() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -42840,7 +43479,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__6() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -42850,7 +43489,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__7() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -42860,7 +43499,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__8() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -42870,7 +43509,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__9() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -42880,7 +43519,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__10() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -42890,7 +43529,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__11() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -42900,7 +43539,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__12() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -42910,7 +43549,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__13() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__13() { _start: { lean_object* x_1; lean_object* x_2; @@ -42920,7 +43559,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__14() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -42930,7 +43569,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__15() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -42940,7 +43579,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__16() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -42950,7 +43589,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__17() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -42960,7 +43599,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__18() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -42970,7 +43609,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__19() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -42980,7 +43619,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__20() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -42990,7 +43629,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__21() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -43000,7 +43639,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__22() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -43010,7 +43649,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__23() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -43020,7 +43659,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__24() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -43030,13 +43669,13 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432_(lean_object* x_1) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Parser_parserAliasesRef; x_3 = l_Lean_Parser_Tactic_let___closed__4; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__1; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__1; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -43045,7 +43684,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__2; +x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__2; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -43054,7 +43693,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__3; +x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__3; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -43063,7 +43702,7 @@ x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); x_15 = l_Lean_Parser_Tactic_have___closed__6; -x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__4; +x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__4; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -43071,7 +43710,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__5; +x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__5; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -43079,7 +43718,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__6; +x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__6; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -43088,7 +43727,7 @@ x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); x_25 = l_Lean_Parser_Tactic_suffices___closed__6; -x_26 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__7; +x_26 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__7; x_27 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_26, x_24); if (lean_obj_tag(x_27) == 0) { @@ -43096,7 +43735,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); lean_dec(x_27); -x_29 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__8; +x_29 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__8; x_30 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_29, x_28); if (lean_obj_tag(x_30) == 0) { @@ -43104,7 +43743,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; x_31 = lean_ctor_get(x_30, 1); lean_inc(x_31); lean_dec(x_30); -x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__9; +x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__9; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_32, x_31); if (lean_obj_tag(x_33) == 0) { @@ -43113,7 +43752,7 @@ x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); x_35 = l_Lean_Parser_Tactic_letrec___closed__12; -x_36 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__10; +x_36 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__10; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) { @@ -43121,7 +43760,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__11; +x_39 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__11; x_40 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_35, x_39, x_38); if (lean_obj_tag(x_40) == 0) { @@ -43129,7 +43768,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; x_41 = lean_ctor_get(x_40, 1); lean_inc(x_41); lean_dec(x_40); -x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__12; +x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__12; x_43 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_35, x_42, x_41); if (lean_obj_tag(x_43) == 0) { @@ -43138,7 +43777,7 @@ x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec(x_43); x_45 = l_Lean_Parser_Tactic_inductionAlt___closed__6; -x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__13; +x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__13; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_45, x_46, x_44); if (lean_obj_tag(x_47) == 0) { @@ -43146,7 +43785,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__14; +x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__14; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_45, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -43154,7 +43793,7 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__15; +x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__15; x_53 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_45, x_52, x_51); if (lean_obj_tag(x_53) == 0) { @@ -43163,7 +43802,7 @@ x_54 = lean_ctor_get(x_53, 1); lean_inc(x_54); lean_dec(x_53); x_55 = l_Lean_Parser_Tactic_inductionAlt___closed__9; -x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__16; +x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__16; x_57 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_55, x_56, x_54); if (lean_obj_tag(x_57) == 0) { @@ -43171,7 +43810,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); lean_dec(x_57); -x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__17; +x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__17; x_60 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_55, x_59, x_58); if (lean_obj_tag(x_60) == 0) { @@ -43179,7 +43818,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec(x_60); -x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__18; +x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__18; x_63 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_55, x_62, x_61); if (lean_obj_tag(x_63) == 0) { @@ -43188,7 +43827,7 @@ x_64 = lean_ctor_get(x_63, 1); lean_inc(x_64); lean_dec(x_63); x_65 = l_Lean_Parser_Tactic_match___closed__6; -x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__19; +x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__19; x_67 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_65, x_66, x_64); if (lean_obj_tag(x_67) == 0) { @@ -43196,7 +43835,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); lean_dec(x_67); -x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__20; +x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__20; x_70 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_65, x_69, x_68); if (lean_obj_tag(x_70) == 0) { @@ -43204,7 +43843,7 @@ lean_object* x_71; lean_object* x_72; lean_object* x_73; x_71 = lean_ctor_get(x_70, 1); lean_inc(x_71); lean_dec(x_70); -x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__21; +x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__21; x_73 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_65, x_72, x_71); if (lean_obj_tag(x_73) == 0) { @@ -43213,7 +43852,7 @@ x_74 = lean_ctor_get(x_73, 1); lean_inc(x_74); lean_dec(x_73); x_75 = l_Lean_commandUnif__hint______Where___x7c_x2d_u22a2_____closed__8; -x_76 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__22; +x_76 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__22; x_77 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_75, x_76, x_74); if (lean_obj_tag(x_77) == 0) { @@ -43221,7 +43860,7 @@ lean_object* x_78; lean_object* x_79; lean_object* x_80; x_78 = lean_ctor_get(x_77, 1); lean_inc(x_78); lean_dec(x_77); -x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__23; +x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__23; x_80 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_75, x_79, x_78); if (lean_obj_tag(x_80) == 0) { @@ -43229,7 +43868,7 @@ lean_object* x_81; lean_object* x_82; lean_object* x_83; x_81 = lean_ctor_get(x_80, 1); lean_inc(x_81); lean_dec(x_80); -x_82 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__24; +x_82 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__24; x_83 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_75, x_82, x_81); return x_83; } @@ -47702,6 +48341,80 @@ l_Lean_Parser_Term_attrArg___closed__4 = _init_l_Lean_Parser_Term_attrArg___clos lean_mark_persistent(l_Lean_Parser_Term_attrArg___closed__4); l_Lean_Parser_Term_attrArg = _init_l_Lean_Parser_Term_attrArg(); lean_mark_persistent(l_Lean_Parser_Term_attrArg); +l_Lean_Parser_Term_scoped___elambda__1___closed__1 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__1); +l_Lean_Parser_Term_scoped___elambda__1___closed__2 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__2); +l_Lean_Parser_Term_scoped___elambda__1___closed__3 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__3); +l_Lean_Parser_Term_scoped___elambda__1___closed__4 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__4); +l_Lean_Parser_Term_scoped___elambda__1___closed__5 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__5); +l_Lean_Parser_Term_scoped___elambda__1___closed__6 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__6); +l_Lean_Parser_Term_scoped___elambda__1___closed__7 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__7); +l_Lean_Parser_Term_scoped___elambda__1___closed__8 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__8); +l_Lean_Parser_Term_scoped___elambda__1___closed__9 = _init_l_Lean_Parser_Term_scoped___elambda__1___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___elambda__1___closed__9); +l_Lean_Parser_Term_scoped___closed__1 = _init_l_Lean_Parser_Term_scoped___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___closed__1); +l_Lean_Parser_Term_scoped___closed__2 = _init_l_Lean_Parser_Term_scoped___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___closed__2); +l_Lean_Parser_Term_scoped___closed__3 = _init_l_Lean_Parser_Term_scoped___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___closed__3); +l_Lean_Parser_Term_scoped___closed__4 = _init_l_Lean_Parser_Term_scoped___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___closed__4); +l_Lean_Parser_Term_scoped___closed__5 = _init_l_Lean_Parser_Term_scoped___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___closed__5); +l_Lean_Parser_Term_scoped___closed__6 = _init_l_Lean_Parser_Term_scoped___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_scoped___closed__6); +l_Lean_Parser_Term_scoped = _init_l_Lean_Parser_Term_scoped(); +lean_mark_persistent(l_Lean_Parser_Term_scoped); +l_Lean_Parser_Term_local___elambda__1___closed__1 = _init_l_Lean_Parser_Term_local___elambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__1); +l_Lean_Parser_Term_local___elambda__1___closed__2 = _init_l_Lean_Parser_Term_local___elambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__2); +l_Lean_Parser_Term_local___elambda__1___closed__3 = _init_l_Lean_Parser_Term_local___elambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__3); +l_Lean_Parser_Term_local___elambda__1___closed__4 = _init_l_Lean_Parser_Term_local___elambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__4); +l_Lean_Parser_Term_local___elambda__1___closed__5 = _init_l_Lean_Parser_Term_local___elambda__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__5); +l_Lean_Parser_Term_local___elambda__1___closed__6 = _init_l_Lean_Parser_Term_local___elambda__1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__6); +l_Lean_Parser_Term_local___elambda__1___closed__7 = _init_l_Lean_Parser_Term_local___elambda__1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__7); +l_Lean_Parser_Term_local___elambda__1___closed__8 = _init_l_Lean_Parser_Term_local___elambda__1___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__8); +l_Lean_Parser_Term_local___elambda__1___closed__9 = _init_l_Lean_Parser_Term_local___elambda__1___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_local___elambda__1___closed__9); +l_Lean_Parser_Term_local___closed__1 = _init_l_Lean_Parser_Term_local___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_local___closed__1); +l_Lean_Parser_Term_local___closed__2 = _init_l_Lean_Parser_Term_local___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_local___closed__2); +l_Lean_Parser_Term_local___closed__3 = _init_l_Lean_Parser_Term_local___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_local___closed__3); +l_Lean_Parser_Term_local___closed__4 = _init_l_Lean_Parser_Term_local___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_local___closed__4); +l_Lean_Parser_Term_local___closed__5 = _init_l_Lean_Parser_Term_local___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_local___closed__5); +l_Lean_Parser_Term_local___closed__6 = _init_l_Lean_Parser_Term_local___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_local___closed__6); +l_Lean_Parser_Term_local = _init_l_Lean_Parser_Term_local(); +lean_mark_persistent(l_Lean_Parser_Term_local); +l_Lean_Parser_Term_attrKind___closed__1 = _init_l_Lean_Parser_Term_attrKind___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__1); +l_Lean_Parser_Term_attrKind___closed__2 = _init_l_Lean_Parser_Term_attrKind___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__2); +l_Lean_Parser_Term_attrKind___closed__3 = _init_l_Lean_Parser_Term_attrKind___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__3); +l_Lean_Parser_Term_attrKind___closed__4 = _init_l_Lean_Parser_Term_attrKind___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind___closed__4); +l_Lean_Parser_Term_attrKind = _init_l_Lean_Parser_Term_attrKind(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind); l_Lean_Parser_Term_attrInstance___elambda__1___closed__1 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__1); l_Lean_Parser_Term_attrInstance___elambda__1___closed__2 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__2(); @@ -47722,18 +48435,6 @@ l_Lean_Parser_Term_attrInstance___elambda__1___closed__9 = _init_l_Lean_Parser_T lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__9); l_Lean_Parser_Term_attrInstance___elambda__1___closed__10 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__10(); lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__10); -l_Lean_Parser_Term_attrInstance___elambda__1___closed__11 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__11); -l_Lean_Parser_Term_attrInstance___elambda__1___closed__12 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__12); -l_Lean_Parser_Term_attrInstance___elambda__1___closed__13 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__13(); -lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__13); -l_Lean_Parser_Term_attrInstance___elambda__1___closed__14 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__14(); -lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__14); -l_Lean_Parser_Term_attrInstance___elambda__1___closed__15 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__15(); -lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__15); -l_Lean_Parser_Term_attrInstance___elambda__1___closed__16 = _init_l_Lean_Parser_Term_attrInstance___elambda__1___closed__16(); -lean_mark_persistent(l_Lean_Parser_Term_attrInstance___elambda__1___closed__16); l_Lean_Parser_Term_attrInstance___closed__1 = _init_l_Lean_Parser_Term_attrInstance___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attrInstance___closed__1); l_Lean_Parser_Term_attrInstance___closed__2 = _init_l_Lean_Parser_Term_attrInstance___closed__2(); @@ -47843,6 +48544,24 @@ lean_mark_persistent(l_Lean_Parser_Term_letrec); res = l___regBuiltinParser_Lean_Parser_Term_letrec(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_scoped_formatter___closed__1 = _init_l_Lean_Parser_Term_scoped_formatter___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_scoped_formatter___closed__1); +l_Lean_Parser_Term_scoped_formatter___closed__2 = _init_l_Lean_Parser_Term_scoped_formatter___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_scoped_formatter___closed__2); +l_Lean_Parser_Term_scoped_formatter___closed__3 = _init_l_Lean_Parser_Term_scoped_formatter___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_scoped_formatter___closed__3); +l_Lean_Parser_Term_local_formatter___closed__1 = _init_l_Lean_Parser_Term_local_formatter___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_local_formatter___closed__1); +l_Lean_Parser_Term_local_formatter___closed__2 = _init_l_Lean_Parser_Term_local_formatter___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_local_formatter___closed__2); +l_Lean_Parser_Term_local_formatter___closed__3 = _init_l_Lean_Parser_Term_local_formatter___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_local_formatter___closed__3); +l_Lean_Parser_Term_attrKind_formatter___closed__1 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__1); +l_Lean_Parser_Term_attrKind_formatter___closed__2 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__2); +l_Lean_Parser_Term_attrKind_formatter___closed__3 = _init_l_Lean_Parser_Term_attrKind_formatter___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind_formatter___closed__3); l_Lean_Parser_Term_attrArg_formatter___closed__1 = _init_l_Lean_Parser_Term_attrArg_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attrArg_formatter___closed__1); l_Lean_Parser_Term_attrInstance_formatter___closed__1 = _init_l_Lean_Parser_Term_attrInstance_formatter___closed__1(); @@ -47865,8 +48584,6 @@ l_Lean_Parser_Term_attrInstance_formatter___closed__9 = _init_l_Lean_Parser_Term lean_mark_persistent(l_Lean_Parser_Term_attrInstance_formatter___closed__9); l_Lean_Parser_Term_attrInstance_formatter___closed__10 = _init_l_Lean_Parser_Term_attrInstance_formatter___closed__10(); lean_mark_persistent(l_Lean_Parser_Term_attrInstance_formatter___closed__10); -l_Lean_Parser_Term_attrInstance_formatter___closed__11 = _init_l_Lean_Parser_Term_attrInstance_formatter___closed__11(); -lean_mark_persistent(l_Lean_Parser_Term_attrInstance_formatter___closed__11); l_Lean_Parser_Term_attributes_formatter___closed__1 = _init_l_Lean_Parser_Term_attributes_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attributes_formatter___closed__1); l_Lean_Parser_Term_attributes_formatter___closed__2 = _init_l_Lean_Parser_Term_attributes_formatter___closed__2(); @@ -47912,6 +48629,20 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_letrec_formatter___closed__ res = l___regBuiltin_Lean_Parser_Term_letrec_formatter(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_scoped_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_scoped_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_scoped_parenthesizer___closed__1); +l_Lean_Parser_Term_scoped_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_scoped_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_scoped_parenthesizer___closed__2); +l_Lean_Parser_Term_local_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_local_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_local_parenthesizer___closed__1); +l_Lean_Parser_Term_local_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_local_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_local_parenthesizer___closed__2); +l_Lean_Parser_Term_attrKind_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__1); +l_Lean_Parser_Term_attrKind_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__2); +l_Lean_Parser_Term_attrKind_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_attrKind_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_attrKind_parenthesizer___closed__3); l_Lean_Parser_Term_attrArg_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_attrArg_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attrArg_parenthesizer___closed__1); l_Lean_Parser_Term_attrInstance_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed__1(); @@ -47930,6 +48661,8 @@ l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7 = _init_l_Lean_Parser_ lean_mark_persistent(l_Lean_Parser_Term_attrInstance_parenthesizer___closed__7); l_Lean_Parser_Term_attrInstance_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed__8(); lean_mark_persistent(l_Lean_Parser_Term_attrInstance_parenthesizer___closed__8); +l_Lean_Parser_Term_attrInstance_parenthesizer___closed__9 = _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_attrInstance_parenthesizer___closed__9); l_Lean_Parser_Term_attributes_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_attributes_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_attributes_parenthesizer___closed__1); l_Lean_Parser_Term_attributes_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_attributes_parenthesizer___closed__2(); @@ -49821,55 +50554,55 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_quot_parenthesizer___close res = l___regBuiltin_Lean_Parser_Level_quot_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__4); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__5(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__5); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__6(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__6); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__7(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__7); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__8(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__8); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__9(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__9); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__10(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__10); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__11(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__11); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__12(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__12); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__13(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__13); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__14(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__14); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__15(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__16(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__16); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__17(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__17); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__18(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__18); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__19(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__19); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__20(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__20); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__21(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__21); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__22(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__22); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__23(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__23); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__24(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432____closed__24); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3432_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__4); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__5(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__5); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__6(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__6); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__7(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__7); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__8(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__8); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__9(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__9); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__10(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__10); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__11(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__11); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__12(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__12); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__13(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__13); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__14(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__14); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__15(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__15); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__16(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__16); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__17(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__17); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__18(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__18); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__19(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__19); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__20(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__20); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__21(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__21); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__22(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__22); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__23(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__23); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__24(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499____closed__24); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3499_(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));