From 4bb07c1d47e141f8ce09632d8b0b06aaa31b5ddf Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Tue, 20 Oct 2020 09:47:48 +0200 Subject: [PATCH] chore: update stage0 --- stage0/src/Lean/Parser/Extension.lean | 19 +- stage0/src/Lean/ParserCompiler.lean | 17 +- stage0/stdlib/Lean/Elab/Match.c | 6 +- stage0/stdlib/Lean/Parser/Extension.c | 345 +- stage0/stdlib/Lean/ParserCompiler.c | 34810 +++++++++++++++------- stage0/stdlib/Lean/PrettyPrinter/Meta.c | 168 +- 6 files changed, 24542 insertions(+), 10823 deletions(-) diff --git a/stage0/src/Lean/Parser/Extension.lean b/stage0/src/Lean/Parser/Extension.lean index 9e2c5594b7..bfb1d96098 100644 --- a/stage0/src/Lean/Parser/Extension.lean +++ b/stage0/src/Lean/Parser/Extension.lean @@ -244,10 +244,25 @@ def runParserAttributeHooks (catName : Name) (declName : Name) (builtin : Bool) hooks ← parserAttributeHooks.get; hooks.forM fun hook => hook.postAdd catName declName builtin +@[builtinInit] +def registerRunBuiltinParserAttributeHooksAttribute : IO Unit := +registerBuiltinAttribute { + name := `runBuiltinParserAttributeHooks, + descr := "explicitly run hooks normally activated by builtin parser attributes", + add := fun decl args persistent => do + when args.hasArgs $ throwError ("invalid attribute 'runBuiltinParserAttributeHooks', unexpected argument"); + runParserAttributeHooks `Name.anonymous decl /- builtin -/ true +} + @[builtinInit] def registerRunParserAttributeHooksAttribute : IO Unit := -discard $ registerTagAttribute `runParserAttributeHooks "explicitly run hooks normally activated by parser attributes" fun declName => - liftM $ runParserAttributeHooks `Name.anonymous declName /- builtin -/ true +registerBuiltinAttribute { + name := `runParserAttributeHooks, + descr := "explicitly run hooks normally activated by parser attributes", + add := fun decl args persistent => do + when args.hasArgs $ throwError ("invalid attribute 'runParserAttributeHooks', unexpected argument"); + runParserAttributeHooks `Name.anonymous decl /- builtin -/ false +} private def ParserExtension.addImported (es : Array (Array ParserExtensionOleanEntry)) : ImportM ParserExtensionState := do ctx ← read; diff --git a/stage0/src/Lean/ParserCompiler.lean b/stage0/src/Lean/ParserCompiler.lean index 33f6aabf09..270cd7cc19 100644 --- a/stage0/src/Lean/ParserCompiler.lean +++ b/stage0/src/Lean/ParserCompiler.lean @@ -33,7 +33,7 @@ section open Meta -- translate an expression of type `Parser` into one of type `tyName` -partial def compileParserBody {α} (ctx : Context α) : Expr → MetaM Expr | e => do +partial def compileParserBody {α} (ctx : Context α) : Expr → optParam Bool false → MetaM Expr | e, force => do e ← whnfCore e; match e with | e@(Expr.lam _ _ _ _) => lambdaLetTelescope e fun xs b => compileParserBody b >>= mkLambdaFVars xs @@ -68,6 +68,8 @@ match e with -- synthesize a new `[combinatorAttr c]` some value ← pure cinfo.value? | throwError $ "don't know how to generate " ++ ctx.varName ++ " for non-definition '" ++ toString e ++ "'"; + unless ((env.getModuleIdxFor? c).isNone || force) $ + throwError $ "refusing to generate code for imported parser declaration '" ++ c ++ "'; use `@[runParserAttributeHooks]` on its definition instead."; value ← compileParserBody $ preprocessParserBody ctx value; ty ← forallTelescope cinfo.type fun params _ => params.foldrM (fun param ty => do @@ -96,12 +98,12 @@ end open Core /-- Compile the given declaration into a `[(builtin)runtimeAttr declName]` -/ -def compileParser {α} (ctx : Context α) (declName : Name) (builtin : Bool) : AttrM Unit := do +def compileParser {α} (ctx : Context α) (declName : Name) (builtin : Bool) (force := false) : AttrM Unit := do -- This will also tag the declaration as a `[combinatorParenthesizer declName]` in case the parser is used by other parsers. -- Note that simply having `[(builtin)Parenthesizer]` imply `[combinatorParenthesizer]` is not ideal since builtin -- attributes are active only in the next stage, while `[combinatorParenthesizer]` is active immediately (since we never -- call them at compile time but only reference them). -(Expr.const c' _ _) ← liftM $ (compileParserBody ctx (mkConst declName)).run' +(Expr.const c' _ _) ← liftM $ (compileParserBody ctx (mkConst declName) force).run' | unreachable!; -- We assume that for tagged parsers, the kind is equal to the declaration name. This is automatically true for parsers -- using `parser!` or `syntax`. @@ -110,14 +112,14 @@ addAttribute c' (if builtin then ctx.runtimeAttr.defn.builtinName else ctx.runti -- When called from `interpretParserDescr`, `declName` might not be a tagged parser, so ignore "not a valid syntax kind" failures <|> pure () -unsafe def interpretParser {α} (ctx : Context α) (constName : Name) : AttrM α := do +unsafe def interpretParser {α} (ctx : Context α) (constName : Name) (force := false) : AttrM α := do info ← getConstInfo constName; env ← getEnv; if info.type.isConstOf `Lean.Parser.TrailingParser || info.type.isConstOf `Lean.Parser.Parser then match ctx.runtimeAttr.getValues env constName with | p::_ => pure p | _ => do - compileParser ctx constName /- builtin -/ false; + compileParser ctx constName /- builtin -/ false force; evalConst α (constName ++ ctx.varName) else do d ← evalConst TrailingParserDescr constName; @@ -126,10 +128,11 @@ else do unsafe def registerParserCompiler {α} (ctx : Context α) : IO Unit := do Parser.registerParserAttributeHook { postAdd := fun catName declName builtin => + -- force compilation of parser even if imported, which can be the case with `[runBuiltinParserAttributeHooks]` if builtin then - compileParser ctx declName builtin + compileParser ctx declName builtin /- force -/ true else do - p ← interpretParser ctx declName; + p ← interpretParser ctx declName /- force -/ true; -- Register `p` without exporting it to the .olean file. It will be re-interpreted and registered -- when the parser is imported. env ← getEnv; diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index 2f72f89c30..d0eddd17e0 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -225,7 +225,6 @@ lean_object* l_Lean_throwError___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isAuxDiscrName___closed__2; extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_finalizePatternDecls___spec__2___closed__3; -extern lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_464____closed__18; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandNonAtomicDiscrs_x3f_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_toMessageData___closed__2; @@ -403,6 +402,7 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchOptType(lean_ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_throwInvalidPattern___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at_Lean_Elab_Term_CollectPatternVars_main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_expandMacros___main(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_throwInvalidPattern___rarg___closed__1; extern lean_object* l_Lean_choiceKind; @@ -8586,7 +8586,7 @@ if (x_13 == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; x_14 = lean_ctor_get(x_12, 0); -x_15 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1; +x_15 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1; x_16 = l_Lean_addMacroScope(x_14, x_15, x_10); x_17 = l_Lean_SourceInfo_inhabited___closed__1; x_18 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__3; @@ -8607,7 +8607,7 @@ x_22 = lean_ctor_get(x_12, 1); lean_inc(x_22); lean_inc(x_21); lean_dec(x_12); -x_23 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1; +x_23 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1; x_24 = l_Lean_addMacroScope(x_21, x_23, x_10); x_25 = l_Lean_SourceInfo_inhabited___closed__1; x_26 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__3; diff --git a/stage0/stdlib/Lean/Parser/Extension.c b/stage0/stdlib/Lean/Parser/Extension.c index 5a253ec7c9..8867180474 100644 --- a/stage0/stdlib/Lean/Parser/Extension.c +++ b/stage0/stdlib/Lean/Parser/Extension.c @@ -63,6 +63,7 @@ lean_object* l_Lean_Parser_parserExtension___elambda__1___boxed(lean_object*); lean_object* l_Lean_Parser_mkParserExtension___closed__4; lean_object* l_Lean_Parser_getTokenTable___boxed(lean_object*); lean_object* l___private_Lean_Parser_Extension_6__addTokenConfig___closed__1; +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__3; extern lean_object* l_Lean_registerInternalExceptionId___closed__2; lean_object* l_Lean_Parser_addParser(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_categoryParserFnRef; @@ -82,6 +83,7 @@ lean_object* l_Lean_Parser_nonReservedSymbolFn(lean_object*, lean_object*, lean_ lean_object* l___private_Lean_Parser_Extension_2__throwParserCategoryAlreadyDefined___rarg___closed__1; lean_object* l_Lean_Parser_mkParserState(lean_object*); lean_object* l_Lean_Parser_mkParserExtension___lambda__2(lean_object*); +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Extension_13__registerParserAttributeImplBuilder___closed__1; lean_object* l_Lean_Parser_declareBuiltinParser___closed__3; lean_object* l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Extension_3__addParserCategoryCore___spec__1___boxed(lean_object*, lean_object*); @@ -124,6 +126,7 @@ lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__3; lean_object* l_Lean_Parser_regBuiltinCommandParserAttr___closed__2; extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l___private_Lean_Parser_Extension_11__BuiltinParserAttribute_add___closed__1; +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__2; lean_object* l_Lean_Parser_parserExtension___closed__1; extern lean_object* l_Lean_nameLitKind; extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; @@ -135,9 +138,11 @@ lean_object* l_Lean_Parser_addParserCategory(lean_object*, lean_object*, uint8_t lean_object* l_Lean_Parser_many1Fn(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l___private_Lean_Parser_Extension_12__ParserAttribute_add___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension___closed__3; lean_object* l_Lean_Parser_parserExtension___elambda__2___boxed(lean_object*); uint8_t l_Std_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__2(lean_object*, size_t, lean_object*); +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_declareTrailingBuiltinParser___closed__1; lean_object* l_List_foldl___main___at___private_Lean_Parser_Extension_7__addTrailingParserAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserExtension___lambda__1(lean_object*); @@ -160,6 +165,7 @@ lean_object* l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1; lean_object* l_Lean_Parser_declareTrailingBuiltinParser___closed__2; lean_object* l_Lean_Parser_initCacheForInput(lean_object*); lean_object* l_Lean_Parser_addSyntaxNodeKind(lean_object*, lean_object*); +lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__2; extern lean_object* l_Lean_Parser_Trie_HasEmptyc___closed__1; lean_object* l_Lean_getConstInfo___at_Lean_KeyedDeclsAttribute_init___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); @@ -201,6 +207,7 @@ lean_object* l_Std_PersistentHashMap_findAux___main___at_Lean_Parser_getCategory lean_object* l_Std_RBNode_find___main___at_Lean_Parser_notFollowedByCategoryTokenFn___spec__1(lean_object*, lean_object*); lean_object* l_Lean_ofExcept___at___private_Lean_Parser_Extension_11__BuiltinParserAttribute_add___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameToExpr___closed__1; +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute(lean_object*); lean_object* l_Lean_Parser_regTermParserAttribute___closed__1; lean_object* l_Lean_Parser_mkParserExtension___closed__8; lean_object* l_Lean_Parser_whitespace___main(lean_object*, lean_object*); @@ -211,6 +218,7 @@ uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); lean_object* l_Lean_Parser_optionaInfo(lean_object*); lean_object* l_Std_PersistentHashMap_foldlMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_regCommandParserAttribute___closed__2; +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__2; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_nameLit; lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); @@ -227,7 +235,7 @@ lean_object* l_Lean_Parser_categoryParserFnImpl___closed__4; lean_object* l_Lean_Parser_notFollowedByCategoryToken(lean_object*); lean_object* l_Nat_repr(lean_object*); extern lean_object* l_Char_HasRepr___closed__1; -lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef(lean_object*); lean_object* l_Lean_Parser_registerBuiltinParserAttribute___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_foldlMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__2___boxed(lean_object*, lean_object*); @@ -237,6 +245,7 @@ lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* l_List_forM___main___at_Lean_Parser_runParserAttributeHooks___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Extension_10__ParserExtension_addImported___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Parser_getCategory___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1; lean_object* l_Lean_Parser_mkParserAttributeImpl___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind; @@ -264,6 +273,7 @@ lean_object* l_Lean_Parser_registerBuiltinParserAttribute(lean_object*, lean_obj lean_object* l_Lean_Parser_mkParserOfConstantAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_getCategory___boxed(lean_object*, lean_object*); lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__4; lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Extension_12__ParserAttribute_add___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_getParserPriority___closed__4; lean_object* l_IO_ofExcept___at___private_Lean_Parser_Extension_10__ParserExtension_addImported___spec__1___boxed(lean_object*, lean_object*); @@ -285,6 +295,7 @@ lean_object* l_Lean_Parser_addTrailingParser(lean_object*, lean_object*, lean_ob lean_object* l_List_forM___main___at___private_Lean_Parser_Extension_12__ParserAttribute_add___spec__1___closed__4; lean_object* l_Lean_ConstantInfo_type(lean_object*); lean_object* l_Lean_Parser_trailingNodeFn(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__4; lean_object* l_Lean_Parser_addBuiltinLeadingParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserExtension___closed__7; lean_object* l_Lean_Parser_regBuiltinTermParserAttr___closed__1; @@ -321,6 +332,7 @@ lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__2; lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Extension_3__addParserCategoryCore___spec__6(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4___closed__2; +uint8_t l_Lean_Syntax_hasArgs(lean_object*); lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_tryFn(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Parser_isParserCategory(lean_object*, lean_object*); @@ -345,6 +357,7 @@ extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_notFollowedByTermToken; extern lean_object* l_Lean_regularInitAttr; lean_object* l_Lean_Parser_getParserPriority(lean_object*); +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__1; lean_object* l_Lean_Parser_builtinSyntaxNodeKindSetRef; lean_object* l_Lean_Parser_registerBuiltinNodeKind(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserState___boxed(lean_object*); @@ -374,10 +387,10 @@ lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_ob lean_object* l_Lean_Parser_mkParserOfConstant(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Parser_addLeadingParser___spec__1(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; -lean_object* l_Lean_registerTagAttribute(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Extension_3__addParserCategoryCore___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Extension_11__BuiltinParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension___elambda__1(lean_object*); +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__3; lean_object* l___private_Lean_Parser_Extension_2__throwParserCategoryAlreadyDefined___rarg___closed__2; lean_object* l_Lean_Parser_getSyntaxNodeKinds(lean_object*); lean_object* l_Lean_Parser_addBuiltinTrailingParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -411,9 +424,10 @@ lean_object* l___private_Lean_Parser_Extension_9__ParserExtension_addEntry(lean_ lean_object* l___private_Lean_Parser_Extension_12__ParserAttribute_add(lean_object*); lean_object* l_Lean_registerAttributeImplBuilder(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); -lean_object* l_Functor_discard___at_Lean_Parser_registerRunParserAttributeHooksAttribute___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_getSyntaxNodeKinds___boxed(lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__5; +lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__3; lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__3; lean_object* l_Lean_Parser_regCommandParserAttribute(lean_object*); lean_object* l_IO_ofExcept___at_Lean_KeyedDeclsAttribute_declareBuiltin___spec__1(lean_object*, lean_object*); @@ -5272,62 +5286,7 @@ x_9 = l_Lean_Parser_runParserAttributeHooks(x_1, x_2, x_8, x_4, x_5, x_6, x_7); return x_9; } } -lean_object* l_Functor_discard___at_Lean_Parser_registerRunParserAttributeHooksAttribute___spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_apply_1(x_1, x_2); -if (lean_obj_tag(x_3) == 0) -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_3); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_3, 0); -lean_dec(x_5); -x_6 = lean_box(0); -lean_ctor_set(x_3, 0, x_6); -return x_3; -} -else -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_7 = lean_ctor_get(x_3, 1); -lean_inc(x_7); -lean_dec(x_3); -x_8 = lean_box(0); -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_8); -lean_ctor_set(x_9, 1, x_7); -return x_9; -} -} -else -{ -uint8_t x_10; -x_10 = !lean_is_exclusive(x_3); -if (x_10 == 0) -{ -return x_3; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_11 = lean_ctor_get(x_3, 0); -x_12 = lean_ctor_get(x_3, 1); -lean_inc(x_12); -lean_inc(x_11); -lean_dec(x_3); -x_13 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_13, 0, x_11); -lean_ctor_set(x_13, 1, x_12); -return x_13; -} -} -} -} -static lean_object* _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1() { +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5337,14 +5296,216 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__2() { _start: { -lean_object* x_6; uint8_t x_7; lean_object* x_8; -x_6 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1; -x_7 = 1; -x_8 = l_Lean_Parser_runParserAttributeHooks(x_6, x_1, x_7, x_2, x_3, x_4, x_5); -return x_8; +lean_object* x_1; +x_1 = lean_mk_string("invalid attribute 'runBuiltinParserAttributeHooks', unexpected argument"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__2; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__3; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; +x_8 = l_Lean_Syntax_hasArgs(x_2); +if (x_8 == 0) +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; +x_9 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1; +x_10 = 1; +x_11 = l_Lean_Parser_runParserAttributeHooks(x_9, x_1, x_10, x_4, x_5, x_6, x_7); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; +lean_dec(x_1); +x_12 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__4; +x_13 = l_Lean_throwError___at_Lean_addAttribute___spec__2___rarg(x_12, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +return x_13; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_13); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +} +} +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("runBuiltinParserAttributeHooks"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("explicitly run hooks normally activated by builtin parser attributes"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___boxed), 7, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__2; +x_2 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__3; +x_3 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__4; +x_4 = 0; +x_5 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__5; +x_3 = l_Lean_registerBuiltinAttribute(x_2, x_1); +return x_3; +} +} +lean_object* l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_3); +lean_dec(x_3); +x_9 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1(x_1, x_2, x_8, x_4, x_5, x_6, x_7); +lean_dec(x_2); +return x_9; +} +} +static lean_object* _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid attribute 'runParserAttributeHooks', unexpected argument"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; +x_8 = l_Lean_Syntax_hasArgs(x_2); +if (x_8 == 0) +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; +x_9 = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1; +x_10 = 0; +x_11 = l_Lean_Parser_runParserAttributeHooks(x_9, x_1, x_10, x_4, x_5, x_6, x_7); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; +lean_dec(x_1); +x_12 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__3; +x_13 = l_Lean_throwError___at_Lean_addAttribute___spec__2___rarg(x_12, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +return x_13; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_13); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} } } static lean_object* _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__1() { @@ -5377,22 +5538,24 @@ static lean_object* _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1), 5, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___boxed), 7, 0); return x_1; } } static lean_object* _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__2; x_2 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__3; x_3 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__4; -x_4 = lean_alloc_closure((void*)(l_Lean_registerTagAttribute), 4, 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; +x_4 = 0; +x_5 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; } } lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute(lean_object* x_1) { @@ -5400,10 +5563,21 @@ _start: { lean_object* x_2; lean_object* x_3; x_2 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__5; -x_3 = l_Functor_discard___at_Lean_Parser_registerRunParserAttributeHooksAttribute___spec__1(x_2, x_1); +x_3 = l_Lean_registerBuiltinAttribute(x_2, x_1); return x_3; } } +lean_object* l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_3); +lean_dec(x_3); +x_9 = l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1(x_1, x_2, x_8, x_4, x_5, x_6, x_7); +lean_dec(x_2); +return x_9; +} +} lean_object* l_IO_ofExcept___at___private_Lean_Parser_Extension_10__ParserExtension_addImported___spec__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -10271,8 +10445,33 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Parser_parserAttributeHooks = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_parserAttributeHooks); lean_dec_ref(res); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__1); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__2 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__2); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__3 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__3); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__4 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___lambda__1___closed__4); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__1 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__1(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__1); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__2 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__2(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__2); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__3 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__3(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__3); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__4 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__4(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__4); +l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__5 = _init_l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__5(); +lean_mark_persistent(l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute___closed__5); +res = l_Lean_Parser_registerRunBuiltinParserAttributeHooksAttribute(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1 = _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__1); +l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__2 = _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__2); +l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__3 = _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_registerRunParserAttributeHooksAttribute___lambda__1___closed__3); l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__1 = _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__1(); lean_mark_persistent(l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__1); l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__2 = _init_l_Lean_Parser_registerRunParserAttributeHooksAttribute___closed__2(); diff --git a/stage0/stdlib/Lean/ParserCompiler.c b/stage0/stdlib/Lean/ParserCompiler.c index cf3f5779ac..93ab9c736d 100644 --- a/stage0/stdlib/Lean/ParserCompiler.c +++ b/stage0/stdlib/Lean/ParserCompiler.c @@ -13,295 +13,503 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13(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_ParserCompiler_compileParserBody___main___rarg___closed__14; +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__57___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__53(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___closed__15; +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__74(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__64(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__31___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_ParserCompiler_compileParserBody___main___rarg___closed__18; +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__50(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__61(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__68___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72(lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferLambdaType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__7; +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__71(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); extern lean_object* l_Lean_nullKind; +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__66(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__11(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__49___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* lean_io_error_to_string(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47(lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_mdata(lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33(lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__65___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__53___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42(lean_object*); lean_object* l_Lean_Parser_registerParserAttributeHook(lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__58___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__17; extern lean_object* l_Std_HashMap_inhabited___closed__1; -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__75___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__62___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_interpretParser___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__8; +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__55(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_hasEval___rarg___closed__2; -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__43___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__57___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__53(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_Context_tyName___rarg(lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__4; +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56(lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__69___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_ParserCompiler_compileParserBody___main___rarg___lambda__73___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__2; -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__64___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__57(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__5; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65(lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); lean_object* l_Lean_ParserCompiler_registerParserCompiler___rarg___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg(lean_object*, size_t, lean_object*, lean_object*); lean_object* l_Lean_setEnv___at_Lean_registerTagAttribute___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_modifyState___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParser(lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__78___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26(lean_object*, 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_ParserCompiler_registerParserCompiler___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__1; -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__56(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__4; -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__53___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setMCtx___at___private_Lean_Meta_Basic_6__liftMkBindingM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_State_inhabited___closed__7; +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_interpretParser(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__76(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33___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_ParserCompiler_compileParserBody___main___rarg___lambda__37(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_addAttribute(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51(lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__41(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_ParserCompiler_compileParserBody___main___rarg___lambda__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__51(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_preprocessParserBody___rarg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__52___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__55(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_ParserCompiler_compileParserBody___main___rarg___lambda__50(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Meta_Basic_6__liftMkBindingM___rarg___closed__3; lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33(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_ParserCompiler_compileParserBody___main___rarg___closed__6; lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27(lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__76___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ofExcept___at_Lean_ParserCompiler_interpretParser___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__44(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20(lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_KeyedDeclsAttribute_init___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__74___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__60(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__67___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19___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_MessageData_toString(lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36(lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6(lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__67(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_Context_tyName(lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10(lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__29___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_ParserCompiler_compileParserBody___main___rarg___lambda__75(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__39(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_KernelException_toMessageData(lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__45(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29(lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32___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_ParserCompiler_compileParserBody___main___rarg___lambda__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__73(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__48(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_ParserCompiler_compileParserBody___main___rarg___lambda__54(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__31(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__71___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_preprocessParserBody___rarg(lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParser___rarg___closed__2; +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__62(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_ParserCompiler_CombinatorAttribute_getDeclFor(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_inferTypeRef; lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__2(lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__47(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15(lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__48(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___closed__19; +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__55___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__56___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__11___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__46(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_ParserCompiler_compileParserBody___main___rarg___lambda__51___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_eval_const(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_getValues___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__41(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__12(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__50___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__5; -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_dbg_to_string(lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__62(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__11; lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13(lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkSimpleThunk___closed__1; +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParser___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParser___rarg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__59___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Table_insert___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_let(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__49(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main(lean_object*); lean_object* l_Lean_ParserCompiler_preprocessParserBody(lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__52(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__77(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31(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_ParserCompiler_compileParserBody___main___rarg___lambda__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__26(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_ParserCompiler_compileParserBody___main___rarg___lambda__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15(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_ConstantInfo_type(lean_object*); lean_object* l_Lean_ConstantInfo_value_x3f(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__69(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79(lean_object*); lean_object* lean_expr_update_proj(lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__61___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__57(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_mod(size_t, size_t); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__69(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__19___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*); size_t lean_ptr_addr(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__62___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__55___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_ParserCompiler_compileParserBody___main___rarg___lambda__78___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ofExcept___at_Lean_ParserCompiler_interpretParser___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__65(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__50___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8(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_ParserCompiler_compileParserBody___main___rarg___lambda__72___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__64___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49(lean_object*); lean_object* l_Lean_Environment_addAndCompile(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_interpretParser___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26(lean_object*); +lean_object* l_Lean_ParserCompiler_interpretParser___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__60(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__46___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__60___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__43(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__78(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__63___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__71___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody(lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__44___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75(lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__74___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_ParserCompiler_compileParserBody___main___rarg___lambda__70(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ofExcept___at_Lean_ParserCompiler_interpretParser___spec__2(lean_object*); lean_object* l_Lean_ParserCompiler_Context_tyName___rarg___boxed(lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__72(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_throwError___at_Lean_addAttribute___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); lean_object* lean_expr_update_lambda(lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParser___rarg___closed__1; -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParser___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__43___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParser___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_mkBinding(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___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* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__46(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4(lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_registerParserCompiler___rarg(lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30(lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__64(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__60___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_ParserCompiler_compileParserBody___main___rarg___lambda__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfEasyCases___at___private_Lean_Meta_WHNF_0__Lean_Meta_whnfCoreImp___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__78(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_syntax_ident(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__11___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__70___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___closed__1; -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__76___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__42___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__69___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__63(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__43(lean_object*, 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_ParserCompiler_registerParserCompiler___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__76(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__46___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__54___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__71(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_inhabited___rarg___boxed(lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8(lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__59(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_registerParserCompiler(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__67(lean_object*, 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_ParserCompiler_compileParserBody___main___rarg___lambda__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__5; +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24(lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__66___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__47___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__77___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__68(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__41___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_ParserCompiler_compileParserBody___main___rarg___lambda__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1(lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__67___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_CoreM_inhabited___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__42(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; extern lean_object* l_Lean_Expr_ReplaceImpl_initCache; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__58(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__74(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77(lean_object*); lean_object* l_Lean_ParserCompiler_Context_tyName___rarg(lean_object* x_1) { _start: { @@ -1041,30 +1249,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -1073,30 +1282,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -1106,29 +1315,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -1138,23 +1347,23 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } @@ -1329,92 +1538,76 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_8; -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_2); -lean_ctor_set(x_8, 1, x_7); -return x_8; -} -} -static lean_object* _init_l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1() { -_start: +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___lambda__1___boxed), 7, 0); -return x_1; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_3); -x_13 = lean_nat_dec_lt(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; +lean_object* x_15; +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); +lean_dec(x_2); lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_11); -return x_14; +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; } else { -lean_object* x_15; uint8_t x_16; -x_15 = lean_array_get_size(x_4); -x_16 = lean_nat_dec_lt(x_5, x_15); -lean_dec(x_15); -if (x_16 == 0) +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) { -lean_object* x_17; +lean_object* x_18; +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); +lean_dec(x_2); lean_dec(x_1); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_6); -lean_ctor_set(x_17, 1, x_11); -return x_17; +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; } else { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = lean_array_fget(x_3, x_5); -x_19 = lean_array_fget(x_4, x_5); -x_20 = lean_unsigned_to_nat(1u); -x_21 = lean_nat_add(x_5, x_20); -lean_dec(x_5); +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_22) == 0) +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; @@ -1430,125 +1623,129 @@ lean_dec(x_27); if (x_30 == 0) { lean_object* x_31; -x_31 = l_Lean_mkApp(x_6, x_19); -x_5 = x_21; -x_6 = x_31; -x_11 = x_28; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); -x_5 = x_21; -x_6 = x_36; -x_11 = x_35; +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; -lean_dec(x_21); +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); +lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; -lean_dec(x_21); -lean_dec(x_19); +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); +lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_19); +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); +lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { -return x_22; +return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } @@ -1559,232 +1756,11 @@ lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compilePa _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___boxed), 11, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___boxed), 12, 0); return x_2; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; uint8_t x_14; -x_13 = lean_array_get_size(x_4); -x_14 = lean_nat_dec_lt(x_6, x_13); -lean_dec(x_13); -if (x_14 == 0) -{ -lean_object* x_15; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_7); -lean_ctor_set(x_15, 1, x_12); -return x_15; -} -else -{ -lean_object* x_16; uint8_t x_17; -x_16 = lean_array_get_size(x_5); -x_17 = lean_nat_dec_lt(x_6, x_16); -lean_dec(x_16); -if (x_17 == 0) -{ -lean_object* x_18; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_7); -lean_ctor_set(x_18, 1, x_12); -return x_18; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_19 = lean_array_fget(x_4, x_6); -x_20 = lean_array_fget(x_5, x_6); -x_21 = lean_unsigned_to_nat(1u); -x_22 = lean_nat_add(x_6, x_21); -lean_dec(x_6); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -x_25 = lean_ctor_get(x_23, 1); -lean_inc(x_25); -lean_dec(x_23); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_2); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); -x_30 = l_Lean_Expr_isConstOf(x_27, x_29); -lean_dec(x_29); -lean_dec(x_27); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = l_Lean_mkApp(x_7, x_20); -x_6 = x_22; -x_7 = x_31; -x_12 = x_28; -goto _start; -} -else -{ -lean_object* x_33; -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); -x_6 = x_22; -x_7 = x_36; -x_12 = x_35; -goto _start; -} -else -{ -uint8_t x_38; -lean_dec(x_22); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_22); -lean_dec(x_20); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) -{ -return x_26; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_22); -lean_dec(x_20); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) -{ -return x_23; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -} -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___rarg___boxed), 12, 0); -return x_2; -} -} -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -1916,223 +1892,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_3); -x_13 = lean_nat_dec_lt(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = lean_array_get_size(x_4); -x_16 = lean_nat_dec_lt(x_5, x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_6); -lean_ctor_set(x_17, 1, x_11); -return x_17; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = lean_array_fget(x_3, x_5); -x_19 = lean_array_fget(x_4, x_5); -x_20 = lean_unsigned_to_nat(1u); -x_21 = lean_nat_add(x_5, x_20); -lean_dec(x_5); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); -x_30 = l_Lean_Expr_isConstOf(x_27, x_29); -lean_dec(x_29); -lean_dec(x_27); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = l_Lean_mkApp(x_6, x_19); -x_5 = x_21; -x_6 = x_31; -x_11 = x_28; -goto _start; -} -else -{ -lean_object* x_33; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); -x_5 = x_21; -x_6 = x_36; -x_11 = x_35; -goto _start; -} -else -{ -uint8_t x_38; -lean_dec(x_21); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) -{ -return x_26; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) -{ -return x_22; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -} -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___rarg___boxed), 11, 0); -return x_2; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -2225,30 +1985,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -2257,30 +2018,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -2290,29 +2051,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -2322,23 +2083,390 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_2); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +} +static lean_object* _init_l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___lambda__1___boxed), 7, 0); +return x_1; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_get_size(x_4); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_array_fget(x_3, x_5); +x_19 = lean_array_fget(x_4, x_5); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_5, x_20); +lean_dec(x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_6, x_19); +x_5 = x_21; +x_6 = x_31; +x_11 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); +x_5 = x_21; +x_6 = x_37; +x_11 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) +{ +return x_22; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_22); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } @@ -2349,11 +2477,233 @@ lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compilePa _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___boxed), 12, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___boxed), 11, 0); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -2485,222 +2835,6 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_3); -x_13 = lean_nat_dec_lt(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = lean_array_get_size(x_4); -x_16 = lean_nat_dec_lt(x_5, x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_6); -lean_ctor_set(x_17, 1, x_11); -return x_17; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = lean_array_fget(x_3, x_5); -x_19 = lean_array_fget(x_4, x_5); -x_20 = lean_unsigned_to_nat(1u); -x_21 = lean_nat_add(x_5, x_20); -lean_dec(x_5); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); -x_30 = l_Lean_Expr_isConstOf(x_27, x_29); -lean_dec(x_29); -lean_dec(x_27); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = l_Lean_mkApp(x_6, x_19); -x_5 = x_21; -x_6 = x_31; -x_11 = x_28; -goto _start; -} -else -{ -lean_object* x_33; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); -x_5 = x_21; -x_6 = x_36; -x_11 = x_35; -goto _start; -} -else -{ -uint8_t x_38; -lean_dec(x_21); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) -{ -return x_26; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) -{ -return x_22; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -} -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___rarg___boxed), 11, 0); -return x_2; -} -} lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__11___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { @@ -2794,30 +2928,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -2826,30 +2961,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -2859,29 +2994,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -2891,23 +3026,23 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } @@ -3054,223 +3189,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_3); -x_13 = lean_nat_dec_lt(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = lean_array_get_size(x_4); -x_16 = lean_nat_dec_lt(x_5, x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_6); -lean_ctor_set(x_17, 1, x_11); -return x_17; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = lean_array_fget(x_3, x_5); -x_19 = lean_array_fget(x_4, x_5); -x_20 = lean_unsigned_to_nat(1u); -x_21 = lean_nat_add(x_5, x_20); -lean_dec(x_5); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); -x_30 = l_Lean_Expr_isConstOf(x_27, x_29); -lean_dec(x_29); -lean_dec(x_27); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = l_Lean_mkApp(x_6, x_19); -x_5 = x_21; -x_6 = x_31; -x_11 = x_28; -goto _start; -} -else -{ -lean_object* x_33; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); -x_5 = x_21; -x_6 = x_36; -x_11 = x_35; -goto _start; -} -else -{ -uint8_t x_38; -lean_dec(x_21); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) -{ -return x_26; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) -{ -return x_22; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -} -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg___boxed), 11, 0); -return x_2; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -3363,30 +3282,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -3395,30 +3315,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -3428,29 +3348,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -3460,38 +3380,38 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___rarg___boxed), 12, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg___boxed), 12, 0); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -3623,7 +3543,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; uint8_t x_13; @@ -3685,7 +3605,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); @@ -3714,30 +3634,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); x_5 = x_21; -x_6 = x_36; -x_11 = x_35; +x_6 = x_37; +x_11 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_21); lean_dec(x_10); lean_dec(x_9); @@ -3745,30 +3666,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_21); lean_dec(x_19); lean_dec(x_10); @@ -3777,29 +3698,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_21); lean_dec(x_19); lean_dec(x_10); @@ -3808,23 +3729,245 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) { return x_22; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___rarg___boxed), 11, 0); +return x_2; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } @@ -3835,11 +3978,3626 @@ lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compilePa _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg___boxed), 11, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg___boxed), 12, 0); return x_2; } } -lean_object* l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_get_size(x_4); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_array_fget(x_3, x_5); +x_19 = lean_array_fget(x_4, x_5); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_5, x_20); +lean_dec(x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_6, x_19); +x_5 = x_21; +x_6 = x_31; +x_11 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); +x_5 = x_21; +x_6 = x_37; +x_11 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) +{ +return x_22; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_22); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___rarg___boxed), 11, 0); +return x_2; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__28(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_get_size(x_4); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_array_fget(x_3, x_5); +x_19 = lean_array_fget(x_4, x_5); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_5, x_20); +lean_dec(x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_6, x_19); +x_5 = x_21; +x_6 = x_31; +x_11 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); +x_5 = x_21; +x_6 = x_37; +x_11 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) +{ +return x_22; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_22); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29___rarg___boxed), 11, 0); +return x_2; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_get_size(x_4); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_array_fget(x_3, x_5); +x_19 = lean_array_fget(x_4, x_5); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_5, x_20); +lean_dec(x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_6, x_19); +x_5 = x_21; +x_6 = x_31; +x_11 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); +x_5 = x_21; +x_6 = x_37; +x_11 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) +{ +return x_22; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_22); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36___rarg___boxed), 11, 0); +return x_2; +} +} +lean_object* l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__37(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -4050,7 +7808,7 @@ return x_73; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -4143,30 +7901,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -4175,30 +7934,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -4208,29 +7967,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -4240,38 +7999,38 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18___rarg___boxed), 12, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38___rarg___boxed), 12, 0); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__39(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -4403,223 +8162,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_3); -x_13 = lean_nat_dec_lt(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = lean_array_get_size(x_4); -x_16 = lean_nat_dec_lt(x_5, x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_6); -lean_ctor_set(x_17, 1, x_11); -return x_17; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = lean_array_fget(x_3, x_5); -x_19 = lean_array_fget(x_4, x_5); -x_20 = lean_unsigned_to_nat(1u); -x_21 = lean_nat_add(x_5, x_20); -lean_dec(x_5); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); -x_30 = l_Lean_Expr_isConstOf(x_27, x_29); -lean_dec(x_29); -lean_dec(x_27); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = l_Lean_mkApp(x_6, x_19); -x_5 = x_21; -x_6 = x_31; -x_11 = x_28; -goto _start; -} -else -{ -lean_object* x_33; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); -x_5 = x_21; -x_6 = x_36; -x_11 = x_35; -goto _start; -} -else -{ -uint8_t x_38; -lean_dec(x_21); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) -{ -return x_26; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) -{ -return x_22; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -} -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg___boxed), 11, 0); -return x_2; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -4712,30 +8255,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -4744,30 +8288,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -4777,29 +8321,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -4809,38 +8353,38 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___rarg___boxed), 12, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40___rarg___boxed), 12, 0); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__41(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -4972,223 +8516,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_3); -x_13 = lean_nat_dec_lt(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = lean_array_get_size(x_4); -x_16 = lean_nat_dec_lt(x_5, x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_6); -lean_ctor_set(x_17, 1, x_11); -return x_17; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = lean_array_fget(x_3, x_5); -x_19 = lean_array_fget(x_4, x_5); -x_20 = lean_unsigned_to_nat(1u); -x_21 = lean_nat_add(x_5, x_20); -lean_dec(x_5); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); -x_30 = l_Lean_Expr_isConstOf(x_27, x_29); -lean_dec(x_29); -lean_dec(x_27); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = l_Lean_mkApp(x_6, x_19); -x_5 = x_21; -x_6 = x_31; -x_11 = x_28; -goto _start; -} -else -{ -lean_object* x_33; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); -x_5 = x_21; -x_6 = x_36; -x_11 = x_35; -goto _start; -} -else -{ -uint8_t x_38; -lean_dec(x_21); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) -{ -return x_26; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) -{ -return x_22; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -} -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg___boxed), 11, 0); -return x_2; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -5281,30 +8609,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -5313,30 +8642,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -5346,29 +8675,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -5378,38 +8707,38 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___rarg___boxed), 12, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42___rarg___boxed), 12, 0); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__43(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -5541,7 +8870,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; uint8_t x_13; @@ -5603,7 +8932,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); @@ -5632,30 +8961,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); x_5 = x_21; -x_6 = x_36; -x_11 = x_35; +x_6 = x_37; +x_11 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_21); lean_dec(x_10); lean_dec(x_9); @@ -5663,30 +8993,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_21); lean_dec(x_19); lean_dec(x_10); @@ -5695,29 +9025,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_21); lean_dec(x_19); lean_dec(x_10); @@ -5726,38 +9056,38 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) { return x_22; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___rarg___boxed), 11, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44___rarg___boxed), 11, 0); return x_2; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -5850,30 +9180,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -5882,30 +9213,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -5915,29 +9246,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -5947,38 +9278,38 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27___rarg___boxed), 12, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45___rarg___boxed), 12, 0); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__28(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__46(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -6110,223 +9441,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_3); -x_13 = lean_nat_dec_lt(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = lean_array_get_size(x_4); -x_16 = lean_nat_dec_lt(x_5, x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_6); -lean_ctor_set(x_17, 1, x_11); -return x_17; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = lean_array_fget(x_3, x_5); -x_19 = lean_array_fget(x_4, x_5); -x_20 = lean_unsigned_to_nat(1u); -x_21 = lean_nat_add(x_5, x_20); -lean_dec(x_5); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); -x_30 = l_Lean_Expr_isConstOf(x_27, x_29); -lean_dec(x_29); -lean_dec(x_27); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = l_Lean_mkApp(x_6, x_19); -x_5 = x_21; -x_6 = x_31; -x_11 = x_28; -goto _start; -} -else -{ -lean_object* x_33; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); -x_5 = x_21; -x_6 = x_36; -x_11 = x_35; -goto _start; -} -else -{ -uint8_t x_38; -lean_dec(x_21); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) -{ -return x_26; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) -{ -return x_22; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -} -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__29___rarg___boxed), 11, 0); -return x_2; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -6419,30 +9534,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -6451,30 +9567,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -6484,29 +9600,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -6516,38 +9632,38 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__30___rarg___boxed), 12, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47___rarg___boxed), 12, 0); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__48(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -6679,223 +9795,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_get_size(x_3); -x_13 = lean_nat_dec_lt(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = lean_array_get_size(x_4); -x_16 = lean_nat_dec_lt(x_5, x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_1); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_6); -lean_ctor_set(x_17, 1, x_11); -return x_17; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_18 = lean_array_fget(x_3, x_5); -x_19 = lean_array_fget(x_4, x_5); -x_20 = lean_unsigned_to_nat(1u); -x_21 = lean_nat_add(x_5, x_20); -lean_dec(x_5); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); -x_30 = l_Lean_Expr_isConstOf(x_27, x_29); -lean_dec(x_29); -lean_dec(x_27); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = l_Lean_mkApp(x_6, x_19); -x_5 = x_21; -x_6 = x_31; -x_11 = x_28; -goto _start; -} -else -{ -lean_object* x_33; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); -x_5 = x_21; -x_6 = x_36; -x_11 = x_35; -goto _start; -} -else -{ -uint8_t x_38; -lean_dec(x_21); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) -{ -return x_33; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -else -{ -uint8_t x_42; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) -{ -return x_26; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) -{ -return x_22; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -} -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg___boxed), 11, 0); -return x_2; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -6988,30 +9888,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_8, x_9, x_10, x_11, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_7, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); x_6 = x_22; -x_7 = x_36; -x_12 = x_35; +x_7 = x_37; +x_12 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_22); lean_dec(x_11); lean_dec(x_10); @@ -7020,30 +9921,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -7053,29 +9954,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_22); lean_dec(x_20); lean_dec(x_11); @@ -7085,38 +9986,38 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_23); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) { return x_23; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_23, 0); -x_48 = lean_ctor_get(x_23, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_23); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___rarg___boxed), 12, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49___rarg___boxed), 12, 0); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__50(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -7248,7 +10149,7 @@ return x_37; } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; uint8_t x_13; @@ -7310,7 +10211,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec(x_22); -x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); @@ -7339,30 +10240,31 @@ goto _start; } else { -lean_object* x_33; +uint8_t x_33; lean_object* x_34; +x_33 = 0; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_1); -x_33 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_33) == 0) +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkApp(x_6, x_34); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); x_5 = x_21; -x_6 = x_36; -x_11 = x_35; +x_6 = x_37; +x_11 = x_36; goto _start; } else { -uint8_t x_38; +uint8_t x_39; lean_dec(x_21); lean_dec(x_10); lean_dec(x_9); @@ -7370,30 +10272,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_38 = !lean_is_exclusive(x_33); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) { -return x_33; +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_33, 0); -x_40 = lean_ctor_get(x_33, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_33); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; } } } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_21); lean_dec(x_19); lean_dec(x_10); @@ -7402,29 +10304,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_42 = !lean_is_exclusive(x_26); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) { return x_26; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_26, 0); -x_44 = lean_ctor_get(x_26, 1); +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); lean_inc(x_44); -lean_inc(x_43); lean_dec(x_26); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } else { -uint8_t x_46; +uint8_t x_47; lean_dec(x_21); lean_dec(x_19); lean_dec(x_10); @@ -7433,34 +10335,5150 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); -x_46 = !lean_is_exclusive(x_22); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) { return x_22; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_22, 0); -x_48 = lean_ctor_get(x_22, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); lean_dec(x_22); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } } } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35(lean_object* x_1) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___rarg___boxed), 11, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51___rarg___boxed), 11, 0); +return x_2; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__53(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__55(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__57(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_get_size(x_4); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_array_fget(x_3, x_5); +x_19 = lean_array_fget(x_4, x_5); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_5, x_20); +lean_dec(x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_6, x_19); +x_5 = x_21; +x_6 = x_31; +x_11 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); +x_5 = x_21; +x_6 = x_37; +x_11 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) +{ +return x_22; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_22); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58___rarg___boxed), 11, 0); +return x_2; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__60(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__62(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__64(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_get_size(x_4); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_array_fget(x_3, x_5); +x_19 = lean_array_fget(x_4, x_5); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_5, x_20); +lean_dec(x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_6, x_19); +x_5 = x_21; +x_6 = x_31; +x_11 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); +x_5 = x_21; +x_6 = x_37; +x_11 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) +{ +return x_22; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_22); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65___rarg___boxed), 11, 0); +return x_2; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__67(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__69(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__71(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_get_size(x_4); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_array_fget(x_3, x_5); +x_19 = lean_array_fget(x_4, x_5); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_5, x_20); +lean_dec(x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_6, x_19); +x_5 = x_21; +x_6 = x_31; +x_11 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); +x_5 = x_21; +x_6 = x_37; +x_11 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) +{ +return x_22; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_22); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72___rarg___boxed), 11, 0); +return x_2; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__74(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__76(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_4); +x_14 = lean_nat_dec_lt(x_6, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_get_size(x_5); +x_17 = lean_nat_dec_lt(x_6, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_array_fget(x_4, x_6); +x_20 = lean_array_fget(x_5, x_6); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_6, x_21); +lean_dec(x_6); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_19, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_24, x_2, x_8, x_9, x_10, x_11, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_7, x_20); +x_6 = x_22; +x_7 = x_31; +x_12 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_20, x_33, x_8, x_9, x_10, x_11, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_7, x_35); +x_6 = x_22; +x_7 = x_37; +x_12 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_23); +if (x_47 == 0) +{ +return x_23; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_23, 0); +x_49 = lean_ctor_get(x_23, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_23); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__78(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_array_fget(x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_18 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_17, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_3); +lean_inc(x_1); +x_21 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__3___lambda__1___boxed), 9, 2); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_3); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_22 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_19, x_21, x_8, x_9, x_10, x_11, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_mkSimpleThunk___closed__1; +x_26 = 0; +x_27 = l_Lean_mkForall(x_25, x_26, x_23, x_7); +x_5 = x_16; +x_6 = lean_box(0); +x_7 = x_27; +x_12 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_18); +if (x_33 == 0) +{ +return x_18; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_18, 0); +x_35 = lean_ctor_get(x_18, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_18); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_array_get_size(x_4); +x_16 = lean_nat_dec_lt(x_5, x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_6); +lean_ctor_set(x_17, 1, x_11); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_array_fget(x_3, x_5); +x_19 = lean_array_fget(x_4, x_5); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_5, x_20); +lean_dec(x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_18, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_26 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_23, x_25, x_7, x_8, x_9, x_10, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_30 = l_Lean_Expr_isConstOf(x_27, x_29); +lean_dec(x_29); +lean_dec(x_27); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_mkApp(x_6, x_19); +x_5 = x_21; +x_6 = x_31; +x_11 = x_28; +goto _start; +} +else +{ +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_34 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_19, x_33, x_7, x_8, x_9, x_10, x_28); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_mkApp(x_6, x_35); +x_5 = x_21; +x_6 = x_37; +x_11 = x_36; +goto _start; +} +else +{ +uint8_t x_39; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_22); +if (x_47 == 0) +{ +return x_22; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_22, 0); +x_49 = lean_ctor_get(x_22, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_22); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +} +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79___rarg___boxed), 11, 0); return x_2; } } @@ -7486,25 +15504,16 @@ x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Pars return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7513,29 +15522,20 @@ x_11 = lean_box(0); x_12 = l_Lean_mkConst(x_10, x_11); x_13 = lean_array_get_size(x_3); lean_inc(x_12); -x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7544,19 +15544,41 @@ x_11 = lean_box(0); x_12 = l_Lean_mkConst(x_10, x_11); x_13 = lean_array_get_size(x_3); lean_inc(x_12); -x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); return x_12; } } +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -7579,25 +15601,16 @@ x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Pars return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7606,69 +15619,39 @@ x_11 = lean_box(0); x_12 = l_Lean_mkConst(x_10, x_11); x_13 = lean_array_get_size(x_3); lean_inc(x_12); -x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); return x_12; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_9; -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_9 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_9) == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_9, 1); -lean_inc(x_11); -lean_dec(x_9); -x_12 = l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__17(x_2, x_10, x_4, x_5, x_6, x_7, x_11); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_12; -} -else -{ -uint8_t x_13; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -x_13 = !lean_is_exclusive(x_9); -if (x_13 == 0) -{ -return x_9; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_9, 0); -x_15 = lean_ctor_get(x_9, 1); -lean_inc(x_15); -lean_inc(x_14); -lean_dec(x_9); -x_16 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_16, 0, x_14); -lean_ctor_set(x_16, 1, x_15); -return x_16; +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; } } +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__17(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; } } lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -7693,25 +15676,16 @@ x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Pars return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7720,29 +15694,29 @@ x_11 = lean_box(0); x_12 = l_Lean_mkConst(x_10, x_11); x_13 = lean_array_get_size(x_3); lean_inc(x_12); -x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); return x_12; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7751,17 +15725,30 @@ x_11 = lean_box(0); x_12 = l_Lean_mkConst(x_10, x_11); x_13 = lean_array_get_size(x_3); lean_inc(x_12); -x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; lean_object* x_12; -x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); -return x_12; +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; } } lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__26(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -7817,25 +15804,16 @@ x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Pars return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7844,16 +15822,541 @@ x_11 = lean_box(0); x_12 = l_Lean_mkConst(x_10, x_11); x_13 = lean_array_get_size(x_3); lean_inc(x_12); -x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); return x_14; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__35(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__36(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_3, x_9, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__37(x_2, x_11, x_4, x_5, x_6, x_7, x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_13; +} +else +{ +uint8_t x_14; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_14 = !lean_is_exclusive(x_10); +if (x_14 == 0) +{ +return x_10; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_10, 0); +x_16 = lean_ctor_get(x_10, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_10); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__37(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__39(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__39(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__40(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__41(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__41(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__42(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__43(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__43(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__44(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__45(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__46(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__46(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__47(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__48(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__48(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__49(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__50(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__50(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__51(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__52(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__53(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__53(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__54(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__55(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__55(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__56(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__57(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__57(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__58(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__59(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__60(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__60(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__61(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__62(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__62(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__63(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__64(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__64(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__65(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__66(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__67(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__67(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__68(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__69(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__69(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__70(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__71(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__71(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__72(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__73(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__74(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__74(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__75(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__76(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__76(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77___rarg(x_1, x_2, x_5, x_5, x_3, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__77(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_ParserCompiler_Context_tyName___rarg(x_1); +x_11 = lean_box(0); +x_12 = l_Lean_mkConst(x_10, x_11); +x_13 = lean_array_get_size(x_3); +lean_inc(x_12); +x_14 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__78(x_2, x_3, x_12, x_3, x_13, lean_box(0), x_12, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__78(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79___rarg(x_1, x_4, x_4, x_2, x_11, x_3, x_6, x_7, x_8, x_9, x_10); return x_12; } } @@ -7944,19 +16447,19 @@ return x_2; static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__4; -x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__5; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("refusing to generate code for imported parser declaration '"); +return x_1; } } static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__11() { _start: { -lean_object* x_1; -x_1 = lean_mk_string(" for non-parser combinator '"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12() { @@ -7964,7 +16467,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__11; -x_2 = lean_alloc_ctor(2, 1, 0); +x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } @@ -7972,996 +16475,200 @@ return x_2; static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("'; use `@[runParserAttributeHooks]` on its definition instead."); +return x_1; +} +} +static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__14() { +_start: +{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_1 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__14; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16() { _start: { -lean_object* x_8; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_8 = l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfEasyCases___at___private_Lean_Meta_WHNF_0__Lean_Meta_whnfCoreImp___spec__4(x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_8) == 0) +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_mkAppStx___closed__4; +x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" for non-parser combinator '"); +return x_1; +} +} +static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__17; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__18; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: { lean_object* x_9; -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -switch (lean_obj_tag(x_9)) { +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_9 = l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfEasyCases___at___private_Lean_Meta_WHNF_0__Lean_Meta_whnfCoreImp___spec__4(x_2, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +switch (lean_obj_tag(x_10)) { case 0: { -lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_ctor_get(x_8, 1); -lean_inc(x_10); -lean_dec(x_8); -x_11 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_11) == 4) +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_12) == 4) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_22 = lean_ctor_get(x_11, 0); -lean_inc(x_22); -lean_dec(x_11); -x_23 = lean_unsigned_to_nat(0u); -x_24 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_23); -x_25 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_24); -x_26 = lean_mk_array(x_24, x_25); -x_27 = lean_unsigned_to_nat(1u); -x_28 = lean_nat_sub(x_24, x_27); -lean_dec(x_24); -lean_inc(x_9); -x_29 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_26, x_28); -x_30 = lean_st_ref_get(x_6, x_10); -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_23 = lean_ctor_get(x_12, 0); +lean_inc(x_23); +lean_dec(x_12); +x_24 = lean_unsigned_to_nat(0u); +x_25 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_24); +x_26 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_25); +x_27 = lean_mk_array(x_25, x_26); +x_28 = lean_unsigned_to_nat(1u); +x_29 = lean_nat_sub(x_25, x_28); +lean_dec(x_25); +lean_inc(x_10); +x_30 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_27, x_29); +x_31 = lean_st_ref_get(x_7, x_11); +x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); -lean_dec(x_30); -x_33 = lean_ctor_get(x_31, 0); +x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); lean_dec(x_31); -x_34 = lean_ctor_get(x_1, 0); +x_34 = lean_ctor_get(x_32, 0); lean_inc(x_34); -x_35 = lean_ctor_get(x_1, 2); +lean_dec(x_32); +x_35 = lean_ctor_get(x_1, 0); lean_inc(x_35); -x_36 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_35, x_33, x_22); -lean_dec(x_33); -if (lean_obj_tag(x_36) == 0) +x_36 = lean_ctor_get(x_1, 2); +lean_inc(x_36); +x_37 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_36, x_34, x_23); +if (lean_obj_tag(x_37) == 0) { -lean_object* x_37; lean_object* x_38; -lean_inc(x_34); -x_37 = l_Lean_Name_append___main(x_22, x_34); -lean_inc(x_22); -x_38 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_22, x_3, x_4, x_5, x_6, x_32); -if (lean_obj_tag(x_38) == 0) +lean_object* x_38; lean_object* x_39; +lean_inc(x_35); +x_38 = l_Lean_Name_append___main(x_23, x_35); +lean_inc(x_23); +x_39 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_23, x_4, x_5, x_6, x_7, x_33); +if (lean_obj_tag(x_39) == 0) { -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_39 = lean_ctor_get(x_38, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_38, 1); +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_40 = lean_ctor_get(x_39, 0); lean_inc(x_40); -lean_dec(x_38); -x_41 = l_Lean_ConstantInfo_type(x_39); -x_42 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); +x_41 = lean_ctor_get(x_39, 1); lean_inc(x_41); -x_43 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_41, x_42, x_3, x_4, x_5, x_6, x_40); -if (lean_obj_tag(x_43) == 0) +lean_dec(x_39); +x_42 = l_Lean_ConstantInfo_type(x_40); +x_43 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_42); +x_44 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_42, x_43, x_4, x_5, x_6, x_7, x_41); +if (lean_obj_tag(x_44) == 0) { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_134; uint8_t x_135; -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_218; uint8_t x_219; +x_45 = lean_ctor_get(x_44, 0); lean_inc(x_45); -lean_dec(x_43); -x_134 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_135 = l_Lean_Expr_isConstOf(x_44, x_134); -if (x_135 == 0) -{ -lean_object* x_136; uint8_t x_137; -x_136 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_137 = l_Lean_Expr_isConstOf(x_44, x_136); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); lean_dec(x_44); -if (x_137 == 0) +x_218 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_219 = l_Lean_Expr_isConstOf(x_45, x_218); +if (x_219 == 0) { -lean_object* x_138; -lean_dec(x_41); -lean_dec(x_39); -lean_dec(x_37); -lean_dec(x_35); -lean_dec(x_29); -lean_dec(x_22); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_138 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_45); -if (lean_obj_tag(x_138) == 0) +lean_object* x_220; uint8_t x_221; +x_220 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_221 = l_Lean_Expr_isConstOf(x_45, x_220); +lean_dec(x_45); +if (x_221 == 0) { -lean_object* x_139; -x_139 = lean_ctor_get(x_138, 0); -lean_inc(x_139); -if (lean_obj_tag(x_139) == 0) -{ -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_dec(x_1); -x_140 = lean_ctor_get(x_138, 1); -lean_inc(x_140); -lean_dec(x_138); -x_141 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_141, 0, x_34); -x_142 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_143 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_143, 0, x_142); -lean_ctor_set(x_143, 1, x_141); -x_144 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_145 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_145, 0, x_143); -lean_ctor_set(x_145, 1, x_144); -x_146 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_147 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_147, 0, x_146); -x_148 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_148, 0, x_147); -x_149 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_149, 0, x_145); -lean_ctor_set(x_149, 1, x_148); -x_150 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_151 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_151, 0, x_149); -lean_ctor_set(x_151, 1, x_150); -x_152 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_151, x_3, x_4, x_5, x_6, x_140); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_152; -} -else -{ -lean_object* x_153; lean_object* x_154; -lean_dec(x_34); -lean_dec(x_9); -x_153 = lean_ctor_get(x_138, 1); -lean_inc(x_153); -lean_dec(x_138); -x_154 = lean_ctor_get(x_139, 0); -lean_inc(x_154); -lean_dec(x_139); -x_2 = x_154; -x_7 = x_153; -goto _start; -} -} -else -{ -uint8_t x_156; -lean_dec(x_34); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_156 = !lean_is_exclusive(x_138); -if (x_156 == 0) -{ -return x_138; -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_157 = lean_ctor_get(x_138, 0); -x_158 = lean_ctor_get(x_138, 1); -lean_inc(x_158); -lean_inc(x_157); -lean_dec(x_138); -x_159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_159, 0, x_157); -lean_ctor_set(x_159, 1, x_158); -return x_159; -} -} -} -else -{ -lean_object* x_160; -x_160 = lean_box(0); -x_46 = x_160; -goto block_133; -} -} -else -{ -lean_object* x_161; -lean_dec(x_44); -x_161 = lean_box(0); -x_46 = x_161; -goto block_133; -} -block_133: -{ -lean_object* x_47; -lean_dec(x_46); -x_47 = l_Lean_ConstantInfo_value_x3f(x_39); -lean_dec(x_39); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -lean_dec(x_41); -lean_dec(x_37); -lean_dec(x_35); -lean_dec(x_29); -lean_dec(x_22); -lean_dec(x_1); -x_48 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_48, 0, x_34); -x_49 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_50 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_48); -x_51 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_52 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_52, 0, x_50); -lean_ctor_set(x_52, 1, x_51); -x_53 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_54 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_54, 0, x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -x_56 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_56, 0, x_52); -lean_ctor_set(x_56, 1, x_55); -x_57 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_58 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_57); -x_59 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_58, x_3, x_4, x_5, x_6, x_45); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_59; -} -else -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; -lean_dec(x_34); -lean_dec(x_9); -x_60 = lean_ctor_get(x_47, 0); -lean_inc(x_60); -lean_dec(x_47); -x_61 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_60); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_62 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_61, x_3, x_4, x_5, x_6, x_45); -if (lean_obj_tag(x_62) == 0) -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_63 = lean_ctor_get(x_62, 0); -lean_inc(x_63); -x_64 = lean_ctor_get(x_62, 1); -lean_inc(x_64); -lean_dec(x_62); -x_82 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_83 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__2___boxed), 9, 2); -lean_closure_set(x_83, 0, x_1); -lean_closure_set(x_83, 1, x_82); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_84 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_41, x_83, x_3, x_4, x_5, x_6, x_64); -if (lean_obj_tag(x_84) == 0) -{ -lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; uint8_t 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; -x_85 = lean_ctor_get(x_84, 0); -lean_inc(x_85); -x_86 = lean_ctor_get(x_84, 1); -lean_inc(x_86); -lean_dec(x_84); -x_87 = lean_box(0); -lean_inc(x_37); -x_88 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_88, 0, x_37); -lean_ctor_set(x_88, 1, x_87); -lean_ctor_set(x_88, 2, x_85); -x_89 = lean_box(0); -x_90 = 0; -x_91 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_91, 0, x_88); -lean_ctor_set(x_91, 1, x_63); -lean_ctor_set(x_91, 2, x_89); -lean_ctor_set_uint8(x_91, sizeof(void*)*3, x_90); -x_92 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_92, 0, x_91); -x_93 = lean_st_ref_get(x_6, x_86); -x_94 = lean_ctor_get(x_93, 0); -lean_inc(x_94); -x_95 = lean_ctor_get(x_93, 1); -lean_inc(x_95); -lean_dec(x_93); -x_96 = lean_ctor_get(x_94, 0); -lean_inc(x_96); -lean_dec(x_94); -x_97 = l_Lean_Environment_addAndCompile(x_96, x_87, x_92); -lean_dec(x_92); -if (lean_obj_tag(x_97) == 0) -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; -lean_dec(x_37); -lean_dec(x_35); -lean_dec(x_29); -lean_dec(x_22); -lean_dec(x_1); -x_98 = lean_ctor_get(x_97, 0); -lean_inc(x_98); -lean_dec(x_97); -x_99 = l_Lean_KernelException_toMessageData(x_98, x_87); -x_100 = lean_ctor_get(x_5, 3); -lean_inc(x_100); -x_101 = l_Lean_MessageData_toString(x_99, x_95); -if (lean_obj_tag(x_101) == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; -lean_dec(x_100); -x_102 = lean_ctor_get(x_101, 0); -lean_inc(x_102); -x_103 = lean_ctor_get(x_101, 1); -lean_inc(x_103); -lean_dec(x_101); -x_104 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_104, 0, x_102); -x_105 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_105, 0, x_104); -x_106 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_105, x_3, x_4, x_5, x_6, x_103); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_107 = !lean_is_exclusive(x_106); -if (x_107 == 0) -{ -return x_106; -} -else -{ -lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_108 = lean_ctor_get(x_106, 0); -x_109 = lean_ctor_get(x_106, 1); -lean_inc(x_109); -lean_inc(x_108); -lean_dec(x_106); -x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -return x_110; -} -} -else -{ -uint8_t x_111; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_111 = !lean_is_exclusive(x_101); -if (x_111 == 0) -{ -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_112 = lean_ctor_get(x_101, 0); -x_113 = lean_io_error_to_string(x_112); -x_114 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_114, 0, x_113); -x_115 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_115, 0, x_114); -x_116 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_116, 0, x_100); -lean_ctor_set(x_116, 1, x_115); -lean_ctor_set(x_101, 0, x_116); -return x_101; -} -else -{ -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; -x_117 = lean_ctor_get(x_101, 0); -x_118 = lean_ctor_get(x_101, 1); -lean_inc(x_118); -lean_inc(x_117); -lean_dec(x_101); -x_119 = lean_io_error_to_string(x_117); -x_120 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_120, 0, x_119); -x_121 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_121, 0, x_120); -x_122 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_122, 0, x_100); -lean_ctor_set(x_122, 1, x_121); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_122); -lean_ctor_set(x_123, 1, x_118); -return x_123; -} -} -} -else -{ -lean_object* x_124; -x_124 = lean_ctor_get(x_97, 0); -lean_inc(x_124); -lean_dec(x_97); -x_65 = x_124; -x_66 = x_95; -goto block_81; -} -} -else -{ -uint8_t x_125; -lean_dec(x_63); -lean_dec(x_37); -lean_dec(x_35); -lean_dec(x_29); -lean_dec(x_22); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_125 = !lean_is_exclusive(x_84); -if (x_125 == 0) -{ -return x_84; -} -else -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_126 = lean_ctor_get(x_84, 0); -x_127 = lean_ctor_get(x_84, 1); -lean_inc(x_127); -lean_inc(x_126); -lean_dec(x_84); -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_126); -lean_ctor_set(x_128, 1, x_127); -return x_128; -} -} -block_81: -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; -lean_inc(x_37); -x_67 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_35, x_65, x_22, x_37); -x_68 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_67, x_3, x_4, x_5, x_6, x_66); -x_69 = lean_ctor_get(x_68, 1); -lean_inc(x_69); -lean_dec(x_68); -x_70 = lean_box(0); -x_71 = l_Lean_mkConst(x_37, x_70); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_71); -x_72 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_71, x_3, x_4, x_5, x_6, x_69); -if (lean_obj_tag(x_72) == 0) -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_73 = lean_ctor_get(x_72, 0); -lean_inc(x_73); -x_74 = lean_ctor_get(x_72, 1); -lean_inc(x_74); -lean_dec(x_72); -x_75 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__1___boxed), 11, 4); -lean_closure_set(x_75, 0, x_1); -lean_closure_set(x_75, 1, x_42); -lean_closure_set(x_75, 2, x_29); -lean_closure_set(x_75, 3, x_71); -x_76 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_73, x_75, x_3, x_4, x_5, x_6, x_74); -return x_76; -} -else -{ -uint8_t x_77; -lean_dec(x_71); -lean_dec(x_29); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_77 = !lean_is_exclusive(x_72); -if (x_77 == 0) -{ -return x_72; -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = lean_ctor_get(x_72, 0); -x_79 = lean_ctor_get(x_72, 1); -lean_inc(x_79); -lean_inc(x_78); -lean_dec(x_72); -x_80 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_80, 0, x_78); -lean_ctor_set(x_80, 1, x_79); -return x_80; -} -} -} -} -else -{ -uint8_t x_129; -lean_dec(x_41); -lean_dec(x_37); -lean_dec(x_35); -lean_dec(x_29); -lean_dec(x_22); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_129 = !lean_is_exclusive(x_62); -if (x_129 == 0) -{ -return x_62; -} -else -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_130 = lean_ctor_get(x_62, 0); -x_131 = lean_ctor_get(x_62, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_62); -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_130); -lean_ctor_set(x_132, 1, x_131); -return x_132; -} -} -} -} -} -else -{ -uint8_t x_162; -lean_dec(x_41); -lean_dec(x_39); -lean_dec(x_37); -lean_dec(x_35); -lean_dec(x_34); -lean_dec(x_29); -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_162 = !lean_is_exclusive(x_43); -if (x_162 == 0) -{ -return x_43; -} -else -{ -lean_object* x_163; lean_object* x_164; lean_object* x_165; -x_163 = lean_ctor_get(x_43, 0); -x_164 = lean_ctor_get(x_43, 1); -lean_inc(x_164); -lean_inc(x_163); -lean_dec(x_43); -x_165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_165, 0, x_163); -lean_ctor_set(x_165, 1, x_164); -return x_165; -} -} -} -else -{ -uint8_t x_166; -lean_dec(x_37); -lean_dec(x_35); -lean_dec(x_34); -lean_dec(x_29); -lean_dec(x_22); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_166 = !lean_is_exclusive(x_38); -if (x_166 == 0) -{ -return x_38; -} -else -{ -lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_167 = lean_ctor_get(x_38, 0); -x_168 = lean_ctor_get(x_38, 1); -lean_inc(x_168); -lean_inc(x_167); +lean_object* x_222; +lean_dec(x_42); +lean_dec(x_40); lean_dec(x_38); -x_169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_169, 0, x_167); -lean_ctor_set(x_169, 1, x_168); -return x_169; -} -} -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; -lean_dec(x_35); -lean_dec(x_34); -lean_dec(x_22); -lean_dec(x_9); -x_170 = lean_ctor_get(x_36, 0); -lean_inc(x_170); lean_dec(x_36); -x_171 = lean_box(0); -x_172 = l_Lean_mkConst(x_170, x_171); +lean_dec(x_34); +lean_dec(x_30); +lean_dec(x_23); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_172); -x_173 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_172, x_3, x_4, x_5, x_6, x_32); -if (lean_obj_tag(x_173) == 0) +lean_inc(x_10); +x_222 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_46); +if (lean_obj_tag(x_222) == 0) { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_174 = lean_ctor_get(x_173, 0); -lean_inc(x_174); -x_175 = lean_ctor_get(x_173, 1); -lean_inc(x_175); -lean_dec(x_173); -x_176 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3___boxed), 10, 3); -lean_closure_set(x_176, 0, x_1); -lean_closure_set(x_176, 1, x_29); -lean_closure_set(x_176, 2, x_172); -x_177 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_174, x_176, x_3, x_4, x_5, x_6, x_175); -return x_177; -} -else +lean_object* x_223; +x_223 = lean_ctor_get(x_222, 0); +lean_inc(x_223); +if (lean_obj_tag(x_223) == 0) { -uint8_t x_178; -lean_dec(x_172); -lean_dec(x_29); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_178 = !lean_is_exclusive(x_173); -if (x_178 == 0) -{ -return x_173; -} -else -{ -lean_object* x_179; lean_object* x_180; lean_object* x_181; -x_179 = lean_ctor_get(x_173, 0); -x_180 = lean_ctor_get(x_173, 1); -lean_inc(x_180); -lean_inc(x_179); -lean_dec(x_173); -x_181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_181, 0, x_179); -lean_ctor_set(x_181, 1, x_180); -return x_181; -} -} -} -} -else -{ -lean_object* x_182; -lean_dec(x_11); -lean_dec(x_1); -x_182 = lean_box(0); -x_12 = x_182; -goto block_21; -} -block_21: -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_12); -x_13 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_14 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_14, 0, x_13); -x_15 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_15, 0, x_14); -x_16 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_17 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_15); -x_18 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_19 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_19, x_3, x_4, x_5, x_6, x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_20; -} -} -case 1: -{ -uint8_t x_183; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_183 = !lean_is_exclusive(x_8); -if (x_183 == 0) -{ -lean_object* x_184; -x_184 = lean_ctor_get(x_8, 0); -lean_dec(x_184); -return x_8; -} -else -{ -lean_object* x_185; lean_object* x_186; -x_185 = lean_ctor_get(x_8, 1); -lean_inc(x_185); -lean_dec(x_8); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_9); -lean_ctor_set(x_186, 1, x_185); -return x_186; -} -} -case 2: -{ -lean_object* x_187; lean_object* x_188; lean_object* x_189; -x_187 = lean_ctor_get(x_8, 1); -lean_inc(x_187); -lean_dec(x_8); -x_188 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_188) == 4) -{ -lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; -x_199 = lean_ctor_get(x_188, 0); -lean_inc(x_199); -lean_dec(x_188); -x_200 = lean_unsigned_to_nat(0u); -x_201 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_200); -x_202 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_201); -x_203 = lean_mk_array(x_201, x_202); -x_204 = lean_unsigned_to_nat(1u); -x_205 = lean_nat_sub(x_201, x_204); -lean_dec(x_201); -lean_inc(x_9); -x_206 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_203, x_205); -x_207 = lean_st_ref_get(x_6, x_187); -x_208 = lean_ctor_get(x_207, 0); -lean_inc(x_208); -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -lean_dec(x_207); -x_210 = lean_ctor_get(x_208, 0); -lean_inc(x_210); -lean_dec(x_208); -x_211 = lean_ctor_get(x_1, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_1, 2); -lean_inc(x_212); -x_213 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_212, x_210, x_199); -lean_dec(x_210); -if (lean_obj_tag(x_213) == 0) -{ -lean_object* x_214; lean_object* x_215; -lean_inc(x_211); -x_214 = l_Lean_Name_append___main(x_199, x_211); -lean_inc(x_199); -x_215 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_199, x_3, x_4, x_5, x_6, x_209); -if (lean_obj_tag(x_215) == 0) -{ -lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; -x_216 = lean_ctor_get(x_215, 0); -lean_inc(x_216); -x_217 = lean_ctor_get(x_215, 1); -lean_inc(x_217); -lean_dec(x_215); -x_218 = l_Lean_ConstantInfo_type(x_216); -x_219 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_218); -x_220 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_218, x_219, x_3, x_4, x_5, x_6, x_217); -if (lean_obj_tag(x_220) == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_311; uint8_t x_312; -x_221 = lean_ctor_get(x_220, 0); -lean_inc(x_221); -x_222 = lean_ctor_get(x_220, 1); -lean_inc(x_222); -lean_dec(x_220); -x_311 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_312 = l_Lean_Expr_isConstOf(x_221, x_311); -if (x_312 == 0) -{ -lean_object* x_313; uint8_t x_314; -x_313 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_314 = l_Lean_Expr_isConstOf(x_221, x_313); -lean_dec(x_221); -if (x_314 == 0) -{ -lean_object* x_315; -lean_dec(x_218); -lean_dec(x_216); -lean_dec(x_214); -lean_dec(x_212); -lean_dec(x_206); -lean_dec(x_199); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_315 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_222); -if (lean_obj_tag(x_315) == 0) -{ -lean_object* x_316; -x_316 = lean_ctor_get(x_315, 0); -lean_inc(x_316); -if (lean_obj_tag(x_316) == 0) -{ -lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; -lean_dec(x_1); -x_317 = lean_ctor_get(x_315, 1); -lean_inc(x_317); -lean_dec(x_315); -x_318 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_318, 0, x_211); -x_319 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_320 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_320, 0, x_319); -lean_ctor_set(x_320, 1, x_318); -x_321 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_322 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_322, 0, x_320); -lean_ctor_set(x_322, 1, x_321); -x_323 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_324 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_324, 0, x_323); -x_325 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_325, 0, x_324); -x_326 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_326, 0, x_322); -lean_ctor_set(x_326, 1, x_325); -x_327 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_328 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_328, 0, x_326); -lean_ctor_set(x_328, 1, x_327); -x_329 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_328, x_3, x_4, x_5, x_6, x_317); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_329; -} -else -{ -lean_object* x_330; lean_object* x_331; -lean_dec(x_211); -lean_dec(x_9); -x_330 = lean_ctor_get(x_315, 1); -lean_inc(x_330); -lean_dec(x_315); -x_331 = lean_ctor_get(x_316, 0); -lean_inc(x_331); -lean_dec(x_316); -x_2 = x_331; -x_7 = x_330; -goto _start; -} -} -else -{ -uint8_t x_333; -lean_dec(x_211); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_333 = !lean_is_exclusive(x_315); -if (x_333 == 0) -{ -return x_315; -} -else -{ -lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_334 = lean_ctor_get(x_315, 0); -x_335 = lean_ctor_get(x_315, 1); -lean_inc(x_335); -lean_inc(x_334); -lean_dec(x_315); -x_336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_336, 0, x_334); -lean_ctor_set(x_336, 1, x_335); -return x_336; -} -} -} -else -{ -lean_object* x_337; -x_337 = lean_box(0); -x_223 = x_337; -goto block_310; -} -} -else -{ -lean_object* x_338; -lean_dec(x_221); -x_338 = lean_box(0); -x_223 = x_338; -goto block_310; -} -block_310: -{ -lean_object* x_224; -lean_dec(x_223); -x_224 = l_Lean_ConstantInfo_value_x3f(x_216); -lean_dec(x_216); -if (lean_obj_tag(x_224) == 0) -{ -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_dec(x_218); -lean_dec(x_214); -lean_dec(x_212); -lean_dec(x_206); -lean_dec(x_199); +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_dec(x_1); +x_224 = lean_ctor_get(x_222, 1); +lean_inc(x_224); +lean_dec(x_222); x_225 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_225, 0, x_211); +lean_ctor_set(x_225, 0, x_35); x_226 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; x_227 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_227, 0, x_226); lean_ctor_set(x_227, 1, x_225); -x_228 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_228 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; x_229 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_229, 0, x_227); lean_ctor_set(x_229, 1, x_228); -x_230 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); +x_230 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); x_231 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_231, 0, x_230); x_232 = lean_alloc_ctor(0, 1, 0); @@ -8973,1066 +16680,1952 @@ x_234 = l_Lean_throwUnknownConstant___rarg___closed__5; x_235 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_235, 0, x_233); lean_ctor_set(x_235, 1, x_234); -x_236 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_235, x_3, x_4, x_5, x_6, x_222); +x_236 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_235, x_4, x_5, x_6, x_7, x_224); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); return x_236; } else { -lean_object* x_237; lean_object* x_238; lean_object* x_239; -lean_dec(x_211); -lean_dec(x_9); -x_237 = lean_ctor_get(x_224, 0); +lean_object* x_237; lean_object* x_238; uint8_t x_239; +lean_dec(x_35); +lean_dec(x_10); +x_237 = lean_ctor_get(x_222, 1); lean_inc(x_237); -lean_dec(x_224); -x_238 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_237); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_239 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_238, x_3, x_4, x_5, x_6, x_222); -if (lean_obj_tag(x_239) == 0) -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_259; lean_object* x_260; lean_object* x_261; -x_240 = lean_ctor_get(x_239, 0); -lean_inc(x_240); -x_241 = lean_ctor_get(x_239, 1); -lean_inc(x_241); -lean_dec(x_239); -x_259 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_260 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5___boxed), 9, 2); -lean_closure_set(x_260, 0, x_1); -lean_closure_set(x_260, 1, x_259); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_261 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_218, x_260, x_3, x_4, x_5, x_6, x_241); -if (lean_obj_tag(x_261) == 0) -{ -lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; uint8_t x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; -x_262 = lean_ctor_get(x_261, 0); -lean_inc(x_262); -x_263 = lean_ctor_get(x_261, 1); -lean_inc(x_263); -lean_dec(x_261); -x_264 = lean_box(0); -lean_inc(x_214); -x_265 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_265, 0, x_214); -lean_ctor_set(x_265, 1, x_264); -lean_ctor_set(x_265, 2, x_262); -x_266 = lean_box(0); -x_267 = 0; -x_268 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_240); -lean_ctor_set(x_268, 2, x_266); -lean_ctor_set_uint8(x_268, sizeof(void*)*3, x_267); -x_269 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_269, 0, x_268); -x_270 = lean_st_ref_get(x_6, x_263); -x_271 = lean_ctor_get(x_270, 0); -lean_inc(x_271); -x_272 = lean_ctor_get(x_270, 1); -lean_inc(x_272); -lean_dec(x_270); -x_273 = lean_ctor_get(x_271, 0); -lean_inc(x_273); -lean_dec(x_271); -x_274 = l_Lean_Environment_addAndCompile(x_273, x_264, x_269); -lean_dec(x_269); -if (lean_obj_tag(x_274) == 0) -{ -lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; -lean_dec(x_214); -lean_dec(x_212); -lean_dec(x_206); -lean_dec(x_199); -lean_dec(x_1); -x_275 = lean_ctor_get(x_274, 0); -lean_inc(x_275); -lean_dec(x_274); -x_276 = l_Lean_KernelException_toMessageData(x_275, x_264); -x_277 = lean_ctor_get(x_5, 3); -lean_inc(x_277); -x_278 = l_Lean_MessageData_toString(x_276, x_272); -if (lean_obj_tag(x_278) == 0) -{ -lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; uint8_t x_284; -lean_dec(x_277); -x_279 = lean_ctor_get(x_278, 0); -lean_inc(x_279); -x_280 = lean_ctor_get(x_278, 1); -lean_inc(x_280); -lean_dec(x_278); -x_281 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_281, 0, x_279); -x_282 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_282, 0, x_281); -x_283 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_282, x_3, x_4, x_5, x_6, x_280); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_284 = !lean_is_exclusive(x_283); -if (x_284 == 0) -{ -return x_283; -} -else -{ -lean_object* x_285; lean_object* x_286; lean_object* x_287; -x_285 = lean_ctor_get(x_283, 0); -x_286 = lean_ctor_get(x_283, 1); -lean_inc(x_286); -lean_inc(x_285); -lean_dec(x_283); -x_287 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_287, 0, x_285); -lean_ctor_set(x_287, 1, x_286); -return x_287; -} -} -else -{ -uint8_t x_288; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_288 = !lean_is_exclusive(x_278); -if (x_288 == 0) -{ -lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; -x_289 = lean_ctor_get(x_278, 0); -x_290 = lean_io_error_to_string(x_289); -x_291 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_291, 0, x_290); -x_292 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_292, 0, x_291); -x_293 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_293, 0, x_277); -lean_ctor_set(x_293, 1, x_292); -lean_ctor_set(x_278, 0, x_293); -return x_278; -} -else -{ -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; -x_294 = lean_ctor_get(x_278, 0); -x_295 = lean_ctor_get(x_278, 1); -lean_inc(x_295); -lean_inc(x_294); -lean_dec(x_278); -x_296 = lean_io_error_to_string(x_294); -x_297 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_297, 0, x_296); -x_298 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_298, 0, x_297); -x_299 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_299, 0, x_277); -lean_ctor_set(x_299, 1, x_298); -x_300 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_300, 0, x_299); -lean_ctor_set(x_300, 1, x_295); -return x_300; -} -} -} -else -{ -lean_object* x_301; -x_301 = lean_ctor_get(x_274, 0); -lean_inc(x_301); -lean_dec(x_274); -x_242 = x_301; -x_243 = x_272; -goto block_258; -} -} -else -{ -uint8_t x_302; -lean_dec(x_240); -lean_dec(x_214); -lean_dec(x_212); -lean_dec(x_206); -lean_dec(x_199); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_302 = !lean_is_exclusive(x_261); -if (x_302 == 0) -{ -return x_261; -} -else -{ -lean_object* x_303; lean_object* x_304; lean_object* x_305; -x_303 = lean_ctor_get(x_261, 0); -x_304 = lean_ctor_get(x_261, 1); -lean_inc(x_304); -lean_inc(x_303); -lean_dec(x_261); -x_305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_305, 0, x_303); -lean_ctor_set(x_305, 1, x_304); -return x_305; -} -} -block_258: -{ -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_inc(x_214); -x_244 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_212, x_242, x_199, x_214); -x_245 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_244, x_3, x_4, x_5, x_6, x_243); -x_246 = lean_ctor_get(x_245, 1); -lean_inc(x_246); -lean_dec(x_245); -x_247 = lean_box(0); -x_248 = l_Lean_mkConst(x_214, x_247); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_248); -x_249 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_248, x_3, x_4, x_5, x_6, x_246); -if (lean_obj_tag(x_249) == 0) -{ -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; -x_250 = lean_ctor_get(x_249, 0); -lean_inc(x_250); -x_251 = lean_ctor_get(x_249, 1); -lean_inc(x_251); -lean_dec(x_249); -x_252 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4___boxed), 11, 4); -lean_closure_set(x_252, 0, x_1); -lean_closure_set(x_252, 1, x_219); -lean_closure_set(x_252, 2, x_206); -lean_closure_set(x_252, 3, x_248); -x_253 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_250, x_252, x_3, x_4, x_5, x_6, x_251); -return x_253; -} -else -{ -uint8_t x_254; -lean_dec(x_248); -lean_dec(x_206); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_254 = !lean_is_exclusive(x_249); -if (x_254 == 0) -{ -return x_249; -} -else -{ -lean_object* x_255; lean_object* x_256; lean_object* x_257; -x_255 = lean_ctor_get(x_249, 0); -x_256 = lean_ctor_get(x_249, 1); -lean_inc(x_256); -lean_inc(x_255); -lean_dec(x_249); -x_257 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_257, 0, x_255); -lean_ctor_set(x_257, 1, x_256); -return x_257; -} -} -} -} -else -{ -uint8_t x_306; -lean_dec(x_218); -lean_dec(x_214); -lean_dec(x_212); -lean_dec(x_206); -lean_dec(x_199); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_306 = !lean_is_exclusive(x_239); -if (x_306 == 0) -{ -return x_239; -} -else -{ -lean_object* x_307; lean_object* x_308; lean_object* x_309; -x_307 = lean_ctor_get(x_239, 0); -x_308 = lean_ctor_get(x_239, 1); -lean_inc(x_308); -lean_inc(x_307); -lean_dec(x_239); -x_309 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_309, 0, x_307); -lean_ctor_set(x_309, 1, x_308); -return x_309; -} -} -} -} -} -else -{ -uint8_t x_339; -lean_dec(x_218); -lean_dec(x_216); -lean_dec(x_214); -lean_dec(x_212); -lean_dec(x_211); -lean_dec(x_206); -lean_dec(x_199); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_339 = !lean_is_exclusive(x_220); -if (x_339 == 0) -{ -return x_220; -} -else -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; -x_340 = lean_ctor_get(x_220, 0); -x_341 = lean_ctor_get(x_220, 1); -lean_inc(x_341); -lean_inc(x_340); -lean_dec(x_220); -x_342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_342, 0, x_340); -lean_ctor_set(x_342, 1, x_341); -return x_342; -} -} -} -else -{ -uint8_t x_343; -lean_dec(x_214); -lean_dec(x_212); -lean_dec(x_211); -lean_dec(x_206); -lean_dec(x_199); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_343 = !lean_is_exclusive(x_215); -if (x_343 == 0) -{ -return x_215; -} -else -{ -lean_object* x_344; lean_object* x_345; lean_object* x_346; -x_344 = lean_ctor_get(x_215, 0); -x_345 = lean_ctor_get(x_215, 1); -lean_inc(x_345); -lean_inc(x_344); -lean_dec(x_215); -x_346 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_346, 0, x_344); -lean_ctor_set(x_346, 1, x_345); -return x_346; -} -} -} -else -{ -lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; -lean_dec(x_212); -lean_dec(x_211); -lean_dec(x_199); -lean_dec(x_9); -x_347 = lean_ctor_get(x_213, 0); -lean_inc(x_347); -lean_dec(x_213); -x_348 = lean_box(0); -x_349 = l_Lean_mkConst(x_347, x_348); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_349); -x_350 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_349, x_3, x_4, x_5, x_6, x_209); -if (lean_obj_tag(x_350) == 0) -{ -lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; -x_351 = lean_ctor_get(x_350, 0); -lean_inc(x_351); -x_352 = lean_ctor_get(x_350, 1); -lean_inc(x_352); -lean_dec(x_350); -x_353 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6___boxed), 10, 3); -lean_closure_set(x_353, 0, x_1); -lean_closure_set(x_353, 1, x_206); -lean_closure_set(x_353, 2, x_349); -x_354 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_351, x_353, x_3, x_4, x_5, x_6, x_352); -return x_354; -} -else -{ -uint8_t x_355; -lean_dec(x_349); -lean_dec(x_206); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_355 = !lean_is_exclusive(x_350); -if (x_355 == 0) -{ -return x_350; -} -else -{ -lean_object* x_356; lean_object* x_357; lean_object* x_358; -x_356 = lean_ctor_get(x_350, 0); -x_357 = lean_ctor_get(x_350, 1); -lean_inc(x_357); -lean_inc(x_356); -lean_dec(x_350); -x_358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_358, 0, x_356); -lean_ctor_set(x_358, 1, x_357); -return x_358; -} -} -} -} -else -{ -lean_object* x_359; -lean_dec(x_188); -lean_dec(x_1); -x_359 = lean_box(0); -x_189 = x_359; -goto block_198; -} -block_198: -{ -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; -lean_dec(x_189); -x_190 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_191 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_191, 0, x_190); -x_192 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_192, 0, x_191); -x_193 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_194 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_194, 0, x_193); -lean_ctor_set(x_194, 1, x_192); -x_195 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_196 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_196, 0, x_194); -lean_ctor_set(x_196, 1, x_195); -x_197 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_196, x_3, x_4, x_5, x_6, x_187); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_197; -} -} -case 3: -{ -lean_object* x_360; lean_object* x_361; lean_object* x_362; -x_360 = lean_ctor_get(x_8, 1); -lean_inc(x_360); -lean_dec(x_8); -x_361 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_361) == 4) -{ -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; -x_372 = lean_ctor_get(x_361, 0); -lean_inc(x_372); -lean_dec(x_361); -x_373 = lean_unsigned_to_nat(0u); -x_374 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_373); -x_375 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_374); -x_376 = lean_mk_array(x_374, x_375); -x_377 = lean_unsigned_to_nat(1u); -x_378 = lean_nat_sub(x_374, x_377); -lean_dec(x_374); -lean_inc(x_9); -x_379 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_376, x_378); -x_380 = lean_st_ref_get(x_6, x_360); -x_381 = lean_ctor_get(x_380, 0); -lean_inc(x_381); -x_382 = lean_ctor_get(x_380, 1); -lean_inc(x_382); -lean_dec(x_380); -x_383 = lean_ctor_get(x_381, 0); -lean_inc(x_383); -lean_dec(x_381); -x_384 = lean_ctor_get(x_1, 0); -lean_inc(x_384); -x_385 = lean_ctor_get(x_1, 2); -lean_inc(x_385); -x_386 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_385, x_383, x_372); -lean_dec(x_383); -if (lean_obj_tag(x_386) == 0) -{ -lean_object* x_387; lean_object* x_388; -lean_inc(x_384); -x_387 = l_Lean_Name_append___main(x_372, x_384); -lean_inc(x_372); -x_388 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_372, x_3, x_4, x_5, x_6, x_382); -if (lean_obj_tag(x_388) == 0) -{ -lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; -x_389 = lean_ctor_get(x_388, 0); -lean_inc(x_389); -x_390 = lean_ctor_get(x_388, 1); -lean_inc(x_390); -lean_dec(x_388); -x_391 = l_Lean_ConstantInfo_type(x_389); -x_392 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_391); -x_393 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_391, x_392, x_3, x_4, x_5, x_6, x_390); -if (lean_obj_tag(x_393) == 0) -{ -lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_484; uint8_t x_485; -x_394 = lean_ctor_get(x_393, 0); -lean_inc(x_394); -x_395 = lean_ctor_get(x_393, 1); -lean_inc(x_395); -lean_dec(x_393); -x_484 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_485 = l_Lean_Expr_isConstOf(x_394, x_484); -if (x_485 == 0) -{ -lean_object* x_486; uint8_t x_487; -x_486 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_487 = l_Lean_Expr_isConstOf(x_394, x_486); -lean_dec(x_394); -if (x_487 == 0) -{ -lean_object* x_488; -lean_dec(x_391); -lean_dec(x_389); -lean_dec(x_387); -lean_dec(x_385); -lean_dec(x_379); -lean_dec(x_372); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_488 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_395); -if (lean_obj_tag(x_488) == 0) -{ -lean_object* x_489; -x_489 = lean_ctor_get(x_488, 0); -lean_inc(x_489); -if (lean_obj_tag(x_489) == 0) -{ -lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; -lean_dec(x_1); -x_490 = lean_ctor_get(x_488, 1); -lean_inc(x_490); -lean_dec(x_488); -x_491 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_491, 0, x_384); -x_492 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_493 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_493, 0, x_492); -lean_ctor_set(x_493, 1, x_491); -x_494 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_495 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_495, 0, x_493); -lean_ctor_set(x_495, 1, x_494); -x_496 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_497 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_497, 0, x_496); -x_498 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_498, 0, x_497); -x_499 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_499, 0, x_495); -lean_ctor_set(x_499, 1, x_498); -x_500 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_501 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_501, 0, x_499); -lean_ctor_set(x_501, 1, x_500); -x_502 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_501, x_3, x_4, x_5, x_6, x_490); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_502; -} -else -{ -lean_object* x_503; lean_object* x_504; -lean_dec(x_384); -lean_dec(x_9); -x_503 = lean_ctor_get(x_488, 1); -lean_inc(x_503); -lean_dec(x_488); -x_504 = lean_ctor_get(x_489, 0); -lean_inc(x_504); -lean_dec(x_489); -x_2 = x_504; -x_7 = x_503; +lean_dec(x_222); +x_238 = lean_ctor_get(x_223, 0); +lean_inc(x_238); +lean_dec(x_223); +x_239 = 0; +x_2 = x_238; +x_3 = x_239; +x_8 = x_237; goto _start; } } else { -uint8_t x_506; -lean_dec(x_384); -lean_dec(x_9); +uint8_t x_241; +lean_dec(x_35); +lean_dec(x_10); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_506 = !lean_is_exclusive(x_488); -if (x_506 == 0) +x_241 = !lean_is_exclusive(x_222); +if (x_241 == 0) { -return x_488; +return x_222; } else { -lean_object* x_507; lean_object* x_508; lean_object* x_509; -x_507 = lean_ctor_get(x_488, 0); -x_508 = lean_ctor_get(x_488, 1); -lean_inc(x_508); -lean_inc(x_507); -lean_dec(x_488); -x_509 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_509, 0, x_507); -lean_ctor_set(x_509, 1, x_508); -return x_509; +lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_242 = lean_ctor_get(x_222, 0); +x_243 = lean_ctor_get(x_222, 1); +lean_inc(x_243); +lean_inc(x_242); +lean_dec(x_222); +x_244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_244, 0, x_242); +lean_ctor_set(x_244, 1, x_243); +return x_244; } } } else { -lean_object* x_510; -x_510 = lean_box(0); -x_396 = x_510; -goto block_483; +lean_object* x_245; +x_245 = lean_box(0); +x_47 = x_245; +goto block_217; } } else { -lean_object* x_511; -lean_dec(x_394); -x_511 = lean_box(0); -x_396 = x_511; -goto block_483; +lean_object* x_246; +lean_dec(x_45); +x_246 = lean_box(0); +x_47 = x_246; +goto block_217; } -block_483: +block_217: { -lean_object* x_397; -lean_dec(x_396); -x_397 = l_Lean_ConstantInfo_value_x3f(x_389); -lean_dec(x_389); -if (lean_obj_tag(x_397) == 0) +lean_object* x_48; +lean_dec(x_47); +x_48 = l_Lean_ConstantInfo_value_x3f(x_40); +lean_dec(x_40); +if (lean_obj_tag(x_48) == 0) { -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_dec(x_391); -lean_dec(x_387); -lean_dec(x_385); -lean_dec(x_379); -lean_dec(x_372); +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +lean_dec(x_42); +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_34); +lean_dec(x_30); +lean_dec(x_23); lean_dec(x_1); -x_398 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_398, 0, x_384); -x_399 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_400 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_400, 0, x_399); -lean_ctor_set(x_400, 1, x_398); -x_401 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_402 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_402, 0, x_400); -lean_ctor_set(x_402, 1, x_401); -x_403 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_404 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_404, 0, x_403); -x_405 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_405, 0, x_404); -x_406 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_406, 0, x_402); -lean_ctor_set(x_406, 1, x_405); -x_407 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_408 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_408, 0, x_406); -lean_ctor_set(x_408, 1, x_407); -x_409 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_408, x_3, x_4, x_5, x_6, x_395); +x_49 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_49, 0, x_35); +x_50 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_51 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_53 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_55 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_55, 0, x_54); +x_56 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_56, 0, x_55); +x_57 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_57, 0, x_53); +lean_ctor_set(x_57, 1, x_56); +x_58 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_59 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +x_60 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_59, x_4, x_5, x_6, x_7, x_46); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_409; +return x_60; } else { -lean_object* x_410; lean_object* x_411; lean_object* x_412; -lean_dec(x_384); +lean_object* x_61; lean_object* x_62; +lean_dec(x_35); +lean_dec(x_10); +x_61 = lean_ctor_get(x_48, 0); +lean_inc(x_61); +lean_dec(x_48); +x_62 = l_Lean_Environment_getModuleIdxFor_x3f(x_34, x_23); +lean_dec(x_34); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; lean_object* x_64; lean_object* x_80; uint8_t x_81; lean_object* x_82; +x_80 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_61); +x_81 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_82 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_80, x_81, x_4, x_5, x_6, x_7, x_46); +if (lean_obj_tag(x_82) == 0) +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +x_85 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_86 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__2___boxed), 9, 2); +lean_closure_set(x_86, 0, x_1); +lean_closure_set(x_86, 1, x_85); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_87 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_42, x_86, x_4, x_5, x_6, x_7, x_84); +if (lean_obj_tag(x_87) == 0) +{ +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; +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +lean_dec(x_87); +x_90 = lean_box(0); +lean_inc(x_38); +x_91 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_91, 0, x_38); +lean_ctor_set(x_91, 1, x_90); +lean_ctor_set(x_91, 2, x_88); +x_92 = lean_box(0); +x_93 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_83); +lean_ctor_set(x_93, 2, x_92); +lean_ctor_set_uint8(x_93, sizeof(void*)*3, x_81); +x_94 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_94, 0, x_93); +x_95 = lean_st_ref_get(x_7, x_89); +x_96 = lean_ctor_get(x_95, 0); +lean_inc(x_96); +x_97 = lean_ctor_get(x_95, 1); +lean_inc(x_97); +lean_dec(x_95); +x_98 = lean_ctor_get(x_96, 0); +lean_inc(x_98); +lean_dec(x_96); +x_99 = l_Lean_Environment_addAndCompile(x_98, x_90, x_94); +lean_dec(x_94); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_30); +lean_dec(x_23); +lean_dec(x_1); +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +lean_dec(x_99); +x_101 = l_Lean_KernelException_toMessageData(x_100, x_90); +x_102 = lean_ctor_get(x_6, 3); +lean_inc(x_102); +x_103 = l_Lean_MessageData_toString(x_101, x_97); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109; +lean_dec(x_102); +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec(x_103); +x_106 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_106, 0, x_104); +x_107 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_107, 0, x_106); +x_108 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_107, x_4, x_5, x_6, x_7, x_105); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_109 = !lean_is_exclusive(x_108); +if (x_109 == 0) +{ +return x_108; +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = lean_ctor_get(x_108, 0); +x_111 = lean_ctor_get(x_108, 1); +lean_inc(x_111); +lean_inc(x_110); +lean_dec(x_108); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +return x_112; +} +} +else +{ +uint8_t x_113; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_113 = !lean_is_exclusive(x_103); +if (x_113 == 0) +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_114 = lean_ctor_get(x_103, 0); +x_115 = lean_io_error_to_string(x_114); +x_116 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_116, 0, x_115); +x_117 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_117, 0, x_116); +x_118 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_118, 0, x_102); +lean_ctor_set(x_118, 1, x_117); +lean_ctor_set(x_103, 0, x_118); +return x_103; +} +else +{ +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; +x_119 = lean_ctor_get(x_103, 0); +x_120 = lean_ctor_get(x_103, 1); +lean_inc(x_120); +lean_inc(x_119); +lean_dec(x_103); +x_121 = lean_io_error_to_string(x_119); +x_122 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_122, 0, x_121); +x_123 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_123, 0, x_122); +x_124 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_124, 0, x_102); +lean_ctor_set(x_124, 1, x_123); +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_120); +return x_125; +} +} +} +else +{ +lean_object* x_126; +x_126 = lean_ctor_get(x_99, 0); +lean_inc(x_126); +lean_dec(x_99); +x_63 = x_126; +x_64 = x_97; +goto block_79; +} +} +else +{ +uint8_t x_127; +lean_dec(x_83); +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_30); +lean_dec(x_23); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_127 = !lean_is_exclusive(x_87); +if (x_127 == 0) +{ +return x_87; +} +else +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; +x_128 = lean_ctor_get(x_87, 0); +x_129 = lean_ctor_get(x_87, 1); +lean_inc(x_129); +lean_inc(x_128); +lean_dec(x_87); +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_128); +lean_ctor_set(x_130, 1, x_129); +return x_130; +} +} +} +else +{ +uint8_t x_131; +lean_dec(x_42); +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_30); +lean_dec(x_23); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_131 = !lean_is_exclusive(x_82); +if (x_131 == 0) +{ +return x_82; +} +else +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; +x_132 = lean_ctor_get(x_82, 0); +x_133 = lean_ctor_get(x_82, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_82); +x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_134, 0, x_132); +lean_ctor_set(x_134, 1, x_133); +return x_134; +} +} +block_79: +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +lean_inc(x_38); +x_65 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_36, x_63, x_23, x_38); +x_66 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_65, x_4, x_5, x_6, x_7, x_64); +x_67 = lean_ctor_get(x_66, 1); +lean_inc(x_67); +lean_dec(x_66); +x_68 = lean_box(0); +x_69 = l_Lean_mkConst(x_38, x_68); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_69); +x_70 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_69, x_4, x_5, x_6, x_7, x_67); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); +lean_inc(x_72); +lean_dec(x_70); +x_73 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__1___boxed), 11, 4); +lean_closure_set(x_73, 0, x_1); +lean_closure_set(x_73, 1, x_43); +lean_closure_set(x_73, 2, x_30); +lean_closure_set(x_73, 3, x_69); +x_74 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_71, x_73, x_4, x_5, x_6, x_7, x_72); +return x_74; +} +else +{ +uint8_t x_75; +lean_dec(x_69); +lean_dec(x_30); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_75 = !lean_is_exclusive(x_70); +if (x_75 == 0) +{ +return x_70; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_70, 0); +x_77 = lean_ctor_get(x_70, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_70); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +return x_78; +} +} +} +} +else +{ +lean_dec(x_62); +if (x_3 == 0) +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; uint8_t x_141; +lean_dec(x_61); +lean_dec(x_42); +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_30); +lean_dec(x_1); +x_135 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_135, 0, x_23); +x_136 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_137 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_135); +x_138 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_139 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +x_140 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_139, x_4, x_5, x_6, x_7, x_46); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_141 = !lean_is_exclusive(x_140); +if (x_141 == 0) +{ +return x_140; +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_142 = lean_ctor_get(x_140, 0); +x_143 = lean_ctor_get(x_140, 1); +lean_inc(x_143); +lean_inc(x_142); +lean_dec(x_140); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set(x_144, 1, x_143); +return x_144; +} +} +else +{ +lean_object* x_145; lean_object* x_146; lean_object* x_162; uint8_t x_163; lean_object* x_164; +x_162 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_61); +x_163 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_164 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_162, x_163, x_4, x_5, x_6, x_7, x_46); +if (lean_obj_tag(x_164) == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_165 = lean_ctor_get(x_164, 0); +lean_inc(x_165); +x_166 = lean_ctor_get(x_164, 1); +lean_inc(x_166); +lean_dec(x_164); +x_167 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_168 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6___boxed), 9, 2); +lean_closure_set(x_168, 0, x_1); +lean_closure_set(x_168, 1, x_167); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_169 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_42, x_168, x_4, x_5, x_6, x_7, x_166); +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_170 = lean_ctor_get(x_169, 0); +lean_inc(x_170); +x_171 = lean_ctor_get(x_169, 1); +lean_inc(x_171); +lean_dec(x_169); +x_172 = lean_box(0); +lean_inc(x_38); +x_173 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_173, 0, x_38); +lean_ctor_set(x_173, 1, x_172); +lean_ctor_set(x_173, 2, x_170); +x_174 = lean_box(0); +x_175 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_165); +lean_ctor_set(x_175, 2, x_174); +lean_ctor_set_uint8(x_175, sizeof(void*)*3, x_163); +x_176 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_176, 0, x_175); +x_177 = lean_st_ref_get(x_7, x_171); +x_178 = lean_ctor_get(x_177, 0); +lean_inc(x_178); +x_179 = lean_ctor_get(x_177, 1); +lean_inc(x_179); +lean_dec(x_177); +x_180 = lean_ctor_get(x_178, 0); +lean_inc(x_180); +lean_dec(x_178); +x_181 = l_Lean_Environment_addAndCompile(x_180, x_172, x_176); +lean_dec(x_176); +if (lean_obj_tag(x_181) == 0) +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_30); +lean_dec(x_23); +lean_dec(x_1); +x_182 = lean_ctor_get(x_181, 0); +lean_inc(x_182); +lean_dec(x_181); +x_183 = l_Lean_KernelException_toMessageData(x_182, x_172); +x_184 = lean_ctor_get(x_6, 3); +lean_inc(x_184); +x_185 = l_Lean_MessageData_toString(x_183, x_179); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; uint8_t x_191; +lean_dec(x_184); +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +x_187 = lean_ctor_get(x_185, 1); +lean_inc(x_187); +lean_dec(x_185); +x_188 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_188, 0, x_186); +x_189 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_189, 0, x_188); +x_190 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_189, x_4, x_5, x_6, x_7, x_187); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_191 = !lean_is_exclusive(x_190); +if (x_191 == 0) +{ +return x_190; +} +else +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_192 = lean_ctor_get(x_190, 0); +x_193 = lean_ctor_get(x_190, 1); +lean_inc(x_193); +lean_inc(x_192); +lean_dec(x_190); +x_194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_194, 0, x_192); +lean_ctor_set(x_194, 1, x_193); +return x_194; +} +} +else +{ +uint8_t x_195; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_195 = !lean_is_exclusive(x_185); +if (x_195 == 0) +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_196 = lean_ctor_get(x_185, 0); +x_197 = lean_io_error_to_string(x_196); +x_198 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_198, 0, x_197); +x_199 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_199, 0, x_198); +x_200 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_200, 0, x_184); +lean_ctor_set(x_200, 1, x_199); +lean_ctor_set(x_185, 0, x_200); +return x_185; +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; +x_201 = lean_ctor_get(x_185, 0); +x_202 = lean_ctor_get(x_185, 1); +lean_inc(x_202); +lean_inc(x_201); +lean_dec(x_185); +x_203 = lean_io_error_to_string(x_201); +x_204 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_204, 0, x_203); +x_205 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_205, 0, x_204); +x_206 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_206, 0, x_184); +lean_ctor_set(x_206, 1, x_205); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_206); +lean_ctor_set(x_207, 1, x_202); +return x_207; +} +} +} +else +{ +lean_object* x_208; +x_208 = lean_ctor_get(x_181, 0); +lean_inc(x_208); +lean_dec(x_181); +x_145 = x_208; +x_146 = x_179; +goto block_161; +} +} +else +{ +uint8_t x_209; +lean_dec(x_165); +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_30); +lean_dec(x_23); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_209 = !lean_is_exclusive(x_169); +if (x_209 == 0) +{ +return x_169; +} +else +{ +lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_210 = lean_ctor_get(x_169, 0); +x_211 = lean_ctor_get(x_169, 1); +lean_inc(x_211); +lean_inc(x_210); +lean_dec(x_169); +x_212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_212, 0, x_210); +lean_ctor_set(x_212, 1, x_211); +return x_212; +} +} +} +else +{ +uint8_t x_213; +lean_dec(x_42); +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_30); +lean_dec(x_23); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_213 = !lean_is_exclusive(x_164); +if (x_213 == 0) +{ +return x_164; +} +else +{ +lean_object* x_214; lean_object* x_215; lean_object* x_216; +x_214 = lean_ctor_get(x_164, 0); +x_215 = lean_ctor_get(x_164, 1); +lean_inc(x_215); +lean_inc(x_214); +lean_dec(x_164); +x_216 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_216, 0, x_214); +lean_ctor_set(x_216, 1, x_215); +return x_216; +} +} +block_161: +{ +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_inc(x_38); +x_147 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_36, x_145, x_23, x_38); +x_148 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_147, x_4, x_5, x_6, x_7, x_146); +x_149 = lean_ctor_get(x_148, 1); +lean_inc(x_149); +lean_dec(x_148); +x_150 = lean_box(0); +x_151 = l_Lean_mkConst(x_38, x_150); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_151); +x_152 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_151, x_4, x_5, x_6, x_7, x_149); +if (lean_obj_tag(x_152) == 0) +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_153 = lean_ctor_get(x_152, 0); +lean_inc(x_153); +x_154 = lean_ctor_get(x_152, 1); +lean_inc(x_154); +lean_dec(x_152); +x_155 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5___boxed), 11, 4); +lean_closure_set(x_155, 0, x_1); +lean_closure_set(x_155, 1, x_43); +lean_closure_set(x_155, 2, x_30); +lean_closure_set(x_155, 3, x_151); +x_156 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_153, x_155, x_4, x_5, x_6, x_7, x_154); +return x_156; +} +else +{ +uint8_t x_157; +lean_dec(x_151); +lean_dec(x_30); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_157 = !lean_is_exclusive(x_152); +if (x_157 == 0) +{ +return x_152; +} +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; +x_158 = lean_ctor_get(x_152, 0); +x_159 = lean_ctor_get(x_152, 1); +lean_inc(x_159); +lean_inc(x_158); +lean_dec(x_152); +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +return x_160; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_247; +lean_dec(x_42); +lean_dec(x_40); +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_35); +lean_dec(x_34); +lean_dec(x_30); +lean_dec(x_23); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_247 = !lean_is_exclusive(x_44); +if (x_247 == 0) +{ +return x_44; +} +else +{ +lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_248 = lean_ctor_get(x_44, 0); +x_249 = lean_ctor_get(x_44, 1); +lean_inc(x_249); +lean_inc(x_248); +lean_dec(x_44); +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_248); +lean_ctor_set(x_250, 1, x_249); +return x_250; +} +} +} +else +{ +uint8_t x_251; +lean_dec(x_38); +lean_dec(x_36); +lean_dec(x_35); +lean_dec(x_34); +lean_dec(x_30); +lean_dec(x_23); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_251 = !lean_is_exclusive(x_39); +if (x_251 == 0) +{ +return x_39; +} +else +{ +lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_252 = lean_ctor_get(x_39, 0); +x_253 = lean_ctor_get(x_39, 1); +lean_inc(x_253); +lean_inc(x_252); +lean_dec(x_39); +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_252); +lean_ctor_set(x_254, 1, x_253); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; +lean_dec(x_36); +lean_dec(x_35); +lean_dec(x_34); +lean_dec(x_23); +lean_dec(x_10); +x_255 = lean_ctor_get(x_37, 0); +lean_inc(x_255); +lean_dec(x_37); +x_256 = lean_box(0); +x_257 = l_Lean_mkConst(x_255, x_256); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_257); +x_258 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_257, x_4, x_5, x_6, x_7, x_33); +if (lean_obj_tag(x_258) == 0) +{ +lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_259 = lean_ctor_get(x_258, 0); +lean_inc(x_259); +x_260 = lean_ctor_get(x_258, 1); +lean_inc(x_260); +lean_dec(x_258); +x_261 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7___boxed), 10, 3); +lean_closure_set(x_261, 0, x_1); +lean_closure_set(x_261, 1, x_30); +lean_closure_set(x_261, 2, x_257); +x_262 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_259, x_261, x_4, x_5, x_6, x_7, x_260); +return x_262; +} +else +{ +uint8_t x_263; +lean_dec(x_257); +lean_dec(x_30); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_263 = !lean_is_exclusive(x_258); +if (x_263 == 0) +{ +return x_258; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_264 = lean_ctor_get(x_258, 0); +x_265 = lean_ctor_get(x_258, 1); +lean_inc(x_265); +lean_inc(x_264); +lean_dec(x_258); +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_264); +lean_ctor_set(x_266, 1, x_265); +return x_266; +} +} +} +} +else +{ +lean_object* x_267; +lean_dec(x_12); +lean_dec(x_1); +x_267 = lean_box(0); +x_13 = x_267; +goto block_22; +} +block_22: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_dec(x_13); +x_14 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_15 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_15, 0, x_14); +x_16 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_16, 0, x_15); +x_17 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_18 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +x_19 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_20 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_20, x_4, x_5, x_6, x_7, x_11); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_21; +} +} +case 1: +{ +uint8_t x_268; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_268 = !lean_is_exclusive(x_9); +if (x_268 == 0) +{ +lean_object* x_269; +x_269 = lean_ctor_get(x_9, 0); +lean_dec(x_269); +return x_9; +} +else +{ +lean_object* x_270; lean_object* x_271; +x_270 = lean_ctor_get(x_9, 1); +lean_inc(x_270); lean_dec(x_9); -x_410 = lean_ctor_get(x_397, 0); -lean_inc(x_410); -lean_dec(x_397); -x_411 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_410); +x_271 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_271, 0, x_10); +lean_ctor_set(x_271, 1, x_270); +return x_271; +} +} +case 2: +{ +lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_272 = lean_ctor_get(x_9, 1); +lean_inc(x_272); +lean_dec(x_9); +x_273 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_273) == 4) +{ +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; +x_284 = lean_ctor_get(x_273, 0); +lean_inc(x_284); +lean_dec(x_273); +x_285 = lean_unsigned_to_nat(0u); +x_286 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_285); +x_287 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_286); +x_288 = lean_mk_array(x_286, x_287); +x_289 = lean_unsigned_to_nat(1u); +x_290 = lean_nat_sub(x_286, x_289); +lean_dec(x_286); +lean_inc(x_10); +x_291 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_288, x_290); +x_292 = lean_st_ref_get(x_7, x_272); +x_293 = lean_ctor_get(x_292, 0); +lean_inc(x_293); +x_294 = lean_ctor_get(x_292, 1); +lean_inc(x_294); +lean_dec(x_292); +x_295 = lean_ctor_get(x_293, 0); +lean_inc(x_295); +lean_dec(x_293); +x_296 = lean_ctor_get(x_1, 0); +lean_inc(x_296); +x_297 = lean_ctor_get(x_1, 2); +lean_inc(x_297); +x_298 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_297, x_295, x_284); +if (lean_obj_tag(x_298) == 0) +{ +lean_object* x_299; lean_object* x_300; +lean_inc(x_296); +x_299 = l_Lean_Name_append___main(x_284, x_296); +lean_inc(x_284); +x_300 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_284, x_4, x_5, x_6, x_7, x_294); +if (lean_obj_tag(x_300) == 0) +{ +lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; +x_301 = lean_ctor_get(x_300, 0); +lean_inc(x_301); +x_302 = lean_ctor_get(x_300, 1); +lean_inc(x_302); +lean_dec(x_300); +x_303 = l_Lean_ConstantInfo_type(x_301); +x_304 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_412 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_411, x_3, x_4, x_5, x_6, x_395); -if (lean_obj_tag(x_412) == 0) +lean_inc(x_303); +x_305 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_303, x_304, x_4, x_5, x_6, x_7, x_302); +if (lean_obj_tag(x_305) == 0) { -lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_432; lean_object* x_433; lean_object* x_434; -x_413 = lean_ctor_get(x_412, 0); -lean_inc(x_413); -x_414 = lean_ctor_get(x_412, 1); -lean_inc(x_414); -lean_dec(x_412); -x_432 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_433 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8___boxed), 9, 2); -lean_closure_set(x_433, 0, x_1); -lean_closure_set(x_433, 1, x_432); +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_479; uint8_t x_480; +x_306 = lean_ctor_get(x_305, 0); +lean_inc(x_306); +x_307 = lean_ctor_get(x_305, 1); +lean_inc(x_307); +lean_dec(x_305); +x_479 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_480 = l_Lean_Expr_isConstOf(x_306, x_479); +if (x_480 == 0) +{ +lean_object* x_481; uint8_t x_482; +x_481 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_482 = l_Lean_Expr_isConstOf(x_306, x_481); +lean_dec(x_306); +if (x_482 == 0) +{ +lean_object* x_483; +lean_dec(x_303); +lean_dec(x_301); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_295); +lean_dec(x_291); +lean_dec(x_284); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -x_434 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_391, x_433, x_3, x_4, x_5, x_6, x_414); -if (lean_obj_tag(x_434) == 0) +lean_inc(x_10); +x_483 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_307); +if (lean_obj_tag(x_483) == 0) { -lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; uint8_t 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; -x_435 = lean_ctor_get(x_434, 0); -lean_inc(x_435); -x_436 = lean_ctor_get(x_434, 1); -lean_inc(x_436); -lean_dec(x_434); -x_437 = lean_box(0); +lean_object* x_484; +x_484 = lean_ctor_get(x_483, 0); +lean_inc(x_484); +if (lean_obj_tag(x_484) == 0) +{ +lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; +lean_dec(x_1); +x_485 = lean_ctor_get(x_483, 1); +lean_inc(x_485); +lean_dec(x_483); +x_486 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_486, 0, x_296); +x_487 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_488 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_488, 0, x_487); +lean_ctor_set(x_488, 1, x_486); +x_489 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_490 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_490, 0, x_488); +lean_ctor_set(x_490, 1, x_489); +x_491 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_492 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_492, 0, x_491); +x_493 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_493, 0, x_492); +x_494 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_494, 0, x_490); +lean_ctor_set(x_494, 1, x_493); +x_495 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_496 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_496, 0, x_494); +lean_ctor_set(x_496, 1, x_495); +x_497 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_496, x_4, x_5, x_6, x_7, x_485); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_497; +} +else +{ +lean_object* x_498; lean_object* x_499; uint8_t x_500; +lean_dec(x_296); +lean_dec(x_10); +x_498 = lean_ctor_get(x_483, 1); +lean_inc(x_498); +lean_dec(x_483); +x_499 = lean_ctor_get(x_484, 0); +lean_inc(x_499); +lean_dec(x_484); +x_500 = 0; +x_2 = x_499; +x_3 = x_500; +x_8 = x_498; +goto _start; +} +} +else +{ +uint8_t x_502; +lean_dec(x_296); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_502 = !lean_is_exclusive(x_483); +if (x_502 == 0) +{ +return x_483; +} +else +{ +lean_object* x_503; lean_object* x_504; lean_object* x_505; +x_503 = lean_ctor_get(x_483, 0); +x_504 = lean_ctor_get(x_483, 1); +lean_inc(x_504); +lean_inc(x_503); +lean_dec(x_483); +x_505 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_505, 0, x_503); +lean_ctor_set(x_505, 1, x_504); +return x_505; +} +} +} +else +{ +lean_object* x_506; +x_506 = lean_box(0); +x_308 = x_506; +goto block_478; +} +} +else +{ +lean_object* x_507; +lean_dec(x_306); +x_507 = lean_box(0); +x_308 = x_507; +goto block_478; +} +block_478: +{ +lean_object* x_309; +lean_dec(x_308); +x_309 = l_Lean_ConstantInfo_value_x3f(x_301); +lean_dec(x_301); +if (lean_obj_tag(x_309) == 0) +{ +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; +lean_dec(x_303); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_295); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_1); +x_310 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_310, 0, x_296); +x_311 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_312 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_310); +x_313 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_314 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_314, 0, x_312); +lean_ctor_set(x_314, 1, x_313); +x_315 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_316 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_316, 0, x_315); +x_317 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_317, 0, x_316); +x_318 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_318, 0, x_314); +lean_ctor_set(x_318, 1, x_317); +x_319 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_320 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_320, 0, x_318); +lean_ctor_set(x_320, 1, x_319); +x_321 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_320, x_4, x_5, x_6, x_7, x_307); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_321; +} +else +{ +lean_object* x_322; lean_object* x_323; +lean_dec(x_296); +lean_dec(x_10); +x_322 = lean_ctor_get(x_309, 0); +lean_inc(x_322); +lean_dec(x_309); +x_323 = l_Lean_Environment_getModuleIdxFor_x3f(x_295, x_284); +lean_dec(x_295); +if (lean_obj_tag(x_323) == 0) +{ +lean_object* x_324; lean_object* x_325; lean_object* x_341; uint8_t x_342; lean_object* x_343; +x_341 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_322); +x_342 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_343 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_341, x_342, x_4, x_5, x_6, x_7, x_307); +if (lean_obj_tag(x_343) == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; +x_344 = lean_ctor_get(x_343, 0); +lean_inc(x_344); +x_345 = lean_ctor_get(x_343, 1); +lean_inc(x_345); +lean_dec(x_343); +x_346 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_347 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9___boxed), 9, 2); +lean_closure_set(x_347, 0, x_1); +lean_closure_set(x_347, 1, x_346); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_348 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_303, x_347, x_4, x_5, x_6, x_7, x_345); +if (lean_obj_tag(x_348) == 0) +{ +lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; +x_349 = lean_ctor_get(x_348, 0); +lean_inc(x_349); +x_350 = lean_ctor_get(x_348, 1); +lean_inc(x_350); +lean_dec(x_348); +x_351 = lean_box(0); +lean_inc(x_299); +x_352 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_352, 0, x_299); +lean_ctor_set(x_352, 1, x_351); +lean_ctor_set(x_352, 2, x_349); +x_353 = lean_box(0); +x_354 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_344); +lean_ctor_set(x_354, 2, x_353); +lean_ctor_set_uint8(x_354, sizeof(void*)*3, x_342); +x_355 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_355, 0, x_354); +x_356 = lean_st_ref_get(x_7, x_350); +x_357 = lean_ctor_get(x_356, 0); +lean_inc(x_357); +x_358 = lean_ctor_get(x_356, 1); +lean_inc(x_358); +lean_dec(x_356); +x_359 = lean_ctor_get(x_357, 0); +lean_inc(x_359); +lean_dec(x_357); +x_360 = l_Lean_Environment_addAndCompile(x_359, x_351, x_355); +lean_dec(x_355); +if (lean_obj_tag(x_360) == 0) +{ +lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_1); +x_361 = lean_ctor_get(x_360, 0); +lean_inc(x_361); +lean_dec(x_360); +x_362 = l_Lean_KernelException_toMessageData(x_361, x_351); +x_363 = lean_ctor_get(x_6, 3); +lean_inc(x_363); +x_364 = l_Lean_MessageData_toString(x_362, x_358); +if (lean_obj_tag(x_364) == 0) +{ +lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; uint8_t x_370; +lean_dec(x_363); +x_365 = lean_ctor_get(x_364, 0); +lean_inc(x_365); +x_366 = lean_ctor_get(x_364, 1); +lean_inc(x_366); +lean_dec(x_364); +x_367 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_367, 0, x_365); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_367); +x_369 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_368, x_4, x_5, x_6, x_7, x_366); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_370 = !lean_is_exclusive(x_369); +if (x_370 == 0) +{ +return x_369; +} +else +{ +lean_object* x_371; lean_object* x_372; lean_object* x_373; +x_371 = lean_ctor_get(x_369, 0); +x_372 = lean_ctor_get(x_369, 1); +lean_inc(x_372); +lean_inc(x_371); +lean_dec(x_369); +x_373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_373, 0, x_371); +lean_ctor_set(x_373, 1, x_372); +return x_373; +} +} +else +{ +uint8_t x_374; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_374 = !lean_is_exclusive(x_364); +if (x_374 == 0) +{ +lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; +x_375 = lean_ctor_get(x_364, 0); +x_376 = lean_io_error_to_string(x_375); +x_377 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_377, 0, x_376); +x_378 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_378, 0, x_377); +x_379 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_379, 0, x_363); +lean_ctor_set(x_379, 1, x_378); +lean_ctor_set(x_364, 0, x_379); +return x_364; +} +else +{ +lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; +x_380 = lean_ctor_get(x_364, 0); +x_381 = lean_ctor_get(x_364, 1); +lean_inc(x_381); +lean_inc(x_380); +lean_dec(x_364); +x_382 = lean_io_error_to_string(x_380); +x_383 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_383, 0, x_382); +x_384 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_384, 0, x_383); +x_385 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_385, 0, x_363); +lean_ctor_set(x_385, 1, x_384); +x_386 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_386, 0, x_385); +lean_ctor_set(x_386, 1, x_381); +return x_386; +} +} +} +else +{ +lean_object* x_387; +x_387 = lean_ctor_get(x_360, 0); lean_inc(x_387); -x_438 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_438, 0, x_387); -lean_ctor_set(x_438, 1, x_437); -lean_ctor_set(x_438, 2, x_435); -x_439 = lean_box(0); -x_440 = 0; -x_441 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_441, 0, x_438); -lean_ctor_set(x_441, 1, x_413); -lean_ctor_set(x_441, 2, x_439); -lean_ctor_set_uint8(x_441, sizeof(void*)*3, x_440); -x_442 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_442, 0, x_441); -x_443 = lean_st_ref_get(x_6, x_436); -x_444 = lean_ctor_get(x_443, 0); -lean_inc(x_444); -x_445 = lean_ctor_get(x_443, 1); -lean_inc(x_445); -lean_dec(x_443); -x_446 = lean_ctor_get(x_444, 0); -lean_inc(x_446); -lean_dec(x_444); -x_447 = l_Lean_Environment_addAndCompile(x_446, x_437, x_442); -lean_dec(x_442); -if (lean_obj_tag(x_447) == 0) +lean_dec(x_360); +x_324 = x_387; +x_325 = x_358; +goto block_340; +} +} +else { -lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; -lean_dec(x_387); -lean_dec(x_385); -lean_dec(x_379); -lean_dec(x_372); +uint8_t x_388; +lean_dec(x_344); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_1); -x_448 = lean_ctor_get(x_447, 0); +x_388 = !lean_is_exclusive(x_348); +if (x_388 == 0) +{ +return x_348; +} +else +{ +lean_object* x_389; lean_object* x_390; lean_object* x_391; +x_389 = lean_ctor_get(x_348, 0); +x_390 = lean_ctor_get(x_348, 1); +lean_inc(x_390); +lean_inc(x_389); +lean_dec(x_348); +x_391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_391, 0, x_389); +lean_ctor_set(x_391, 1, x_390); +return x_391; +} +} +} +else +{ +uint8_t x_392; +lean_dec(x_303); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_392 = !lean_is_exclusive(x_343); +if (x_392 == 0) +{ +return x_343; +} +else +{ +lean_object* x_393; lean_object* x_394; lean_object* x_395; +x_393 = lean_ctor_get(x_343, 0); +x_394 = lean_ctor_get(x_343, 1); +lean_inc(x_394); +lean_inc(x_393); +lean_dec(x_343); +x_395 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_395, 0, x_393); +lean_ctor_set(x_395, 1, x_394); +return x_395; +} +} +block_340: +{ +lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +lean_inc(x_299); +x_326 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_297, x_324, x_284, x_299); +x_327 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_326, x_4, x_5, x_6, x_7, x_325); +x_328 = lean_ctor_get(x_327, 1); +lean_inc(x_328); +lean_dec(x_327); +x_329 = lean_box(0); +x_330 = l_Lean_mkConst(x_299, x_329); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_330); +x_331 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_330, x_4, x_5, x_6, x_7, x_328); +if (lean_obj_tag(x_331) == 0) +{ +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +lean_dec(x_331); +x_334 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8___boxed), 11, 4); +lean_closure_set(x_334, 0, x_1); +lean_closure_set(x_334, 1, x_304); +lean_closure_set(x_334, 2, x_291); +lean_closure_set(x_334, 3, x_330); +x_335 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_332, x_334, x_4, x_5, x_6, x_7, x_333); +return x_335; +} +else +{ +uint8_t x_336; +lean_dec(x_330); +lean_dec(x_291); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_336 = !lean_is_exclusive(x_331); +if (x_336 == 0) +{ +return x_331; +} +else +{ +lean_object* x_337; lean_object* x_338; lean_object* x_339; +x_337 = lean_ctor_get(x_331, 0); +x_338 = lean_ctor_get(x_331, 1); +lean_inc(x_338); +lean_inc(x_337); +lean_dec(x_331); +x_339 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_339, 0, x_337); +lean_ctor_set(x_339, 1, x_338); +return x_339; +} +} +} +} +else +{ +lean_dec(x_323); +if (x_3 == 0) +{ +lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; uint8_t x_402; +lean_dec(x_322); +lean_dec(x_303); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_291); +lean_dec(x_1); +x_396 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_396, 0, x_284); +x_397 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_398 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_398, 0, x_397); +lean_ctor_set(x_398, 1, x_396); +x_399 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_400 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_400, 0, x_398); +lean_ctor_set(x_400, 1, x_399); +x_401 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_400, x_4, x_5, x_6, x_7, x_307); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_402 = !lean_is_exclusive(x_401); +if (x_402 == 0) +{ +return x_401; +} +else +{ +lean_object* x_403; lean_object* x_404; lean_object* x_405; +x_403 = lean_ctor_get(x_401, 0); +x_404 = lean_ctor_get(x_401, 1); +lean_inc(x_404); +lean_inc(x_403); +lean_dec(x_401); +x_405 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_405, 0, x_403); +lean_ctor_set(x_405, 1, x_404); +return x_405; +} +} +else +{ +lean_object* x_406; lean_object* x_407; lean_object* x_423; uint8_t x_424; lean_object* x_425; +x_423 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_322); +x_424 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_425 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_423, x_424, x_4, x_5, x_6, x_7, x_307); +if (lean_obj_tag(x_425) == 0) +{ +lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; +x_426 = lean_ctor_get(x_425, 0); +lean_inc(x_426); +x_427 = lean_ctor_get(x_425, 1); +lean_inc(x_427); +lean_dec(x_425); +x_428 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_429 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13___boxed), 9, 2); +lean_closure_set(x_429, 0, x_1); +lean_closure_set(x_429, 1, x_428); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_430 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_303, x_429, x_4, x_5, x_6, x_7, x_427); +if (lean_obj_tag(x_430) == 0) +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; +x_431 = lean_ctor_get(x_430, 0); +lean_inc(x_431); +x_432 = lean_ctor_get(x_430, 1); +lean_inc(x_432); +lean_dec(x_430); +x_433 = lean_box(0); +lean_inc(x_299); +x_434 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_434, 0, x_299); +lean_ctor_set(x_434, 1, x_433); +lean_ctor_set(x_434, 2, x_431); +x_435 = lean_box(0); +x_436 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_436, 0, x_434); +lean_ctor_set(x_436, 1, x_426); +lean_ctor_set(x_436, 2, x_435); +lean_ctor_set_uint8(x_436, sizeof(void*)*3, x_424); +x_437 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_437, 0, x_436); +x_438 = lean_st_ref_get(x_7, x_432); +x_439 = lean_ctor_get(x_438, 0); +lean_inc(x_439); +x_440 = lean_ctor_get(x_438, 1); +lean_inc(x_440); +lean_dec(x_438); +x_441 = lean_ctor_get(x_439, 0); +lean_inc(x_441); +lean_dec(x_439); +x_442 = l_Lean_Environment_addAndCompile(x_441, x_433, x_437); +lean_dec(x_437); +if (lean_obj_tag(x_442) == 0) +{ +lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_1); +x_443 = lean_ctor_get(x_442, 0); +lean_inc(x_443); +lean_dec(x_442); +x_444 = l_Lean_KernelException_toMessageData(x_443, x_433); +x_445 = lean_ctor_get(x_6, 3); +lean_inc(x_445); +x_446 = l_Lean_MessageData_toString(x_444, x_440); +if (lean_obj_tag(x_446) == 0) +{ +lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; uint8_t x_452; +lean_dec(x_445); +x_447 = lean_ctor_get(x_446, 0); +lean_inc(x_447); +x_448 = lean_ctor_get(x_446, 1); lean_inc(x_448); -lean_dec(x_447); -x_449 = l_Lean_KernelException_toMessageData(x_448, x_437); -x_450 = lean_ctor_get(x_5, 3); -lean_inc(x_450); -x_451 = l_Lean_MessageData_toString(x_449, x_445); -if (lean_obj_tag(x_451) == 0) -{ -lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; uint8_t x_457; -lean_dec(x_450); -x_452 = lean_ctor_get(x_451, 0); -lean_inc(x_452); -x_453 = lean_ctor_get(x_451, 1); -lean_inc(x_453); -lean_dec(x_451); -x_454 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_454, 0, x_452); -x_455 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_455, 0, x_454); -x_456 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_455, x_3, x_4, x_5, x_6, x_453); +lean_dec(x_446); +x_449 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_449, 0, x_447); +x_450 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_450, 0, x_449); +x_451 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_450, x_4, x_5, x_6, x_7, x_448); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -x_457 = !lean_is_exclusive(x_456); -if (x_457 == 0) +x_452 = !lean_is_exclusive(x_451); +if (x_452 == 0) { -return x_456; -} -else -{ -lean_object* x_458; lean_object* x_459; lean_object* x_460; -x_458 = lean_ctor_get(x_456, 0); -x_459 = lean_ctor_get(x_456, 1); -lean_inc(x_459); -lean_inc(x_458); -lean_dec(x_456); -x_460 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_460, 0, x_458); -lean_ctor_set(x_460, 1, x_459); -return x_460; -} -} -else -{ -uint8_t x_461; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_461 = !lean_is_exclusive(x_451); -if (x_461 == 0) -{ -lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; -x_462 = lean_ctor_get(x_451, 0); -x_463 = lean_io_error_to_string(x_462); -x_464 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_464, 0, x_463); -x_465 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_465, 0, x_464); -x_466 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_466, 0, x_450); -lean_ctor_set(x_466, 1, x_465); -lean_ctor_set(x_451, 0, x_466); return x_451; } else { -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; -x_467 = lean_ctor_get(x_451, 0); -x_468 = lean_ctor_get(x_451, 1); -lean_inc(x_468); -lean_inc(x_467); +lean_object* x_453; lean_object* x_454; lean_object* x_455; +x_453 = lean_ctor_get(x_451, 0); +x_454 = lean_ctor_get(x_451, 1); +lean_inc(x_454); +lean_inc(x_453); lean_dec(x_451); -x_469 = lean_io_error_to_string(x_467); -x_470 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_470, 0, x_469); -x_471 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_471, 0, x_470); -x_472 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_472, 0, x_450); -lean_ctor_set(x_472, 1, x_471); +x_455 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_455, 0, x_453); +lean_ctor_set(x_455, 1, x_454); +return x_455; +} +} +else +{ +uint8_t x_456; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_456 = !lean_is_exclusive(x_446); +if (x_456 == 0) +{ +lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; +x_457 = lean_ctor_get(x_446, 0); +x_458 = lean_io_error_to_string(x_457); +x_459 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_459, 0, x_458); +x_460 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_460, 0, x_459); +x_461 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_461, 0, x_445); +lean_ctor_set(x_461, 1, x_460); +lean_ctor_set(x_446, 0, x_461); +return x_446; +} +else +{ +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; +x_462 = lean_ctor_get(x_446, 0); +x_463 = lean_ctor_get(x_446, 1); +lean_inc(x_463); +lean_inc(x_462); +lean_dec(x_446); +x_464 = lean_io_error_to_string(x_462); +x_465 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_465, 0, x_464); +x_466 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_466, 0, x_465); +x_467 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_467, 0, x_445); +lean_ctor_set(x_467, 1, x_466); +x_468 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_468, 0, x_467); +lean_ctor_set(x_468, 1, x_463); +return x_468; +} +} +} +else +{ +lean_object* x_469; +x_469 = lean_ctor_get(x_442, 0); +lean_inc(x_469); +lean_dec(x_442); +x_406 = x_469; +x_407 = x_440; +goto block_422; +} +} +else +{ +uint8_t x_470; +lean_dec(x_426); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_470 = !lean_is_exclusive(x_430); +if (x_470 == 0) +{ +return x_430; +} +else +{ +lean_object* x_471; lean_object* x_472; lean_object* x_473; +x_471 = lean_ctor_get(x_430, 0); +x_472 = lean_ctor_get(x_430, 1); +lean_inc(x_472); +lean_inc(x_471); +lean_dec(x_430); x_473 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_473, 0, x_472); -lean_ctor_set(x_473, 1, x_468); +lean_ctor_set(x_473, 0, x_471); +lean_ctor_set(x_473, 1, x_472); return x_473; } } } else { -lean_object* x_474; -x_474 = lean_ctor_get(x_447, 0); -lean_inc(x_474); -lean_dec(x_447); -x_415 = x_474; -x_416 = x_445; -goto block_431; -} -} -else -{ -uint8_t x_475; -lean_dec(x_413); -lean_dec(x_387); -lean_dec(x_385); -lean_dec(x_379); -lean_dec(x_372); +uint8_t x_474; +lean_dec(x_303); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_475 = !lean_is_exclusive(x_434); -if (x_475 == 0) +x_474 = !lean_is_exclusive(x_425); +if (x_474 == 0) { -return x_434; +return x_425; } else { -lean_object* x_476; lean_object* x_477; lean_object* x_478; -x_476 = lean_ctor_get(x_434, 0); -x_477 = lean_ctor_get(x_434, 1); -lean_inc(x_477); +lean_object* x_475; lean_object* x_476; lean_object* x_477; +x_475 = lean_ctor_get(x_425, 0); +x_476 = lean_ctor_get(x_425, 1); lean_inc(x_476); -lean_dec(x_434); -x_478 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_478, 0, x_476); -lean_ctor_set(x_478, 1, x_477); -return x_478; +lean_inc(x_475); +lean_dec(x_425); +x_477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_477, 0, x_475); +lean_ctor_set(x_477, 1, x_476); +return x_477; } } -block_431: +block_422: { -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_inc(x_387); -x_417 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_385, x_415, x_372, x_387); -x_418 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_417, x_3, x_4, x_5, x_6, x_416); -x_419 = lean_ctor_get(x_418, 1); -lean_inc(x_419); -lean_dec(x_418); -x_420 = lean_box(0); -x_421 = l_Lean_mkConst(x_387, x_420); +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_inc(x_299); +x_408 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_297, x_406, x_284, x_299); +x_409 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_408, x_4, x_5, x_6, x_7, x_407); +x_410 = lean_ctor_get(x_409, 1); +lean_inc(x_410); +lean_dec(x_409); +x_411 = lean_box(0); +x_412 = l_Lean_mkConst(x_299, x_411); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_421); -x_422 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_421, x_3, x_4, x_5, x_6, x_419); -if (lean_obj_tag(x_422) == 0) +lean_inc(x_412); +x_413 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_412, x_4, x_5, x_6, x_7, x_410); +if (lean_obj_tag(x_413) == 0) { -lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; -x_423 = lean_ctor_get(x_422, 0); -lean_inc(x_423); -x_424 = lean_ctor_get(x_422, 1); -lean_inc(x_424); -lean_dec(x_422); -x_425 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7___boxed), 11, 4); -lean_closure_set(x_425, 0, x_1); -lean_closure_set(x_425, 1, x_392); -lean_closure_set(x_425, 2, x_379); -lean_closure_set(x_425, 3, x_421); -x_426 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_423, x_425, x_3, x_4, x_5, x_6, x_424); -return x_426; +lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; +x_414 = lean_ctor_get(x_413, 0); +lean_inc(x_414); +x_415 = lean_ctor_get(x_413, 1); +lean_inc(x_415); +lean_dec(x_413); +x_416 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12___boxed), 11, 4); +lean_closure_set(x_416, 0, x_1); +lean_closure_set(x_416, 1, x_304); +lean_closure_set(x_416, 2, x_291); +lean_closure_set(x_416, 3, x_412); +x_417 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_414, x_416, x_4, x_5, x_6, x_7, x_415); +return x_417; } else { -uint8_t x_427; -lean_dec(x_421); -lean_dec(x_379); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_427 = !lean_is_exclusive(x_422); -if (x_427 == 0) -{ -return x_422; -} -else -{ -lean_object* x_428; lean_object* x_429; lean_object* x_430; -x_428 = lean_ctor_get(x_422, 0); -x_429 = lean_ctor_get(x_422, 1); -lean_inc(x_429); -lean_inc(x_428); -lean_dec(x_422); -x_430 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_430, 0, x_428); -lean_ctor_set(x_430, 1, x_429); -return x_430; -} -} -} -} -else -{ -uint8_t x_479; -lean_dec(x_391); -lean_dec(x_387); -lean_dec(x_385); -lean_dec(x_379); -lean_dec(x_372); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_479 = !lean_is_exclusive(x_412); -if (x_479 == 0) -{ -return x_412; -} -else -{ -lean_object* x_480; lean_object* x_481; lean_object* x_482; -x_480 = lean_ctor_get(x_412, 0); -x_481 = lean_ctor_get(x_412, 1); -lean_inc(x_481); -lean_inc(x_480); +uint8_t x_418; lean_dec(x_412); -x_482 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_482, 0, x_480); -lean_ctor_set(x_482, 1, x_481); -return x_482; +lean_dec(x_291); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_418 = !lean_is_exclusive(x_413); +if (x_418 == 0) +{ +return x_413; +} +else +{ +lean_object* x_419; lean_object* x_420; lean_object* x_421; +x_419 = lean_ctor_get(x_413, 0); +x_420 = lean_ctor_get(x_413, 1); +lean_inc(x_420); +lean_inc(x_419); +lean_dec(x_413); +x_421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_421, 0, x_419); +lean_ctor_set(x_421, 1, x_420); +return x_421; } } } } } +} +} +} +else +{ +uint8_t x_508; +lean_dec(x_303); +lean_dec(x_301); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_295); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_508 = !lean_is_exclusive(x_305); +if (x_508 == 0) +{ +return x_305; +} +else +{ +lean_object* x_509; lean_object* x_510; lean_object* x_511; +x_509 = lean_ctor_get(x_305, 0); +x_510 = lean_ctor_get(x_305, 1); +lean_inc(x_510); +lean_inc(x_509); +lean_dec(x_305); +x_511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_511, 0, x_509); +lean_ctor_set(x_511, 1, x_510); +return x_511; +} +} +} else { uint8_t x_512; -lean_dec(x_391); -lean_dec(x_389); -lean_dec(x_387); -lean_dec(x_385); -lean_dec(x_384); -lean_dec(x_379); -lean_dec(x_372); -lean_dec(x_9); +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_295); +lean_dec(x_291); +lean_dec(x_284); +lean_dec(x_10); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_512 = !lean_is_exclusive(x_393); +x_512 = !lean_is_exclusive(x_300); if (x_512 == 0) { -return x_393; +return x_300; } else { lean_object* x_513; lean_object* x_514; lean_object* x_515; -x_513 = lean_ctor_get(x_393, 0); -x_514 = lean_ctor_get(x_393, 1); +x_513 = lean_ctor_get(x_300, 0); +x_514 = lean_ctor_get(x_300, 1); lean_inc(x_514); lean_inc(x_513); -lean_dec(x_393); +lean_dec(x_300); x_515 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_515, 0, x_513); lean_ctor_set(x_515, 1, x_514); @@ -10042,2193 +18635,2213 @@ return x_515; } else { -uint8_t x_516; -lean_dec(x_387); -lean_dec(x_385); -lean_dec(x_384); -lean_dec(x_379); -lean_dec(x_372); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_516 = !lean_is_exclusive(x_388); -if (x_516 == 0) -{ -return x_388; -} -else -{ -lean_object* x_517; lean_object* x_518; lean_object* x_519; -x_517 = lean_ctor_get(x_388, 0); -x_518 = lean_ctor_get(x_388, 1); -lean_inc(x_518); -lean_inc(x_517); -lean_dec(x_388); -x_519 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_519, 0, x_517); -lean_ctor_set(x_519, 1, x_518); -return x_519; -} -} -} -else -{ -lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; -lean_dec(x_385); -lean_dec(x_384); -lean_dec(x_372); -lean_dec(x_9); -x_520 = lean_ctor_get(x_386, 0); -lean_inc(x_520); -lean_dec(x_386); -x_521 = lean_box(0); -x_522 = l_Lean_mkConst(x_520, x_521); +lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_295); +lean_dec(x_284); +lean_dec(x_10); +x_516 = lean_ctor_get(x_298, 0); +lean_inc(x_516); +lean_dec(x_298); +x_517 = lean_box(0); +x_518 = l_Lean_mkConst(x_516, x_517); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_522); -x_523 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_522, x_3, x_4, x_5, x_6, x_382); -if (lean_obj_tag(x_523) == 0) -{ -lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; -x_524 = lean_ctor_get(x_523, 0); -lean_inc(x_524); -x_525 = lean_ctor_get(x_523, 1); -lean_inc(x_525); -lean_dec(x_523); -x_526 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9___boxed), 10, 3); -lean_closure_set(x_526, 0, x_1); -lean_closure_set(x_526, 1, x_379); -lean_closure_set(x_526, 2, x_522); -x_527 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_524, x_526, x_3, x_4, x_5, x_6, x_525); -return x_527; -} -else -{ -uint8_t x_528; -lean_dec(x_522); -lean_dec(x_379); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_528 = !lean_is_exclusive(x_523); -if (x_528 == 0) +lean_inc(x_518); +x_519 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_518, x_4, x_5, x_6, x_7, x_294); +if (lean_obj_tag(x_519) == 0) { +lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; +x_520 = lean_ctor_get(x_519, 0); +lean_inc(x_520); +x_521 = lean_ctor_get(x_519, 1); +lean_inc(x_521); +lean_dec(x_519); +x_522 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14___boxed), 10, 3); +lean_closure_set(x_522, 0, x_1); +lean_closure_set(x_522, 1, x_291); +lean_closure_set(x_522, 2, x_518); +x_523 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_520, x_522, x_4, x_5, x_6, x_7, x_521); return x_523; } else { -lean_object* x_529; lean_object* x_530; lean_object* x_531; -x_529 = lean_ctor_get(x_523, 0); -x_530 = lean_ctor_get(x_523, 1); -lean_inc(x_530); -lean_inc(x_529); -lean_dec(x_523); -x_531 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_531, 0, x_529); -lean_ctor_set(x_531, 1, x_530); -return x_531; +uint8_t x_524; +lean_dec(x_518); +lean_dec(x_291); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_524 = !lean_is_exclusive(x_519); +if (x_524 == 0) +{ +return x_519; +} +else +{ +lean_object* x_525; lean_object* x_526; lean_object* x_527; +x_525 = lean_ctor_get(x_519, 0); +x_526 = lean_ctor_get(x_519, 1); +lean_inc(x_526); +lean_inc(x_525); +lean_dec(x_519); +x_527 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_527, 0, x_525); +lean_ctor_set(x_527, 1, x_526); +return x_527; } } } } else { -lean_object* x_532; -lean_dec(x_361); +lean_object* x_528; +lean_dec(x_273); lean_dec(x_1); -x_532 = lean_box(0); -x_362 = x_532; -goto block_371; +x_528 = lean_box(0); +x_274 = x_528; +goto block_283; } -block_371: +block_283: { -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_dec(x_362); -x_363 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_364 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_364, 0, x_363); -x_365 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_365, 0, x_364); -x_366 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_367 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_367, 0, x_366); -lean_ctor_set(x_367, 1, x_365); -x_368 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_369 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_369, 0, x_367); -lean_ctor_set(x_369, 1, x_368); -x_370 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_369, x_3, x_4, x_5, x_6, x_360); +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_dec(x_274); +x_275 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_276 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_276, 0, x_275); +x_277 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_277, 0, x_276); +x_278 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_279 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_279, 0, x_278); +lean_ctor_set(x_279, 1, x_277); +x_280 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_281 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_281, 0, x_279); +lean_ctor_set(x_281, 1, x_280); +x_282 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_281, x_4, x_5, x_6, x_7, x_272); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_370; +return x_282; } } -case 4: +case 3: { -lean_object* x_533; lean_object* x_534; lean_object* x_535; -x_533 = lean_ctor_get(x_8, 1); -lean_inc(x_533); -lean_dec(x_8); -x_534 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_534) == 4) +lean_object* x_529; lean_object* x_530; lean_object* x_531; +x_529 = lean_ctor_get(x_9, 1); +lean_inc(x_529); +lean_dec(x_9); +x_530 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_530) == 4) { -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; -x_545 = lean_ctor_get(x_534, 0); -lean_inc(x_545); -lean_dec(x_534); -x_546 = lean_unsigned_to_nat(0u); -x_547 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_546); -x_548 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_547); -x_549 = lean_mk_array(x_547, x_548); -x_550 = lean_unsigned_to_nat(1u); -x_551 = lean_nat_sub(x_547, x_550); -lean_dec(x_547); -lean_inc(x_9); -x_552 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_549, x_551); -x_553 = lean_st_ref_get(x_6, x_533); -x_554 = lean_ctor_get(x_553, 0); +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; +x_541 = lean_ctor_get(x_530, 0); +lean_inc(x_541); +lean_dec(x_530); +x_542 = lean_unsigned_to_nat(0u); +x_543 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_542); +x_544 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_543); +x_545 = lean_mk_array(x_543, x_544); +x_546 = lean_unsigned_to_nat(1u); +x_547 = lean_nat_sub(x_543, x_546); +lean_dec(x_543); +lean_inc(x_10); +x_548 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_545, x_547); +x_549 = lean_st_ref_get(x_7, x_529); +x_550 = lean_ctor_get(x_549, 0); +lean_inc(x_550); +x_551 = lean_ctor_get(x_549, 1); +lean_inc(x_551); +lean_dec(x_549); +x_552 = lean_ctor_get(x_550, 0); +lean_inc(x_552); +lean_dec(x_550); +x_553 = lean_ctor_get(x_1, 0); +lean_inc(x_553); +x_554 = lean_ctor_get(x_1, 2); lean_inc(x_554); -x_555 = lean_ctor_get(x_553, 1); -lean_inc(x_555); -lean_dec(x_553); -x_556 = lean_ctor_get(x_554, 0); -lean_inc(x_556); -lean_dec(x_554); -x_557 = lean_ctor_get(x_1, 0); -lean_inc(x_557); -x_558 = lean_ctor_get(x_1, 2); +x_555 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_554, x_552, x_541); +if (lean_obj_tag(x_555) == 0) +{ +lean_object* x_556; lean_object* x_557; +lean_inc(x_553); +x_556 = l_Lean_Name_append___main(x_541, x_553); +lean_inc(x_541); +x_557 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_541, x_4, x_5, x_6, x_7, x_551); +if (lean_obj_tag(x_557) == 0) +{ +lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; +x_558 = lean_ctor_get(x_557, 0); lean_inc(x_558); -x_559 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_558, x_556, x_545); -lean_dec(x_556); -if (lean_obj_tag(x_559) == 0) -{ -lean_object* x_560; lean_object* x_561; -lean_inc(x_557); -x_560 = l_Lean_Name_append___main(x_545, x_557); -lean_inc(x_545); -x_561 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_545, x_3, x_4, x_5, x_6, x_555); -if (lean_obj_tag(x_561) == 0) -{ -lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; -x_562 = lean_ctor_get(x_561, 0); -lean_inc(x_562); -x_563 = lean_ctor_get(x_561, 1); -lean_inc(x_563); -lean_dec(x_561); -x_564 = l_Lean_ConstantInfo_type(x_562); -x_565 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; +x_559 = lean_ctor_get(x_557, 1); +lean_inc(x_559); +lean_dec(x_557); +x_560 = l_Lean_ConstantInfo_type(x_558); +x_561 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); +lean_inc(x_560); +x_562 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_560, x_561, x_4, x_5, x_6, x_7, x_559); +if (lean_obj_tag(x_562) == 0) +{ +lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_736; uint8_t x_737; +x_563 = lean_ctor_get(x_562, 0); +lean_inc(x_563); +x_564 = lean_ctor_get(x_562, 1); lean_inc(x_564); -x_566 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_564, x_565, x_3, x_4, x_5, x_6, x_563); +lean_dec(x_562); +x_736 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_737 = l_Lean_Expr_isConstOf(x_563, x_736); +if (x_737 == 0) +{ +lean_object* x_738; uint8_t x_739; +x_738 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_739 = l_Lean_Expr_isConstOf(x_563, x_738); +lean_dec(x_563); +if (x_739 == 0) +{ +lean_object* x_740; +lean_dec(x_560); +lean_dec(x_558); +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_552); +lean_dec(x_548); +lean_dec(x_541); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_740 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_564); +if (lean_obj_tag(x_740) == 0) +{ +lean_object* x_741; +x_741 = lean_ctor_get(x_740, 0); +lean_inc(x_741); +if (lean_obj_tag(x_741) == 0) +{ +lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; +lean_dec(x_1); +x_742 = lean_ctor_get(x_740, 1); +lean_inc(x_742); +lean_dec(x_740); +x_743 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_743, 0, x_553); +x_744 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_745 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_745, 0, x_744); +lean_ctor_set(x_745, 1, x_743); +x_746 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_747 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_747, 0, x_745); +lean_ctor_set(x_747, 1, x_746); +x_748 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_749 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_749, 0, x_748); +x_750 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_750, 0, x_749); +x_751 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_751, 0, x_747); +lean_ctor_set(x_751, 1, x_750); +x_752 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_753 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_753, 0, x_751); +lean_ctor_set(x_753, 1, x_752); +x_754 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_753, x_4, x_5, x_6, x_7, x_742); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_754; +} +else +{ +lean_object* x_755; lean_object* x_756; uint8_t x_757; +lean_dec(x_553); +lean_dec(x_10); +x_755 = lean_ctor_get(x_740, 1); +lean_inc(x_755); +lean_dec(x_740); +x_756 = lean_ctor_get(x_741, 0); +lean_inc(x_756); +lean_dec(x_741); +x_757 = 0; +x_2 = x_756; +x_3 = x_757; +x_8 = x_755; +goto _start; +} +} +else +{ +uint8_t x_759; +lean_dec(x_553); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_759 = !lean_is_exclusive(x_740); +if (x_759 == 0) +{ +return x_740; +} +else +{ +lean_object* x_760; lean_object* x_761; lean_object* x_762; +x_760 = lean_ctor_get(x_740, 0); +x_761 = lean_ctor_get(x_740, 1); +lean_inc(x_761); +lean_inc(x_760); +lean_dec(x_740); +x_762 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_762, 0, x_760); +lean_ctor_set(x_762, 1, x_761); +return x_762; +} +} +} +else +{ +lean_object* x_763; +x_763 = lean_box(0); +x_565 = x_763; +goto block_735; +} +} +else +{ +lean_object* x_764; +lean_dec(x_563); +x_764 = lean_box(0); +x_565 = x_764; +goto block_735; +} +block_735: +{ +lean_object* x_566; +lean_dec(x_565); +x_566 = l_Lean_ConstantInfo_value_x3f(x_558); +lean_dec(x_558); if (lean_obj_tag(x_566) == 0) { -lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_657; uint8_t x_658; -x_567 = lean_ctor_get(x_566, 0); -lean_inc(x_567); -x_568 = lean_ctor_get(x_566, 1); -lean_inc(x_568); -lean_dec(x_566); -x_657 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_658 = l_Lean_Expr_isConstOf(x_567, x_657); -if (x_658 == 0) -{ -lean_object* x_659; uint8_t x_660; -x_659 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_660 = l_Lean_Expr_isConstOf(x_567, x_659); -lean_dec(x_567); -if (x_660 == 0) -{ -lean_object* x_661; -lean_dec(x_564); -lean_dec(x_562); +lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_dec(x_560); -lean_dec(x_558); +lean_dec(x_556); +lean_dec(x_554); lean_dec(x_552); -lean_dec(x_545); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_661 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_568); -if (lean_obj_tag(x_661) == 0) -{ -lean_object* x_662; -x_662 = lean_ctor_get(x_661, 0); -lean_inc(x_662); -if (lean_obj_tag(x_662) == 0) -{ -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_dec(x_548); +lean_dec(x_541); lean_dec(x_1); -x_663 = lean_ctor_get(x_661, 1); -lean_inc(x_663); -lean_dec(x_661); -x_664 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_664, 0, x_557); -x_665 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_666 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_666, 0, x_665); -lean_ctor_set(x_666, 1, x_664); -x_667 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_668 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_668, 0, x_666); -lean_ctor_set(x_668, 1, x_667); -x_669 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_670 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_670, 0, x_669); -x_671 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_671, 0, x_670); -x_672 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_672, 0, x_668); -lean_ctor_set(x_672, 1, x_671); -x_673 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_674 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_674, 0, x_672); -lean_ctor_set(x_674, 1, x_673); -x_675 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_674, x_3, x_4, x_5, x_6, x_663); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_675; -} -else -{ -lean_object* x_676; lean_object* x_677; -lean_dec(x_557); -lean_dec(x_9); -x_676 = lean_ctor_get(x_661, 1); -lean_inc(x_676); -lean_dec(x_661); -x_677 = lean_ctor_get(x_662, 0); -lean_inc(x_677); -lean_dec(x_662); -x_2 = x_677; -x_7 = x_676; -goto _start; -} -} -else -{ -uint8_t x_679; -lean_dec(x_557); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_679 = !lean_is_exclusive(x_661); -if (x_679 == 0) -{ -return x_661; -} -else -{ -lean_object* x_680; lean_object* x_681; lean_object* x_682; -x_680 = lean_ctor_get(x_661, 0); -x_681 = lean_ctor_get(x_661, 1); -lean_inc(x_681); -lean_inc(x_680); -lean_dec(x_661); -x_682 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_682, 0, x_680); -lean_ctor_set(x_682, 1, x_681); -return x_682; -} -} -} -else -{ -lean_object* x_683; -x_683 = lean_box(0); -x_569 = x_683; -goto block_656; -} -} -else -{ -lean_object* x_684; -lean_dec(x_567); -x_684 = lean_box(0); -x_569 = x_684; -goto block_656; -} -block_656: -{ -lean_object* x_570; -lean_dec(x_569); -x_570 = l_Lean_ConstantInfo_value_x3f(x_562); -lean_dec(x_562); -if (lean_obj_tag(x_570) == 0) -{ -lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; -lean_dec(x_564); -lean_dec(x_560); -lean_dec(x_558); -lean_dec(x_552); -lean_dec(x_545); -lean_dec(x_1); -x_571 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_571, 0, x_557); -x_572 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_573 = lean_alloc_ctor(10, 2, 0); +x_567 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_567, 0, x_553); +x_568 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_569 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_569, 0, x_568); +lean_ctor_set(x_569, 1, x_567); +x_570 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_571 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_571, 0, x_569); +lean_ctor_set(x_571, 1, x_570); +x_572 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_573 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_573, 0, x_572); -lean_ctor_set(x_573, 1, x_571); -x_574 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_574 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_574, 0, x_573); x_575 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_575, 0, x_573); +lean_ctor_set(x_575, 0, x_571); lean_ctor_set(x_575, 1, x_574); -x_576 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_577 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_577, 0, x_576); -x_578 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_578, 0, x_577); -x_579 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_579, 0, x_575); -lean_ctor_set(x_579, 1, x_578); -x_580 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_581 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_581, 0, x_579); -lean_ctor_set(x_581, 1, x_580); -x_582 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_581, x_3, x_4, x_5, x_6, x_568); +x_576 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_577 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_577, 0, x_575); +lean_ctor_set(x_577, 1, x_576); +x_578 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_577, x_4, x_5, x_6, x_7, x_564); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_582; +return x_578; } else { -lean_object* x_583; lean_object* x_584; lean_object* x_585; -lean_dec(x_557); -lean_dec(x_9); -x_583 = lean_ctor_get(x_570, 0); -lean_inc(x_583); -lean_dec(x_570); -x_584 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_583); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_585 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_584, x_3, x_4, x_5, x_6, x_568); -if (lean_obj_tag(x_585) == 0) -{ -lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_605; lean_object* x_606; lean_object* x_607; -x_586 = lean_ctor_get(x_585, 0); -lean_inc(x_586); -x_587 = lean_ctor_get(x_585, 1); -lean_inc(x_587); -lean_dec(x_585); -x_605 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_606 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__11___boxed), 9, 2); -lean_closure_set(x_606, 0, x_1); -lean_closure_set(x_606, 1, x_605); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_607 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_564, x_606, x_3, x_4, x_5, x_6, x_587); -if (lean_obj_tag(x_607) == 0) -{ -lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; uint8_t 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; -x_608 = lean_ctor_get(x_607, 0); -lean_inc(x_608); -x_609 = lean_ctor_get(x_607, 1); -lean_inc(x_609); -lean_dec(x_607); -x_610 = lean_box(0); -lean_inc(x_560); -x_611 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_611, 0, x_560); -lean_ctor_set(x_611, 1, x_610); -lean_ctor_set(x_611, 2, x_608); -x_612 = lean_box(0); -x_613 = 0; -x_614 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_614, 0, x_611); -lean_ctor_set(x_614, 1, x_586); -lean_ctor_set(x_614, 2, x_612); -lean_ctor_set_uint8(x_614, sizeof(void*)*3, x_613); -x_615 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_615, 0, x_614); -x_616 = lean_st_ref_get(x_6, x_609); -x_617 = lean_ctor_get(x_616, 0); -lean_inc(x_617); -x_618 = lean_ctor_get(x_616, 1); -lean_inc(x_618); -lean_dec(x_616); -x_619 = lean_ctor_get(x_617, 0); -lean_inc(x_619); -lean_dec(x_617); -x_620 = l_Lean_Environment_addAndCompile(x_619, x_610, x_615); -lean_dec(x_615); -if (lean_obj_tag(x_620) == 0) -{ -lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; -lean_dec(x_560); -lean_dec(x_558); -lean_dec(x_552); -lean_dec(x_545); -lean_dec(x_1); -x_621 = lean_ctor_get(x_620, 0); -lean_inc(x_621); -lean_dec(x_620); -x_622 = l_Lean_KernelException_toMessageData(x_621, x_610); -x_623 = lean_ctor_get(x_5, 3); -lean_inc(x_623); -x_624 = l_Lean_MessageData_toString(x_622, x_618); -if (lean_obj_tag(x_624) == 0) -{ -lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; uint8_t x_630; -lean_dec(x_623); -x_625 = lean_ctor_get(x_624, 0); -lean_inc(x_625); -x_626 = lean_ctor_get(x_624, 1); -lean_inc(x_626); -lean_dec(x_624); -x_627 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_627, 0, x_625); -x_628 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_628, 0, x_627); -x_629 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_628, x_3, x_4, x_5, x_6, x_626); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_630 = !lean_is_exclusive(x_629); -if (x_630 == 0) -{ -return x_629; -} -else -{ -lean_object* x_631; lean_object* x_632; lean_object* x_633; -x_631 = lean_ctor_get(x_629, 0); -x_632 = lean_ctor_get(x_629, 1); -lean_inc(x_632); -lean_inc(x_631); -lean_dec(x_629); -x_633 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_633, 0, x_631); -lean_ctor_set(x_633, 1, x_632); -return x_633; -} -} -else -{ -uint8_t x_634; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_634 = !lean_is_exclusive(x_624); -if (x_634 == 0) -{ -lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; -x_635 = lean_ctor_get(x_624, 0); -x_636 = lean_io_error_to_string(x_635); -x_637 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_637, 0, x_636); -x_638 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_638, 0, x_637); -x_639 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_639, 0, x_623); -lean_ctor_set(x_639, 1, x_638); -lean_ctor_set(x_624, 0, x_639); -return x_624; -} -else -{ -lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; -x_640 = lean_ctor_get(x_624, 0); -x_641 = lean_ctor_get(x_624, 1); -lean_inc(x_641); -lean_inc(x_640); -lean_dec(x_624); -x_642 = lean_io_error_to_string(x_640); -x_643 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_643, 0, x_642); -x_644 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_644, 0, x_643); -x_645 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_645, 0, x_623); -lean_ctor_set(x_645, 1, x_644); -x_646 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_646, 0, x_645); -lean_ctor_set(x_646, 1, x_641); -return x_646; -} -} -} -else -{ -lean_object* x_647; -x_647 = lean_ctor_get(x_620, 0); -lean_inc(x_647); -lean_dec(x_620); -x_588 = x_647; -x_589 = x_618; -goto block_604; -} -} -else -{ -uint8_t x_648; -lean_dec(x_586); -lean_dec(x_560); -lean_dec(x_558); -lean_dec(x_552); -lean_dec(x_545); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_648 = !lean_is_exclusive(x_607); -if (x_648 == 0) -{ -return x_607; -} -else -{ -lean_object* x_649; lean_object* x_650; lean_object* x_651; -x_649 = lean_ctor_get(x_607, 0); -x_650 = lean_ctor_get(x_607, 1); -lean_inc(x_650); -lean_inc(x_649); -lean_dec(x_607); -x_651 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_651, 0, x_649); -lean_ctor_set(x_651, 1, x_650); -return x_651; -} -} -block_604: -{ -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_inc(x_560); -x_590 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_558, x_588, x_545, x_560); -x_591 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_590, x_3, x_4, x_5, x_6, x_589); -x_592 = lean_ctor_get(x_591, 1); -lean_inc(x_592); -lean_dec(x_591); -x_593 = lean_box(0); -x_594 = l_Lean_mkConst(x_560, x_593); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_594); -x_595 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_594, x_3, x_4, x_5, x_6, x_592); -if (lean_obj_tag(x_595) == 0) -{ -lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; -x_596 = lean_ctor_get(x_595, 0); -lean_inc(x_596); -x_597 = lean_ctor_get(x_595, 1); -lean_inc(x_597); -lean_dec(x_595); -x_598 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__10___boxed), 11, 4); -lean_closure_set(x_598, 0, x_1); -lean_closure_set(x_598, 1, x_565); -lean_closure_set(x_598, 2, x_552); -lean_closure_set(x_598, 3, x_594); -x_599 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_596, x_598, x_3, x_4, x_5, x_6, x_597); -return x_599; -} -else -{ -uint8_t x_600; -lean_dec(x_594); -lean_dec(x_552); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_600 = !lean_is_exclusive(x_595); -if (x_600 == 0) -{ -return x_595; -} -else -{ -lean_object* x_601; lean_object* x_602; lean_object* x_603; -x_601 = lean_ctor_get(x_595, 0); -x_602 = lean_ctor_get(x_595, 1); -lean_inc(x_602); -lean_inc(x_601); -lean_dec(x_595); -x_603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_603, 0, x_601); -lean_ctor_set(x_603, 1, x_602); -return x_603; -} -} -} -} -else -{ -uint8_t x_652; -lean_dec(x_564); -lean_dec(x_560); -lean_dec(x_558); -lean_dec(x_552); -lean_dec(x_545); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_652 = !lean_is_exclusive(x_585); -if (x_652 == 0) -{ -return x_585; -} -else -{ -lean_object* x_653; lean_object* x_654; lean_object* x_655; -x_653 = lean_ctor_get(x_585, 0); -x_654 = lean_ctor_get(x_585, 1); -lean_inc(x_654); -lean_inc(x_653); -lean_dec(x_585); -x_655 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_655, 0, x_653); -lean_ctor_set(x_655, 1, x_654); -return x_655; -} -} -} -} -} -else -{ -uint8_t x_685; -lean_dec(x_564); -lean_dec(x_562); -lean_dec(x_560); -lean_dec(x_558); -lean_dec(x_557); -lean_dec(x_552); -lean_dec(x_545); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_685 = !lean_is_exclusive(x_566); -if (x_685 == 0) -{ -return x_566; -} -else -{ -lean_object* x_686; lean_object* x_687; lean_object* x_688; -x_686 = lean_ctor_get(x_566, 0); -x_687 = lean_ctor_get(x_566, 1); -lean_inc(x_687); -lean_inc(x_686); +lean_object* x_579; lean_object* x_580; +lean_dec(x_553); +lean_dec(x_10); +x_579 = lean_ctor_get(x_566, 0); +lean_inc(x_579); lean_dec(x_566); -x_688 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_688, 0, x_686); -lean_ctor_set(x_688, 1, x_687); -return x_688; -} -} -} -else -{ -uint8_t x_689; -lean_dec(x_560); -lean_dec(x_558); -lean_dec(x_557); +x_580 = l_Lean_Environment_getModuleIdxFor_x3f(x_552, x_541); lean_dec(x_552); -lean_dec(x_545); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_689 = !lean_is_exclusive(x_561); -if (x_689 == 0) +if (lean_obj_tag(x_580) == 0) { -return x_561; -} -else -{ -lean_object* x_690; lean_object* x_691; lean_object* x_692; -x_690 = lean_ctor_get(x_561, 0); -x_691 = lean_ctor_get(x_561, 1); -lean_inc(x_691); -lean_inc(x_690); -lean_dec(x_561); -x_692 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_692, 0, x_690); -lean_ctor_set(x_692, 1, x_691); -return x_692; -} -} -} -else -{ -lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; -lean_dec(x_558); -lean_dec(x_557); -lean_dec(x_545); -lean_dec(x_9); -x_693 = lean_ctor_get(x_559, 0); -lean_inc(x_693); -lean_dec(x_559); -x_694 = lean_box(0); -x_695 = l_Lean_mkConst(x_693, x_694); +lean_object* x_581; lean_object* x_582; lean_object* x_598; uint8_t x_599; lean_object* x_600; +x_598 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_579); +x_599 = 0; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_695); -x_696 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_695, x_3, x_4, x_5, x_6, x_555); -if (lean_obj_tag(x_696) == 0) +lean_inc(x_1); +x_600 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_598, x_599, x_4, x_5, x_6, x_7, x_564); +if (lean_obj_tag(x_600) == 0) { -lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; -x_697 = lean_ctor_get(x_696, 0); +lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; +x_601 = lean_ctor_get(x_600, 0); +lean_inc(x_601); +x_602 = lean_ctor_get(x_600, 1); +lean_inc(x_602); +lean_dec(x_600); +x_603 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_604 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__16___boxed), 9, 2); +lean_closure_set(x_604, 0, x_1); +lean_closure_set(x_604, 1, x_603); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_605 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_560, x_604, x_4, x_5, x_6, x_7, x_602); +if (lean_obj_tag(x_605) == 0) +{ +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; +x_606 = lean_ctor_get(x_605, 0); +lean_inc(x_606); +x_607 = lean_ctor_get(x_605, 1); +lean_inc(x_607); +lean_dec(x_605); +x_608 = lean_box(0); +lean_inc(x_556); +x_609 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_609, 0, x_556); +lean_ctor_set(x_609, 1, x_608); +lean_ctor_set(x_609, 2, x_606); +x_610 = lean_box(0); +x_611 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_611, 0, x_609); +lean_ctor_set(x_611, 1, x_601); +lean_ctor_set(x_611, 2, x_610); +lean_ctor_set_uint8(x_611, sizeof(void*)*3, x_599); +x_612 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_612, 0, x_611); +x_613 = lean_st_ref_get(x_7, x_607); +x_614 = lean_ctor_get(x_613, 0); +lean_inc(x_614); +x_615 = lean_ctor_get(x_613, 1); +lean_inc(x_615); +lean_dec(x_613); +x_616 = lean_ctor_get(x_614, 0); +lean_inc(x_616); +lean_dec(x_614); +x_617 = l_Lean_Environment_addAndCompile(x_616, x_608, x_612); +lean_dec(x_612); +if (lean_obj_tag(x_617) == 0) +{ +lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_548); +lean_dec(x_541); +lean_dec(x_1); +x_618 = lean_ctor_get(x_617, 0); +lean_inc(x_618); +lean_dec(x_617); +x_619 = l_Lean_KernelException_toMessageData(x_618, x_608); +x_620 = lean_ctor_get(x_6, 3); +lean_inc(x_620); +x_621 = l_Lean_MessageData_toString(x_619, x_615); +if (lean_obj_tag(x_621) == 0) +{ +lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; uint8_t x_627; +lean_dec(x_620); +x_622 = lean_ctor_get(x_621, 0); +lean_inc(x_622); +x_623 = lean_ctor_get(x_621, 1); +lean_inc(x_623); +lean_dec(x_621); +x_624 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_624, 0, x_622); +x_625 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_625, 0, x_624); +x_626 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_625, x_4, x_5, x_6, x_7, x_623); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_627 = !lean_is_exclusive(x_626); +if (x_627 == 0) +{ +return x_626; +} +else +{ +lean_object* x_628; lean_object* x_629; lean_object* x_630; +x_628 = lean_ctor_get(x_626, 0); +x_629 = lean_ctor_get(x_626, 1); +lean_inc(x_629); +lean_inc(x_628); +lean_dec(x_626); +x_630 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_630, 0, x_628); +lean_ctor_set(x_630, 1, x_629); +return x_630; +} +} +else +{ +uint8_t x_631; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_631 = !lean_is_exclusive(x_621); +if (x_631 == 0) +{ +lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; +x_632 = lean_ctor_get(x_621, 0); +x_633 = lean_io_error_to_string(x_632); +x_634 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_634, 0, x_633); +x_635 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_635, 0, x_634); +x_636 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_636, 0, x_620); +lean_ctor_set(x_636, 1, x_635); +lean_ctor_set(x_621, 0, x_636); +return x_621; +} +else +{ +lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; +x_637 = lean_ctor_get(x_621, 0); +x_638 = lean_ctor_get(x_621, 1); +lean_inc(x_638); +lean_inc(x_637); +lean_dec(x_621); +x_639 = lean_io_error_to_string(x_637); +x_640 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_640, 0, x_639); +x_641 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_641, 0, x_640); +x_642 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_642, 0, x_620); +lean_ctor_set(x_642, 1, x_641); +x_643 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_643, 0, x_642); +lean_ctor_set(x_643, 1, x_638); +return x_643; +} +} +} +else +{ +lean_object* x_644; +x_644 = lean_ctor_get(x_617, 0); +lean_inc(x_644); +lean_dec(x_617); +x_581 = x_644; +x_582 = x_615; +goto block_597; +} +} +else +{ +uint8_t x_645; +lean_dec(x_601); +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_548); +lean_dec(x_541); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_645 = !lean_is_exclusive(x_605); +if (x_645 == 0) +{ +return x_605; +} +else +{ +lean_object* x_646; lean_object* x_647; lean_object* x_648; +x_646 = lean_ctor_get(x_605, 0); +x_647 = lean_ctor_get(x_605, 1); +lean_inc(x_647); +lean_inc(x_646); +lean_dec(x_605); +x_648 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_648, 0, x_646); +lean_ctor_set(x_648, 1, x_647); +return x_648; +} +} +} +else +{ +uint8_t x_649; +lean_dec(x_560); +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_548); +lean_dec(x_541); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_649 = !lean_is_exclusive(x_600); +if (x_649 == 0) +{ +return x_600; +} +else +{ +lean_object* x_650; lean_object* x_651; lean_object* x_652; +x_650 = lean_ctor_get(x_600, 0); +x_651 = lean_ctor_get(x_600, 1); +lean_inc(x_651); +lean_inc(x_650); +lean_dec(x_600); +x_652 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_652, 0, x_650); +lean_ctor_set(x_652, 1, x_651); +return x_652; +} +} +block_597: +{ +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_inc(x_556); +x_583 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_554, x_581, x_541, x_556); +x_584 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_583, x_4, x_5, x_6, x_7, x_582); +x_585 = lean_ctor_get(x_584, 1); +lean_inc(x_585); +lean_dec(x_584); +x_586 = lean_box(0); +x_587 = l_Lean_mkConst(x_556, x_586); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_587); +x_588 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_587, x_4, x_5, x_6, x_7, x_585); +if (lean_obj_tag(x_588) == 0) +{ +lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; +x_589 = lean_ctor_get(x_588, 0); +lean_inc(x_589); +x_590 = lean_ctor_get(x_588, 1); +lean_inc(x_590); +lean_dec(x_588); +x_591 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15___boxed), 11, 4); +lean_closure_set(x_591, 0, x_1); +lean_closure_set(x_591, 1, x_561); +lean_closure_set(x_591, 2, x_548); +lean_closure_set(x_591, 3, x_587); +x_592 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_589, x_591, x_4, x_5, x_6, x_7, x_590); +return x_592; +} +else +{ +uint8_t x_593; +lean_dec(x_587); +lean_dec(x_548); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_593 = !lean_is_exclusive(x_588); +if (x_593 == 0) +{ +return x_588; +} +else +{ +lean_object* x_594; lean_object* x_595; lean_object* x_596; +x_594 = lean_ctor_get(x_588, 0); +x_595 = lean_ctor_get(x_588, 1); +lean_inc(x_595); +lean_inc(x_594); +lean_dec(x_588); +x_596 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_596, 0, x_594); +lean_ctor_set(x_596, 1, x_595); +return x_596; +} +} +} +} +else +{ +lean_dec(x_580); +if (x_3 == 0) +{ +lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; uint8_t x_659; +lean_dec(x_579); +lean_dec(x_560); +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_548); +lean_dec(x_1); +x_653 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_653, 0, x_541); +x_654 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_655 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_655, 0, x_654); +lean_ctor_set(x_655, 1, x_653); +x_656 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_657 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_657, 0, x_655); +lean_ctor_set(x_657, 1, x_656); +x_658 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_657, x_4, x_5, x_6, x_7, x_564); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_659 = !lean_is_exclusive(x_658); +if (x_659 == 0) +{ +return x_658; +} +else +{ +lean_object* x_660; lean_object* x_661; lean_object* x_662; +x_660 = lean_ctor_get(x_658, 0); +x_661 = lean_ctor_get(x_658, 1); +lean_inc(x_661); +lean_inc(x_660); +lean_dec(x_658); +x_662 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_662, 0, x_660); +lean_ctor_set(x_662, 1, x_661); +return x_662; +} +} +else +{ +lean_object* x_663; lean_object* x_664; lean_object* x_680; uint8_t x_681; lean_object* x_682; +x_680 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_579); +x_681 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_682 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_680, x_681, x_4, x_5, x_6, x_7, x_564); +if (lean_obj_tag(x_682) == 0) +{ +lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; +x_683 = lean_ctor_get(x_682, 0); +lean_inc(x_683); +x_684 = lean_ctor_get(x_682, 1); +lean_inc(x_684); +lean_dec(x_682); +x_685 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_686 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20___boxed), 9, 2); +lean_closure_set(x_686, 0, x_1); +lean_closure_set(x_686, 1, x_685); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_687 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_560, x_686, x_4, x_5, x_6, x_7, x_684); +if (lean_obj_tag(x_687) == 0) +{ +lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; +x_688 = lean_ctor_get(x_687, 0); +lean_inc(x_688); +x_689 = lean_ctor_get(x_687, 1); +lean_inc(x_689); +lean_dec(x_687); +x_690 = lean_box(0); +lean_inc(x_556); +x_691 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_691, 0, x_556); +lean_ctor_set(x_691, 1, x_690); +lean_ctor_set(x_691, 2, x_688); +x_692 = lean_box(0); +x_693 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_693, 0, x_691); +lean_ctor_set(x_693, 1, x_683); +lean_ctor_set(x_693, 2, x_692); +lean_ctor_set_uint8(x_693, sizeof(void*)*3, x_681); +x_694 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_694, 0, x_693); +x_695 = lean_st_ref_get(x_7, x_689); +x_696 = lean_ctor_get(x_695, 0); +lean_inc(x_696); +x_697 = lean_ctor_get(x_695, 1); lean_inc(x_697); -x_698 = lean_ctor_get(x_696, 1); +lean_dec(x_695); +x_698 = lean_ctor_get(x_696, 0); lean_inc(x_698); lean_dec(x_696); -x_699 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12___boxed), 10, 3); -lean_closure_set(x_699, 0, x_1); -lean_closure_set(x_699, 1, x_552); -lean_closure_set(x_699, 2, x_695); -x_700 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_697, x_699, x_3, x_4, x_5, x_6, x_698); -return x_700; -} -else +x_699 = l_Lean_Environment_addAndCompile(x_698, x_690, x_694); +lean_dec(x_694); +if (lean_obj_tag(x_699) == 0) { -uint8_t x_701; -lean_dec(x_695); -lean_dec(x_552); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_548); +lean_dec(x_541); lean_dec(x_1); -x_701 = !lean_is_exclusive(x_696); -if (x_701 == 0) -{ -return x_696; -} -else -{ -lean_object* x_702; lean_object* x_703; lean_object* x_704; -x_702 = lean_ctor_get(x_696, 0); -x_703 = lean_ctor_get(x_696, 1); -lean_inc(x_703); +x_700 = lean_ctor_get(x_699, 0); +lean_inc(x_700); +lean_dec(x_699); +x_701 = l_Lean_KernelException_toMessageData(x_700, x_690); +x_702 = lean_ctor_get(x_6, 3); lean_inc(x_702); -lean_dec(x_696); -x_704 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_704, 0, x_702); -lean_ctor_set(x_704, 1, x_703); -return x_704; -} +x_703 = l_Lean_MessageData_toString(x_701, x_697); +if (lean_obj_tag(x_703) == 0) +{ +lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; uint8_t x_709; +lean_dec(x_702); +x_704 = lean_ctor_get(x_703, 0); +lean_inc(x_704); +x_705 = lean_ctor_get(x_703, 1); +lean_inc(x_705); +lean_dec(x_703); +x_706 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_706, 0, x_704); +x_707 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_707, 0, x_706); +x_708 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_707, x_4, x_5, x_6, x_7, x_705); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_709 = !lean_is_exclusive(x_708); +if (x_709 == 0) +{ +return x_708; } +else +{ +lean_object* x_710; lean_object* x_711; lean_object* x_712; +x_710 = lean_ctor_get(x_708, 0); +x_711 = lean_ctor_get(x_708, 1); +lean_inc(x_711); +lean_inc(x_710); +lean_dec(x_708); +x_712 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_712, 0, x_710); +lean_ctor_set(x_712, 1, x_711); +return x_712; } } else { -lean_object* x_705; -lean_dec(x_534); -lean_dec(x_1); -x_705 = lean_box(0); -x_535 = x_705; -goto block_544; -} -block_544: -{ -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_dec(x_535); -x_536 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_537 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_537, 0, x_536); -x_538 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_538, 0, x_537); -x_539 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_540 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_540, 0, x_539); -lean_ctor_set(x_540, 1, x_538); -x_541 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_542 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_542, 0, x_540); -lean_ctor_set(x_542, 1, x_541); -x_543 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_542, x_3, x_4, x_5, x_6, x_533); +uint8_t x_713; +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_543; -} -} -case 5: +x_713 = !lean_is_exclusive(x_703); +if (x_713 == 0) { -lean_object* x_706; lean_object* x_707; lean_object* x_708; -x_706 = lean_ctor_get(x_8, 1); -lean_inc(x_706); -lean_dec(x_8); -x_707 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_707) == 4) +lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; +x_714 = lean_ctor_get(x_703, 0); +x_715 = lean_io_error_to_string(x_714); +x_716 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_716, 0, x_715); +x_717 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_717, 0, x_716); +x_718 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_718, 0, x_702); +lean_ctor_set(x_718, 1, x_717); +lean_ctor_set(x_703, 0, x_718); +return x_703; +} +else { -lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; -x_718 = lean_ctor_get(x_707, 0); -lean_inc(x_718); -lean_dec(x_707); -x_719 = lean_unsigned_to_nat(0u); -x_720 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_719); -x_721 = l_Lean_Expr_getAppArgs___closed__1; +lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; +x_719 = lean_ctor_get(x_703, 0); +x_720 = lean_ctor_get(x_703, 1); lean_inc(x_720); -x_722 = lean_mk_array(x_720, x_721); -x_723 = lean_unsigned_to_nat(1u); -x_724 = lean_nat_sub(x_720, x_723); -lean_dec(x_720); -lean_inc(x_9); -x_725 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_722, x_724); -x_726 = lean_st_ref_get(x_6, x_706); -x_727 = lean_ctor_get(x_726, 0); -lean_inc(x_727); -x_728 = lean_ctor_get(x_726, 1); -lean_inc(x_728); -lean_dec(x_726); -x_729 = lean_ctor_get(x_727, 0); +lean_inc(x_719); +lean_dec(x_703); +x_721 = lean_io_error_to_string(x_719); +x_722 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_722, 0, x_721); +x_723 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_723, 0, x_722); +x_724 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_724, 0, x_702); +lean_ctor_set(x_724, 1, x_723); +x_725 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_725, 0, x_724); +lean_ctor_set(x_725, 1, x_720); +return x_725; +} +} +} +else +{ +lean_object* x_726; +x_726 = lean_ctor_get(x_699, 0); +lean_inc(x_726); +lean_dec(x_699); +x_663 = x_726; +x_664 = x_697; +goto block_679; +} +} +else +{ +uint8_t x_727; +lean_dec(x_683); +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_548); +lean_dec(x_541); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_727 = !lean_is_exclusive(x_687); +if (x_727 == 0) +{ +return x_687; +} +else +{ +lean_object* x_728; lean_object* x_729; lean_object* x_730; +x_728 = lean_ctor_get(x_687, 0); +x_729 = lean_ctor_get(x_687, 1); lean_inc(x_729); -lean_dec(x_727); -x_730 = lean_ctor_get(x_1, 0); -lean_inc(x_730); -x_731 = lean_ctor_get(x_1, 2); -lean_inc(x_731); -x_732 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_731, x_729, x_718); -lean_dec(x_729); -if (lean_obj_tag(x_732) == 0) +lean_inc(x_728); +lean_dec(x_687); +x_730 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_730, 0, x_728); +lean_ctor_set(x_730, 1, x_729); +return x_730; +} +} +} +else { -lean_object* x_733; lean_object* x_734; -lean_inc(x_730); -x_733 = l_Lean_Name_append___main(x_718, x_730); -lean_inc(x_718); -x_734 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_718, x_3, x_4, x_5, x_6, x_728); -if (lean_obj_tag(x_734) == 0) -{ -lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; -x_735 = lean_ctor_get(x_734, 0); -lean_inc(x_735); -x_736 = lean_ctor_get(x_734, 1); -lean_inc(x_736); -lean_dec(x_734); -x_737 = l_Lean_ConstantInfo_type(x_735); -x_738 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_737); -x_739 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_737, x_738, x_3, x_4, x_5, x_6, x_736); -if (lean_obj_tag(x_739) == 0) -{ -lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_830; uint8_t x_831; -x_740 = lean_ctor_get(x_739, 0); -lean_inc(x_740); -x_741 = lean_ctor_get(x_739, 1); -lean_inc(x_741); -lean_dec(x_739); -x_830 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_831 = l_Lean_Expr_isConstOf(x_740, x_830); -if (x_831 == 0) -{ -lean_object* x_832; uint8_t x_833; -x_832 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_833 = l_Lean_Expr_isConstOf(x_740, x_832); -lean_dec(x_740); -if (x_833 == 0) -{ -lean_object* x_834; -lean_dec(x_737); -lean_dec(x_735); -lean_dec(x_733); -lean_dec(x_731); -lean_dec(x_725); -lean_dec(x_718); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_834 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_741); -if (lean_obj_tag(x_834) == 0) -{ -lean_object* x_835; -x_835 = lean_ctor_get(x_834, 0); -lean_inc(x_835); -if (lean_obj_tag(x_835) == 0) -{ -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_dec(x_1); -x_836 = lean_ctor_get(x_834, 1); -lean_inc(x_836); -lean_dec(x_834); -x_837 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_837, 0, x_730); -x_838 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_839 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_839, 0, x_838); -lean_ctor_set(x_839, 1, x_837); -x_840 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_841 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_841, 0, x_839); -lean_ctor_set(x_841, 1, x_840); -x_842 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_843 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_843, 0, x_842); -x_844 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_844, 0, x_843); -x_845 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_845, 0, x_841); -lean_ctor_set(x_845, 1, x_844); -x_846 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_847 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_847, 0, x_845); -lean_ctor_set(x_847, 1, x_846); -x_848 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_847, x_3, x_4, x_5, x_6, x_836); +uint8_t x_731; +lean_dec(x_560); +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_548); +lean_dec(x_541); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_848; -} -else -{ -lean_object* x_849; lean_object* x_850; -lean_dec(x_730); -lean_dec(x_9); -x_849 = lean_ctor_get(x_834, 1); -lean_inc(x_849); -lean_dec(x_834); -x_850 = lean_ctor_get(x_835, 0); -lean_inc(x_850); -lean_dec(x_835); -x_2 = x_850; -x_7 = x_849; -goto _start; -} -} -else -{ -uint8_t x_852; -lean_dec(x_730); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_852 = !lean_is_exclusive(x_834); -if (x_852 == 0) +x_731 = !lean_is_exclusive(x_682); +if (x_731 == 0) { -return x_834; +return x_682; } else { -lean_object* x_853; lean_object* x_854; lean_object* x_855; -x_853 = lean_ctor_get(x_834, 0); -x_854 = lean_ctor_get(x_834, 1); -lean_inc(x_854); -lean_inc(x_853); -lean_dec(x_834); -x_855 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_855, 0, x_853); -lean_ctor_set(x_855, 1, x_854); -return x_855; -} -} -} -else -{ -lean_object* x_856; -x_856 = lean_box(0); -x_742 = x_856; -goto block_829; -} -} -else -{ -lean_object* x_857; -lean_dec(x_740); -x_857 = lean_box(0); -x_742 = x_857; -goto block_829; -} -block_829: -{ -lean_object* x_743; -lean_dec(x_742); -x_743 = l_Lean_ConstantInfo_value_x3f(x_735); -lean_dec(x_735); -if (lean_obj_tag(x_743) == 0) -{ -lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; -lean_dec(x_737); -lean_dec(x_733); -lean_dec(x_731); -lean_dec(x_725); -lean_dec(x_718); -lean_dec(x_1); -x_744 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_744, 0, x_730); -x_745 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_746 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_746, 0, x_745); -lean_ctor_set(x_746, 1, x_744); -x_747 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_748 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_748, 0, x_746); -lean_ctor_set(x_748, 1, x_747); -x_749 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_750 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_750, 0, x_749); -x_751 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_751, 0, x_750); -x_752 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_752, 0, x_748); -lean_ctor_set(x_752, 1, x_751); -x_753 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_754 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_754, 0, x_752); -lean_ctor_set(x_754, 1, x_753); -x_755 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_754, x_3, x_4, x_5, x_6, x_741); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_755; -} -else -{ -lean_object* x_756; lean_object* x_757; lean_object* x_758; -lean_dec(x_730); -lean_dec(x_9); -x_756 = lean_ctor_get(x_743, 0); -lean_inc(x_756); -lean_dec(x_743); -x_757 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_756); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_758 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_757, x_3, x_4, x_5, x_6, x_741); -if (lean_obj_tag(x_758) == 0) -{ -lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_778; lean_object* x_779; lean_object* x_780; -x_759 = lean_ctor_get(x_758, 0); -lean_inc(x_759); -x_760 = lean_ctor_get(x_758, 1); -lean_inc(x_760); -lean_dec(x_758); -x_778 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_779 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14___boxed), 9, 2); -lean_closure_set(x_779, 0, x_1); -lean_closure_set(x_779, 1, x_778); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_780 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_737, x_779, x_3, x_4, x_5, x_6, x_760); -if (lean_obj_tag(x_780) == 0) -{ -lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; uint8_t 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; -x_781 = lean_ctor_get(x_780, 0); -lean_inc(x_781); -x_782 = lean_ctor_get(x_780, 1); -lean_inc(x_782); -lean_dec(x_780); -x_783 = lean_box(0); +lean_object* x_732; lean_object* x_733; lean_object* x_734; +x_732 = lean_ctor_get(x_682, 0); +x_733 = lean_ctor_get(x_682, 1); lean_inc(x_733); -x_784 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_784, 0, x_733); -lean_ctor_set(x_784, 1, x_783); -lean_ctor_set(x_784, 2, x_781); -x_785 = lean_box(0); -x_786 = 0; -x_787 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_787, 0, x_784); -lean_ctor_set(x_787, 1, x_759); -lean_ctor_set(x_787, 2, x_785); -lean_ctor_set_uint8(x_787, sizeof(void*)*3, x_786); -x_788 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_788, 0, x_787); -x_789 = lean_st_ref_get(x_6, x_782); -x_790 = lean_ctor_get(x_789, 0); -lean_inc(x_790); -x_791 = lean_ctor_get(x_789, 1); -lean_inc(x_791); -lean_dec(x_789); -x_792 = lean_ctor_get(x_790, 0); -lean_inc(x_792); -lean_dec(x_790); -x_793 = l_Lean_Environment_addAndCompile(x_792, x_783, x_788); -lean_dec(x_788); -if (lean_obj_tag(x_793) == 0) +lean_inc(x_732); +lean_dec(x_682); +x_734 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_734, 0, x_732); +lean_ctor_set(x_734, 1, x_733); +return x_734; +} +} +block_679: { -lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; -lean_dec(x_733); -lean_dec(x_731); -lean_dec(x_725); -lean_dec(x_718); +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_inc(x_556); +x_665 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_554, x_663, x_541, x_556); +x_666 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_665, x_4, x_5, x_6, x_7, x_664); +x_667 = lean_ctor_get(x_666, 1); +lean_inc(x_667); +lean_dec(x_666); +x_668 = lean_box(0); +x_669 = l_Lean_mkConst(x_556, x_668); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_669); +x_670 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_669, x_4, x_5, x_6, x_7, x_667); +if (lean_obj_tag(x_670) == 0) +{ +lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; +x_671 = lean_ctor_get(x_670, 0); +lean_inc(x_671); +x_672 = lean_ctor_get(x_670, 1); +lean_inc(x_672); +lean_dec(x_670); +x_673 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19___boxed), 11, 4); +lean_closure_set(x_673, 0, x_1); +lean_closure_set(x_673, 1, x_561); +lean_closure_set(x_673, 2, x_548); +lean_closure_set(x_673, 3, x_669); +x_674 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_671, x_673, x_4, x_5, x_6, x_7, x_672); +return x_674; +} +else +{ +uint8_t x_675; +lean_dec(x_669); +lean_dec(x_548); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_1); -x_794 = lean_ctor_get(x_793, 0); -lean_inc(x_794); -lean_dec(x_793); -x_795 = l_Lean_KernelException_toMessageData(x_794, x_783); -x_796 = lean_ctor_get(x_5, 3); -lean_inc(x_796); -x_797 = l_Lean_MessageData_toString(x_795, x_791); -if (lean_obj_tag(x_797) == 0) +x_675 = !lean_is_exclusive(x_670); +if (x_675 == 0) { -lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; uint8_t x_803; -lean_dec(x_796); -x_798 = lean_ctor_get(x_797, 0); -lean_inc(x_798); -x_799 = lean_ctor_get(x_797, 1); -lean_inc(x_799); -lean_dec(x_797); -x_800 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_800, 0, x_798); -x_801 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_801, 0, x_800); -x_802 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_801, x_3, x_4, x_5, x_6, x_799); +return x_670; +} +else +{ +lean_object* x_676; lean_object* x_677; lean_object* x_678; +x_676 = lean_ctor_get(x_670, 0); +x_677 = lean_ctor_get(x_670, 1); +lean_inc(x_677); +lean_inc(x_676); +lean_dec(x_670); +x_678 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_678, 0, x_676); +lean_ctor_set(x_678, 1, x_677); +return x_678; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_765; +lean_dec(x_560); +lean_dec(x_558); +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_553); +lean_dec(x_552); +lean_dec(x_548); +lean_dec(x_541); +lean_dec(x_10); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -x_803 = !lean_is_exclusive(x_802); -if (x_803 == 0) -{ -return x_802; -} -else -{ -lean_object* x_804; lean_object* x_805; lean_object* x_806; -x_804 = lean_ctor_get(x_802, 0); -x_805 = lean_ctor_get(x_802, 1); -lean_inc(x_805); -lean_inc(x_804); -lean_dec(x_802); -x_806 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_806, 0, x_804); -lean_ctor_set(x_806, 1, x_805); -return x_806; -} -} -else -{ -uint8_t x_807; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_807 = !lean_is_exclusive(x_797); -if (x_807 == 0) -{ -lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; -x_808 = lean_ctor_get(x_797, 0); -x_809 = lean_io_error_to_string(x_808); -x_810 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_810, 0, x_809); -x_811 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_811, 0, x_810); -x_812 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_812, 0, x_796); -lean_ctor_set(x_812, 1, x_811); -lean_ctor_set(x_797, 0, x_812); -return x_797; -} -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; -x_813 = lean_ctor_get(x_797, 0); -x_814 = lean_ctor_get(x_797, 1); -lean_inc(x_814); -lean_inc(x_813); -lean_dec(x_797); -x_815 = lean_io_error_to_string(x_813); -x_816 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_816, 0, x_815); -x_817 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_817, 0, x_816); -x_818 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_818, 0, x_796); -lean_ctor_set(x_818, 1, x_817); -x_819 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_819, 0, x_818); -lean_ctor_set(x_819, 1, x_814); -return x_819; -} -} -} -else -{ -lean_object* x_820; -x_820 = lean_ctor_get(x_793, 0); -lean_inc(x_820); -lean_dec(x_793); -x_761 = x_820; -x_762 = x_791; -goto block_777; -} -} -else -{ -uint8_t x_821; -lean_dec(x_759); -lean_dec(x_733); -lean_dec(x_731); -lean_dec(x_725); -lean_dec(x_718); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_821 = !lean_is_exclusive(x_780); -if (x_821 == 0) +x_765 = !lean_is_exclusive(x_562); +if (x_765 == 0) { +return x_562; +} +else +{ +lean_object* x_766; lean_object* x_767; lean_object* x_768; +x_766 = lean_ctor_get(x_562, 0); +x_767 = lean_ctor_get(x_562, 1); +lean_inc(x_767); +lean_inc(x_766); +lean_dec(x_562); +x_768 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_768, 0, x_766); +lean_ctor_set(x_768, 1, x_767); +return x_768; +} +} +} +else +{ +uint8_t x_769; +lean_dec(x_556); +lean_dec(x_554); +lean_dec(x_553); +lean_dec(x_552); +lean_dec(x_548); +lean_dec(x_541); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_769 = !lean_is_exclusive(x_557); +if (x_769 == 0) +{ +return x_557; +} +else +{ +lean_object* x_770; lean_object* x_771; lean_object* x_772; +x_770 = lean_ctor_get(x_557, 0); +x_771 = lean_ctor_get(x_557, 1); +lean_inc(x_771); +lean_inc(x_770); +lean_dec(x_557); +x_772 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_772, 0, x_770); +lean_ctor_set(x_772, 1, x_771); +return x_772; +} +} +} +else +{ +lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; +lean_dec(x_554); +lean_dec(x_553); +lean_dec(x_552); +lean_dec(x_541); +lean_dec(x_10); +x_773 = lean_ctor_get(x_555, 0); +lean_inc(x_773); +lean_dec(x_555); +x_774 = lean_box(0); +x_775 = l_Lean_mkConst(x_773, x_774); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_775); +x_776 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_775, x_4, x_5, x_6, x_7, x_551); +if (lean_obj_tag(x_776) == 0) +{ +lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; +x_777 = lean_ctor_get(x_776, 0); +lean_inc(x_777); +x_778 = lean_ctor_get(x_776, 1); +lean_inc(x_778); +lean_dec(x_776); +x_779 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21___boxed), 10, 3); +lean_closure_set(x_779, 0, x_1); +lean_closure_set(x_779, 1, x_548); +lean_closure_set(x_779, 2, x_775); +x_780 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_777, x_779, x_4, x_5, x_6, x_7, x_778); return x_780; } else { -lean_object* x_822; lean_object* x_823; lean_object* x_824; -x_822 = lean_ctor_get(x_780, 0); -x_823 = lean_ctor_get(x_780, 1); -lean_inc(x_823); -lean_inc(x_822); -lean_dec(x_780); -x_824 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_824, 0, x_822); -lean_ctor_set(x_824, 1, x_823); -return x_824; -} -} -block_777: -{ -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_inc(x_733); -x_763 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_731, x_761, x_718, x_733); -x_764 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_763, x_3, x_4, x_5, x_6, x_762); -x_765 = lean_ctor_get(x_764, 1); -lean_inc(x_765); -lean_dec(x_764); -x_766 = lean_box(0); -x_767 = l_Lean_mkConst(x_733, x_766); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_767); -x_768 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_767, x_3, x_4, x_5, x_6, x_765); -if (lean_obj_tag(x_768) == 0) -{ -lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; -x_769 = lean_ctor_get(x_768, 0); -lean_inc(x_769); -x_770 = lean_ctor_get(x_768, 1); -lean_inc(x_770); -lean_dec(x_768); -x_771 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13___boxed), 11, 4); -lean_closure_set(x_771, 0, x_1); -lean_closure_set(x_771, 1, x_738); -lean_closure_set(x_771, 2, x_725); -lean_closure_set(x_771, 3, x_767); -x_772 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_769, x_771, x_3, x_4, x_5, x_6, x_770); -return x_772; -} -else -{ -uint8_t x_773; -lean_dec(x_767); -lean_dec(x_725); +uint8_t x_781; +lean_dec(x_775); +lean_dec(x_548); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_773 = !lean_is_exclusive(x_768); -if (x_773 == 0) +x_781 = !lean_is_exclusive(x_776); +if (x_781 == 0) { -return x_768; -} -else -{ -lean_object* x_774; lean_object* x_775; lean_object* x_776; -x_774 = lean_ctor_get(x_768, 0); -x_775 = lean_ctor_get(x_768, 1); -lean_inc(x_775); -lean_inc(x_774); -lean_dec(x_768); -x_776 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_776, 0, x_774); -lean_ctor_set(x_776, 1, x_775); return x_776; } +else +{ +lean_object* x_782; lean_object* x_783; lean_object* x_784; +x_782 = lean_ctor_get(x_776, 0); +x_783 = lean_ctor_get(x_776, 1); +lean_inc(x_783); +lean_inc(x_782); +lean_dec(x_776); +x_784 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_784, 0, x_782); +lean_ctor_set(x_784, 1, x_783); +return x_784; +} } } } else { -uint8_t x_825; -lean_dec(x_737); -lean_dec(x_733); -lean_dec(x_731); -lean_dec(x_725); -lean_dec(x_718); +lean_object* x_785; +lean_dec(x_530); +lean_dec(x_1); +x_785 = lean_box(0); +x_531 = x_785; +goto block_540; +} +block_540: +{ +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_dec(x_531); +x_532 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_533 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_533, 0, x_532); +x_534 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_534, 0, x_533); +x_535 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_536 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_536, 0, x_535); +lean_ctor_set(x_536, 1, x_534); +x_537 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_538 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_538, 0, x_536); +lean_ctor_set(x_538, 1, x_537); +x_539 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_538, x_4, x_5, x_6, x_7, x_529); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_825 = !lean_is_exclusive(x_758); -if (x_825 == 0) +return x_539; +} +} +case 4: { -return x_758; -} -else -{ -lean_object* x_826; lean_object* x_827; lean_object* x_828; -x_826 = lean_ctor_get(x_758, 0); -x_827 = lean_ctor_get(x_758, 1); -lean_inc(x_827); -lean_inc(x_826); -lean_dec(x_758); -x_828 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_828, 0, x_826); -lean_ctor_set(x_828, 1, x_827); -return x_828; -} -} -} -} -} -else -{ -uint8_t x_858; -lean_dec(x_737); -lean_dec(x_735); -lean_dec(x_733); -lean_dec(x_731); -lean_dec(x_730); -lean_dec(x_725); -lean_dec(x_718); +lean_object* x_786; lean_object* x_787; lean_object* x_788; +x_786 = lean_ctor_get(x_9, 1); +lean_inc(x_786); lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_858 = !lean_is_exclusive(x_739); -if (x_858 == 0) +x_787 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_787) == 4) { -return x_739; -} -else +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; +x_798 = lean_ctor_get(x_787, 0); +lean_inc(x_798); +lean_dec(x_787); +x_799 = lean_unsigned_to_nat(0u); +x_800 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_799); +x_801 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_800); +x_802 = lean_mk_array(x_800, x_801); +x_803 = lean_unsigned_to_nat(1u); +x_804 = lean_nat_sub(x_800, x_803); +lean_dec(x_800); +lean_inc(x_10); +x_805 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_802, x_804); +x_806 = lean_st_ref_get(x_7, x_786); +x_807 = lean_ctor_get(x_806, 0); +lean_inc(x_807); +x_808 = lean_ctor_get(x_806, 1); +lean_inc(x_808); +lean_dec(x_806); +x_809 = lean_ctor_get(x_807, 0); +lean_inc(x_809); +lean_dec(x_807); +x_810 = lean_ctor_get(x_1, 0); +lean_inc(x_810); +x_811 = lean_ctor_get(x_1, 2); +lean_inc(x_811); +x_812 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_811, x_809, x_798); +if (lean_obj_tag(x_812) == 0) { -lean_object* x_859; lean_object* x_860; lean_object* x_861; -x_859 = lean_ctor_get(x_739, 0); -x_860 = lean_ctor_get(x_739, 1); -lean_inc(x_860); -lean_inc(x_859); -lean_dec(x_739); -x_861 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_861, 0, x_859); -lean_ctor_set(x_861, 1, x_860); -return x_861; -} -} -} -else +lean_object* x_813; lean_object* x_814; +lean_inc(x_810); +x_813 = l_Lean_Name_append___main(x_798, x_810); +lean_inc(x_798); +x_814 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_798, x_4, x_5, x_6, x_7, x_808); +if (lean_obj_tag(x_814) == 0) { -uint8_t x_862; -lean_dec(x_733); -lean_dec(x_731); -lean_dec(x_730); -lean_dec(x_725); -lean_dec(x_718); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_862 = !lean_is_exclusive(x_734); -if (x_862 == 0) -{ -return x_734; -} -else -{ -lean_object* x_863; lean_object* x_864; lean_object* x_865; -x_863 = lean_ctor_get(x_734, 0); -x_864 = lean_ctor_get(x_734, 1); -lean_inc(x_864); -lean_inc(x_863); -lean_dec(x_734); -x_865 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_865, 0, x_863); -lean_ctor_set(x_865, 1, x_864); -return x_865; -} -} -} -else -{ -lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; -lean_dec(x_731); -lean_dec(x_730); -lean_dec(x_718); -lean_dec(x_9); -x_866 = lean_ctor_get(x_732, 0); -lean_inc(x_866); -lean_dec(x_732); -x_867 = lean_box(0); -x_868 = l_Lean_mkConst(x_866, x_867); +lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; +x_815 = lean_ctor_get(x_814, 0); +lean_inc(x_815); +x_816 = lean_ctor_get(x_814, 1); +lean_inc(x_816); +lean_dec(x_814); +x_817 = l_Lean_ConstantInfo_type(x_815); +x_818 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_868); -x_869 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_868, x_3, x_4, x_5, x_6, x_728); -if (lean_obj_tag(x_869) == 0) +lean_inc(x_817); +x_819 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_817, x_818, x_4, x_5, x_6, x_7, x_816); +if (lean_obj_tag(x_819) == 0) { -lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; -x_870 = lean_ctor_get(x_869, 0); -lean_inc(x_870); -x_871 = lean_ctor_get(x_869, 1); -lean_inc(x_871); -lean_dec(x_869); -x_872 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15___boxed), 10, 3); -lean_closure_set(x_872, 0, x_1); -lean_closure_set(x_872, 1, x_725); -lean_closure_set(x_872, 2, x_868); -x_873 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_870, x_872, x_3, x_4, x_5, x_6, x_871); -return x_873; -} -else +lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_993; uint8_t x_994; +x_820 = lean_ctor_get(x_819, 0); +lean_inc(x_820); +x_821 = lean_ctor_get(x_819, 1); +lean_inc(x_821); +lean_dec(x_819); +x_993 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_994 = l_Lean_Expr_isConstOf(x_820, x_993); +if (x_994 == 0) { -uint8_t x_874; -lean_dec(x_868); -lean_dec(x_725); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_874 = !lean_is_exclusive(x_869); -if (x_874 == 0) +lean_object* x_995; uint8_t x_996; +x_995 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_996 = l_Lean_Expr_isConstOf(x_820, x_995); +lean_dec(x_820); +if (x_996 == 0) { -return x_869; -} -else -{ -lean_object* x_875; lean_object* x_876; lean_object* x_877; -x_875 = lean_ctor_get(x_869, 0); -x_876 = lean_ctor_get(x_869, 1); -lean_inc(x_876); -lean_inc(x_875); -lean_dec(x_869); -x_877 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_877, 0, x_875); -lean_ctor_set(x_877, 1, x_876); -return x_877; -} -} -} -} -else -{ -lean_object* x_878; -lean_dec(x_707); -lean_dec(x_1); -x_878 = lean_box(0); -x_708 = x_878; -goto block_717; -} -block_717: -{ -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_dec(x_708); -x_709 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_710 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_710, 0, x_709); -x_711 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_711, 0, x_710); -x_712 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_713 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_713, 0, x_712); -lean_ctor_set(x_713, 1, x_711); -x_714 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_715 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_715, 0, x_713); -lean_ctor_set(x_715, 1, x_714); -x_716 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_715, x_3, x_4, x_5, x_6, x_706); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_716; -} -} -case 6: -{ -lean_object* x_879; lean_object* x_880; lean_object* x_881; -x_879 = lean_ctor_get(x_8, 1); -lean_inc(x_879); -lean_dec(x_8); -x_880 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__16), 8, 1); -lean_closure_set(x_880, 0, x_1); -x_881 = l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferLambdaType___spec__2___rarg(x_9, x_880, x_3, x_4, x_5, x_6, x_879); -return x_881; -} -case 7: -{ -lean_object* x_882; lean_object* x_883; lean_object* x_884; -x_882 = lean_ctor_get(x_8, 1); -lean_inc(x_882); -lean_dec(x_8); -x_883 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_883) == 4) -{ -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; -x_894 = lean_ctor_get(x_883, 0); -lean_inc(x_894); -lean_dec(x_883); -x_895 = lean_unsigned_to_nat(0u); -x_896 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_895); -x_897 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_896); -x_898 = lean_mk_array(x_896, x_897); -x_899 = lean_unsigned_to_nat(1u); -x_900 = lean_nat_sub(x_896, x_899); -lean_dec(x_896); -lean_inc(x_9); -x_901 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_898, x_900); -x_902 = lean_st_ref_get(x_6, x_882); -x_903 = lean_ctor_get(x_902, 0); -lean_inc(x_903); -x_904 = lean_ctor_get(x_902, 1); -lean_inc(x_904); -lean_dec(x_902); -x_905 = lean_ctor_get(x_903, 0); -lean_inc(x_905); -lean_dec(x_903); -x_906 = lean_ctor_get(x_1, 0); -lean_inc(x_906); -x_907 = lean_ctor_get(x_1, 2); -lean_inc(x_907); -x_908 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_907, x_905, x_894); -lean_dec(x_905); -if (lean_obj_tag(x_908) == 0) -{ -lean_object* x_909; lean_object* x_910; -lean_inc(x_906); -x_909 = l_Lean_Name_append___main(x_894, x_906); -lean_inc(x_894); -x_910 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_894, x_3, x_4, x_5, x_6, x_904); -if (lean_obj_tag(x_910) == 0) -{ -lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; -x_911 = lean_ctor_get(x_910, 0); -lean_inc(x_911); -x_912 = lean_ctor_get(x_910, 1); -lean_inc(x_912); -lean_dec(x_910); -x_913 = l_Lean_ConstantInfo_type(x_911); -x_914 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; +lean_object* x_997; +lean_dec(x_817); +lean_dec(x_815); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_809); +lean_dec(x_805); +lean_dec(x_798); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_913); -x_915 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_913, x_914, x_3, x_4, x_5, x_6, x_912); -if (lean_obj_tag(x_915) == 0) +lean_inc(x_10); +x_997 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_821); +if (lean_obj_tag(x_997) == 0) { -lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_1006; uint8_t x_1007; -x_916 = lean_ctor_get(x_915, 0); -lean_inc(x_916); -x_917 = lean_ctor_get(x_915, 1); -lean_inc(x_917); -lean_dec(x_915); -x_1006 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_1007 = l_Lean_Expr_isConstOf(x_916, x_1006); -if (x_1007 == 0) +lean_object* x_998; +x_998 = lean_ctor_get(x_997, 0); +lean_inc(x_998); +if (lean_obj_tag(x_998) == 0) { -lean_object* x_1008; uint8_t x_1009; -x_1008 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_1009 = l_Lean_Expr_isConstOf(x_916, x_1008); -lean_dec(x_916); -if (x_1009 == 0) -{ -lean_object* x_1010; -lean_dec(x_913); -lean_dec(x_911); -lean_dec(x_909); -lean_dec(x_907); -lean_dec(x_901); -lean_dec(x_894); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_1010 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_917); -if (lean_obj_tag(x_1010) == 0) -{ -lean_object* x_1011; -x_1011 = lean_ctor_get(x_1010, 0); -lean_inc(x_1011); -if (lean_obj_tag(x_1011) == 0) -{ -lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; +lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_dec(x_1); -x_1012 = lean_ctor_get(x_1010, 1); +x_999 = lean_ctor_get(x_997, 1); +lean_inc(x_999); +lean_dec(x_997); +x_1000 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1000, 0, x_810); +x_1001 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_1002 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1002, 0, x_1001); +lean_ctor_set(x_1002, 1, x_1000); +x_1003 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_1004 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1004, 0, x_1002); +lean_ctor_set(x_1004, 1, x_1003); +x_1005 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1006 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1006, 0, x_1005); +x_1007 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1007, 0, x_1006); +x_1008 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1008, 0, x_1004); +lean_ctor_set(x_1008, 1, x_1007); +x_1009 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1010 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1010, 0, x_1008); +lean_ctor_set(x_1010, 1, x_1009); +x_1011 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1010, x_4, x_5, x_6, x_7, x_999); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1011; +} +else +{ +lean_object* x_1012; lean_object* x_1013; uint8_t x_1014; +lean_dec(x_810); +lean_dec(x_10); +x_1012 = lean_ctor_get(x_997, 1); lean_inc(x_1012); -lean_dec(x_1010); -x_1013 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1013, 0, x_906); -x_1014 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1015 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1015, 0, x_1014); -lean_ctor_set(x_1015, 1, x_1013); -x_1016 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_1017 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1017, 0, x_1015); -lean_ctor_set(x_1017, 1, x_1016); -x_1018 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1019 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1019, 0, x_1018); -x_1020 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1020, 0, x_1019); -x_1021 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1021, 0, x_1017); -lean_ctor_set(x_1021, 1, x_1020); -x_1022 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1023 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1023, 0, x_1021); -lean_ctor_set(x_1023, 1, x_1022); -x_1024 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1023, x_3, x_4, x_5, x_6, x_1012); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1024; -} -else -{ -lean_object* x_1025; lean_object* x_1026; -lean_dec(x_906); -lean_dec(x_9); -x_1025 = lean_ctor_get(x_1010, 1); -lean_inc(x_1025); -lean_dec(x_1010); -x_1026 = lean_ctor_get(x_1011, 0); -lean_inc(x_1026); -lean_dec(x_1011); -x_2 = x_1026; -x_7 = x_1025; +lean_dec(x_997); +x_1013 = lean_ctor_get(x_998, 0); +lean_inc(x_1013); +lean_dec(x_998); +x_1014 = 0; +x_2 = x_1013; +x_3 = x_1014; +x_8 = x_1012; goto _start; } } else { -uint8_t x_1028; -lean_dec(x_906); -lean_dec(x_9); +uint8_t x_1016; +lean_dec(x_810); +lean_dec(x_10); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1028 = !lean_is_exclusive(x_1010); -if (x_1028 == 0) +x_1016 = !lean_is_exclusive(x_997); +if (x_1016 == 0) { -return x_1010; +return x_997; } else { -lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; -x_1029 = lean_ctor_get(x_1010, 0); -x_1030 = lean_ctor_get(x_1010, 1); -lean_inc(x_1030); -lean_inc(x_1029); -lean_dec(x_1010); -x_1031 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1031, 0, x_1029); -lean_ctor_set(x_1031, 1, x_1030); -return x_1031; +lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; +x_1017 = lean_ctor_get(x_997, 0); +x_1018 = lean_ctor_get(x_997, 1); +lean_inc(x_1018); +lean_inc(x_1017); +lean_dec(x_997); +x_1019 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1019, 0, x_1017); +lean_ctor_set(x_1019, 1, x_1018); +return x_1019; } } } else { -lean_object* x_1032; -x_1032 = lean_box(0); -x_918 = x_1032; -goto block_1005; +lean_object* x_1020; +x_1020 = lean_box(0); +x_822 = x_1020; +goto block_992; } } else { -lean_object* x_1033; -lean_dec(x_916); -x_1033 = lean_box(0); -x_918 = x_1033; -goto block_1005; +lean_object* x_1021; +lean_dec(x_820); +x_1021 = lean_box(0); +x_822 = x_1021; +goto block_992; } -block_1005: +block_992: { -lean_object* x_919; -lean_dec(x_918); -x_919 = l_Lean_ConstantInfo_value_x3f(x_911); -lean_dec(x_911); -if (lean_obj_tag(x_919) == 0) +lean_object* x_823; +lean_dec(x_822); +x_823 = l_Lean_ConstantInfo_value_x3f(x_815); +lean_dec(x_815); +if (lean_obj_tag(x_823) == 0) { -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_dec(x_913); -lean_dec(x_909); -lean_dec(x_907); -lean_dec(x_901); -lean_dec(x_894); +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_dec(x_817); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_809); +lean_dec(x_805); +lean_dec(x_798); lean_dec(x_1); -x_920 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_920, 0, x_906); -x_921 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_922 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_922, 0, x_921); -lean_ctor_set(x_922, 1, x_920); -x_923 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_924 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_924, 0, x_922); -lean_ctor_set(x_924, 1, x_923); -x_925 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_926 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_926, 0, x_925); -x_927 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_927, 0, x_926); -x_928 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_928, 0, x_924); -lean_ctor_set(x_928, 1, x_927); -x_929 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_930 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_930, 0, x_928); -lean_ctor_set(x_930, 1, x_929); -x_931 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_930, x_3, x_4, x_5, x_6, x_917); +x_824 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_824, 0, x_810); +x_825 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_826 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_826, 0, x_825); +lean_ctor_set(x_826, 1, x_824); +x_827 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_828 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_828, 0, x_826); +lean_ctor_set(x_828, 1, x_827); +x_829 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_830 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_830, 0, x_829); +x_831 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_831, 0, x_830); +x_832 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_832, 0, x_828); +lean_ctor_set(x_832, 1, x_831); +x_833 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_834 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_834, 0, x_832); +lean_ctor_set(x_834, 1, x_833); +x_835 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_834, x_4, x_5, x_6, x_7, x_821); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_931; +return x_835; } else { -lean_object* x_932; lean_object* x_933; lean_object* x_934; -lean_dec(x_906); -lean_dec(x_9); -x_932 = lean_ctor_get(x_919, 0); -lean_inc(x_932); -lean_dec(x_919); -x_933 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_932); +lean_object* x_836; lean_object* x_837; +lean_dec(x_810); +lean_dec(x_10); +x_836 = lean_ctor_get(x_823, 0); +lean_inc(x_836); +lean_dec(x_823); +x_837 = l_Lean_Environment_getModuleIdxFor_x3f(x_809, x_798); +lean_dec(x_809); +if (lean_obj_tag(x_837) == 0) +{ +lean_object* x_838; lean_object* x_839; lean_object* x_855; uint8_t x_856; lean_object* x_857; +x_855 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_836); +x_856 = 0; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); lean_inc(x_1); -x_934 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_933, x_3, x_4, x_5, x_6, x_917); -if (lean_obj_tag(x_934) == 0) +x_857 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_855, x_856, x_4, x_5, x_6, x_7, x_821); +if (lean_obj_tag(x_857) == 0) { -lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_954; lean_object* x_955; lean_object* x_956; -x_935 = lean_ctor_get(x_934, 0); -lean_inc(x_935); -x_936 = lean_ctor_get(x_934, 1); -lean_inc(x_936); -lean_dec(x_934); -x_954 = l_Lean_mkAppStx___closed__4; +lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; +x_858 = lean_ctor_get(x_857, 0); +lean_inc(x_858); +x_859 = lean_ctor_get(x_857, 1); +lean_inc(x_859); +lean_dec(x_857); +x_860 = l_Lean_mkAppStx___closed__4; lean_inc(x_1); -x_955 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__18___boxed), 9, 2); -lean_closure_set(x_955, 0, x_1); -lean_closure_set(x_955, 1, x_954); +x_861 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23___boxed), 9, 2); +lean_closure_set(x_861, 0, x_1); +lean_closure_set(x_861, 1, x_860); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -x_956 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_913, x_955, x_3, x_4, x_5, x_6, x_936); -if (lean_obj_tag(x_956) == 0) +x_862 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_817, x_861, x_4, x_5, x_6, x_7, x_859); +if (lean_obj_tag(x_862) == 0) { -lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; uint8_t 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; -x_957 = lean_ctor_get(x_956, 0); -lean_inc(x_957); -x_958 = lean_ctor_get(x_956, 1); -lean_inc(x_958); -lean_dec(x_956); -x_959 = lean_box(0); -lean_inc(x_909); -x_960 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_960, 0, x_909); -lean_ctor_set(x_960, 1, x_959); -lean_ctor_set(x_960, 2, x_957); -x_961 = lean_box(0); -x_962 = 0; -x_963 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_963, 0, x_960); -lean_ctor_set(x_963, 1, x_935); -lean_ctor_set(x_963, 2, x_961); -lean_ctor_set_uint8(x_963, sizeof(void*)*3, x_962); -x_964 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_964, 0, x_963); -x_965 = lean_st_ref_get(x_6, x_958); -x_966 = lean_ctor_get(x_965, 0); -lean_inc(x_966); -x_967 = lean_ctor_get(x_965, 1); -lean_inc(x_967); -lean_dec(x_965); -x_968 = lean_ctor_get(x_966, 0); -lean_inc(x_968); -lean_dec(x_966); -x_969 = l_Lean_Environment_addAndCompile(x_968, x_959, x_964); -lean_dec(x_964); -if (lean_obj_tag(x_969) == 0) +lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; +x_863 = lean_ctor_get(x_862, 0); +lean_inc(x_863); +x_864 = lean_ctor_get(x_862, 1); +lean_inc(x_864); +lean_dec(x_862); +x_865 = lean_box(0); +lean_inc(x_813); +x_866 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_866, 0, x_813); +lean_ctor_set(x_866, 1, x_865); +lean_ctor_set(x_866, 2, x_863); +x_867 = lean_box(0); +x_868 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_868, 0, x_866); +lean_ctor_set(x_868, 1, x_858); +lean_ctor_set(x_868, 2, x_867); +lean_ctor_set_uint8(x_868, sizeof(void*)*3, x_856); +x_869 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_869, 0, x_868); +x_870 = lean_st_ref_get(x_7, x_864); +x_871 = lean_ctor_get(x_870, 0); +lean_inc(x_871); +x_872 = lean_ctor_get(x_870, 1); +lean_inc(x_872); +lean_dec(x_870); +x_873 = lean_ctor_get(x_871, 0); +lean_inc(x_873); +lean_dec(x_871); +x_874 = l_Lean_Environment_addAndCompile(x_873, x_865, x_869); +lean_dec(x_869); +if (lean_obj_tag(x_874) == 0) { -lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; -lean_dec(x_909); -lean_dec(x_907); -lean_dec(x_901); -lean_dec(x_894); +lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_805); +lean_dec(x_798); lean_dec(x_1); -x_970 = lean_ctor_get(x_969, 0); -lean_inc(x_970); -lean_dec(x_969); -x_971 = l_Lean_KernelException_toMessageData(x_970, x_959); -x_972 = lean_ctor_get(x_5, 3); -lean_inc(x_972); -x_973 = l_Lean_MessageData_toString(x_971, x_967); -if (lean_obj_tag(x_973) == 0) +x_875 = lean_ctor_get(x_874, 0); +lean_inc(x_875); +lean_dec(x_874); +x_876 = l_Lean_KernelException_toMessageData(x_875, x_865); +x_877 = lean_ctor_get(x_6, 3); +lean_inc(x_877); +x_878 = l_Lean_MessageData_toString(x_876, x_872); +if (lean_obj_tag(x_878) == 0) { -lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; uint8_t x_979; -lean_dec(x_972); -x_974 = lean_ctor_get(x_973, 0); -lean_inc(x_974); -x_975 = lean_ctor_get(x_973, 1); -lean_inc(x_975); -lean_dec(x_973); -x_976 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_976, 0, x_974); -x_977 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_977, 0, x_976); -x_978 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_977, x_3, x_4, x_5, x_6, x_975); +lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; uint8_t x_884; +lean_dec(x_877); +x_879 = lean_ctor_get(x_878, 0); +lean_inc(x_879); +x_880 = lean_ctor_get(x_878, 1); +lean_inc(x_880); +lean_dec(x_878); +x_881 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_881, 0, x_879); +x_882 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_882, 0, x_881); +x_883 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_882, x_4, x_5, x_6, x_7, x_880); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -x_979 = !lean_is_exclusive(x_978); -if (x_979 == 0) +x_884 = !lean_is_exclusive(x_883); +if (x_884 == 0) { -return x_978; +return x_883; } else { -lean_object* x_980; lean_object* x_981; lean_object* x_982; -x_980 = lean_ctor_get(x_978, 0); -x_981 = lean_ctor_get(x_978, 1); -lean_inc(x_981); -lean_inc(x_980); -lean_dec(x_978); -x_982 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_982, 0, x_980); -lean_ctor_set(x_982, 1, x_981); -return x_982; +lean_object* x_885; lean_object* x_886; lean_object* x_887; +x_885 = lean_ctor_get(x_883, 0); +x_886 = lean_ctor_get(x_883, 1); +lean_inc(x_886); +lean_inc(x_885); +lean_dec(x_883); +x_887 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_887, 0, x_885); +lean_ctor_set(x_887, 1, x_886); +return x_887; } } else { -uint8_t x_983; +uint8_t x_888; +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -x_983 = !lean_is_exclusive(x_973); -if (x_983 == 0) +x_888 = !lean_is_exclusive(x_878); +if (x_888 == 0) { -lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; -x_984 = lean_ctor_get(x_973, 0); -x_985 = lean_io_error_to_string(x_984); -x_986 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_986, 0, x_985); -x_987 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_987, 0, x_986); -x_988 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_988, 0, x_972); -lean_ctor_set(x_988, 1, x_987); -lean_ctor_set(x_973, 0, x_988); -return x_973; +lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; +x_889 = lean_ctor_get(x_878, 0); +x_890 = lean_io_error_to_string(x_889); +x_891 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_891, 0, x_890); +x_892 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_892, 0, x_891); +x_893 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_893, 0, x_877); +lean_ctor_set(x_893, 1, x_892); +lean_ctor_set(x_878, 0, x_893); +return x_878; } else { -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; -x_989 = lean_ctor_get(x_973, 0); -x_990 = lean_ctor_get(x_973, 1); -lean_inc(x_990); -lean_inc(x_989); -lean_dec(x_973); -x_991 = lean_io_error_to_string(x_989); -x_992 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_992, 0, x_991); -x_993 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_993, 0, x_992); -x_994 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_994, 0, x_972); -lean_ctor_set(x_994, 1, x_993); -x_995 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_995, 0, x_994); -lean_ctor_set(x_995, 1, x_990); -return x_995; +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; +x_894 = lean_ctor_get(x_878, 0); +x_895 = lean_ctor_get(x_878, 1); +lean_inc(x_895); +lean_inc(x_894); +lean_dec(x_878); +x_896 = lean_io_error_to_string(x_894); +x_897 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_897, 0, x_896); +x_898 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_898, 0, x_897); +x_899 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_899, 0, x_877); +lean_ctor_set(x_899, 1, x_898); +x_900 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_900, 0, x_899); +lean_ctor_set(x_900, 1, x_895); +return x_900; } } } else { -lean_object* x_996; -x_996 = lean_ctor_get(x_969, 0); -lean_inc(x_996); -lean_dec(x_969); -x_937 = x_996; -x_938 = x_967; -goto block_953; +lean_object* x_901; +x_901 = lean_ctor_get(x_874, 0); +lean_inc(x_901); +lean_dec(x_874); +x_838 = x_901; +x_839 = x_872; +goto block_854; } } else { -uint8_t x_997; -lean_dec(x_935); -lean_dec(x_909); -lean_dec(x_907); -lean_dec(x_901); -lean_dec(x_894); +uint8_t x_902; +lean_dec(x_858); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_805); +lean_dec(x_798); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_997 = !lean_is_exclusive(x_956); -if (x_997 == 0) +x_902 = !lean_is_exclusive(x_862); +if (x_902 == 0) { -return x_956; +return x_862; } else { -lean_object* x_998; lean_object* x_999; lean_object* x_1000; -x_998 = lean_ctor_get(x_956, 0); -x_999 = lean_ctor_get(x_956, 1); -lean_inc(x_999); -lean_inc(x_998); -lean_dec(x_956); -x_1000 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1000, 0, x_998); -lean_ctor_set(x_1000, 1, x_999); -return x_1000; +lean_object* x_903; lean_object* x_904; lean_object* x_905; +x_903 = lean_ctor_get(x_862, 0); +x_904 = lean_ctor_get(x_862, 1); +lean_inc(x_904); +lean_inc(x_903); +lean_dec(x_862); +x_905 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_905, 0, x_903); +lean_ctor_set(x_905, 1, x_904); +return x_905; } } -block_953: +} +else { -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_inc(x_909); -x_939 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_907, x_937, x_894, x_909); -x_940 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_939, x_3, x_4, x_5, x_6, x_938); -x_941 = lean_ctor_get(x_940, 1); -lean_inc(x_941); -lean_dec(x_940); -x_942 = lean_box(0); -x_943 = l_Lean_mkConst(x_909, x_942); +uint8_t x_906; +lean_dec(x_817); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_805); +lean_dec(x_798); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_906 = !lean_is_exclusive(x_857); +if (x_906 == 0) +{ +return x_857; +} +else +{ +lean_object* x_907; lean_object* x_908; lean_object* x_909; +x_907 = lean_ctor_get(x_857, 0); +x_908 = lean_ctor_get(x_857, 1); +lean_inc(x_908); +lean_inc(x_907); +lean_dec(x_857); +x_909 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_909, 0, x_907); +lean_ctor_set(x_909, 1, x_908); +return x_909; +} +} +block_854: +{ +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_inc(x_813); +x_840 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_811, x_838, x_798, x_813); +x_841 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_840, x_4, x_5, x_6, x_7, x_839); +x_842 = lean_ctor_get(x_841, 1); +lean_inc(x_842); +lean_dec(x_841); +x_843 = lean_box(0); +x_844 = l_Lean_mkConst(x_813, x_843); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_943); -x_944 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_943, x_3, x_4, x_5, x_6, x_941); -if (lean_obj_tag(x_944) == 0) +lean_inc(x_844); +x_845 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_844, x_4, x_5, x_6, x_7, x_842); +if (lean_obj_tag(x_845) == 0) { -lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; -x_945 = lean_ctor_get(x_944, 0); -lean_inc(x_945); -x_946 = lean_ctor_get(x_944, 1); -lean_inc(x_946); -lean_dec(x_944); -x_947 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__17___boxed), 11, 4); -lean_closure_set(x_947, 0, x_1); -lean_closure_set(x_947, 1, x_914); -lean_closure_set(x_947, 2, x_901); -lean_closure_set(x_947, 3, x_943); -x_948 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_945, x_947, x_3, x_4, x_5, x_6, x_946); -return x_948; +lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; +x_846 = lean_ctor_get(x_845, 0); +lean_inc(x_846); +x_847 = lean_ctor_get(x_845, 1); +lean_inc(x_847); +lean_dec(x_845); +x_848 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22___boxed), 11, 4); +lean_closure_set(x_848, 0, x_1); +lean_closure_set(x_848, 1, x_818); +lean_closure_set(x_848, 2, x_805); +lean_closure_set(x_848, 3, x_844); +x_849 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_846, x_848, x_4, x_5, x_6, x_7, x_847); +return x_849; } else { -uint8_t x_949; -lean_dec(x_943); -lean_dec(x_901); +uint8_t x_850; +lean_dec(x_844); +lean_dec(x_805); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_949 = !lean_is_exclusive(x_944); -if (x_949 == 0) +x_850 = !lean_is_exclusive(x_845); +if (x_850 == 0) { -return x_944; +return x_845; } else { -lean_object* x_950; lean_object* x_951; lean_object* x_952; -x_950 = lean_ctor_get(x_944, 0); -x_951 = lean_ctor_get(x_944, 1); -lean_inc(x_951); -lean_inc(x_950); -lean_dec(x_944); -x_952 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_952, 0, x_950); -lean_ctor_set(x_952, 1, x_951); -return x_952; +lean_object* x_851; lean_object* x_852; lean_object* x_853; +x_851 = lean_ctor_get(x_845, 0); +x_852 = lean_ctor_get(x_845, 1); +lean_inc(x_852); +lean_inc(x_851); +lean_dec(x_845); +x_853 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_853, 0, x_851); +lean_ctor_set(x_853, 1, x_852); +return x_853; } } } } else { -uint8_t x_1001; -lean_dec(x_913); -lean_dec(x_909); -lean_dec(x_907); -lean_dec(x_901); -lean_dec(x_894); +lean_dec(x_837); +if (x_3 == 0) +{ +lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; uint8_t x_916; +lean_dec(x_836); +lean_dec(x_817); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_805); +lean_dec(x_1); +x_910 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_910, 0, x_798); +x_911 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_912 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_912, 0, x_911); +lean_ctor_set(x_912, 1, x_910); +x_913 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_914 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_914, 0, x_912); +lean_ctor_set(x_914, 1, x_913); +x_915 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_914, x_4, x_5, x_6, x_7, x_821); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1001 = !lean_is_exclusive(x_934); -if (x_1001 == 0) -{ -return x_934; -} -else -{ -lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; -x_1002 = lean_ctor_get(x_934, 0); -x_1003 = lean_ctor_get(x_934, 1); -lean_inc(x_1003); -lean_inc(x_1002); -lean_dec(x_934); -x_1004 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1004, 0, x_1002); -lean_ctor_set(x_1004, 1, x_1003); -return x_1004; -} -} -} -} -} -else -{ -uint8_t x_1034; -lean_dec(x_913); -lean_dec(x_911); -lean_dec(x_909); -lean_dec(x_907); -lean_dec(x_906); -lean_dec(x_901); -lean_dec(x_894); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1034 = !lean_is_exclusive(x_915); -if (x_1034 == 0) +x_916 = !lean_is_exclusive(x_915); +if (x_916 == 0) { return x_915; } else { -lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; -x_1035 = lean_ctor_get(x_915, 0); -x_1036 = lean_ctor_get(x_915, 1); -lean_inc(x_1036); -lean_inc(x_1035); +lean_object* x_917; lean_object* x_918; lean_object* x_919; +x_917 = lean_ctor_get(x_915, 0); +x_918 = lean_ctor_get(x_915, 1); +lean_inc(x_918); +lean_inc(x_917); lean_dec(x_915); -x_1037 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1037, 0, x_1035); -lean_ctor_set(x_1037, 1, x_1036); +x_919 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_919, 0, x_917); +lean_ctor_set(x_919, 1, x_918); +return x_919; +} +} +else +{ +lean_object* x_920; lean_object* x_921; lean_object* x_937; uint8_t x_938; lean_object* x_939; +x_937 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_836); +x_938 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_939 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_937, x_938, x_4, x_5, x_6, x_7, x_821); +if (lean_obj_tag(x_939) == 0) +{ +lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; +x_940 = lean_ctor_get(x_939, 0); +lean_inc(x_940); +x_941 = lean_ctor_get(x_939, 1); +lean_inc(x_941); +lean_dec(x_939); +x_942 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_943 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__27___boxed), 9, 2); +lean_closure_set(x_943, 0, x_1); +lean_closure_set(x_943, 1, x_942); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_944 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_817, x_943, x_4, x_5, x_6, x_7, x_941); +if (lean_obj_tag(x_944) == 0) +{ +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; +x_945 = lean_ctor_get(x_944, 0); +lean_inc(x_945); +x_946 = lean_ctor_get(x_944, 1); +lean_inc(x_946); +lean_dec(x_944); +x_947 = lean_box(0); +lean_inc(x_813); +x_948 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_948, 0, x_813); +lean_ctor_set(x_948, 1, x_947); +lean_ctor_set(x_948, 2, x_945); +x_949 = lean_box(0); +x_950 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_950, 0, x_948); +lean_ctor_set(x_950, 1, x_940); +lean_ctor_set(x_950, 2, x_949); +lean_ctor_set_uint8(x_950, sizeof(void*)*3, x_938); +x_951 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_951, 0, x_950); +x_952 = lean_st_ref_get(x_7, x_946); +x_953 = lean_ctor_get(x_952, 0); +lean_inc(x_953); +x_954 = lean_ctor_get(x_952, 1); +lean_inc(x_954); +lean_dec(x_952); +x_955 = lean_ctor_get(x_953, 0); +lean_inc(x_955); +lean_dec(x_953); +x_956 = l_Lean_Environment_addAndCompile(x_955, x_947, x_951); +lean_dec(x_951); +if (lean_obj_tag(x_956) == 0) +{ +lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_805); +lean_dec(x_798); +lean_dec(x_1); +x_957 = lean_ctor_get(x_956, 0); +lean_inc(x_957); +lean_dec(x_956); +x_958 = l_Lean_KernelException_toMessageData(x_957, x_947); +x_959 = lean_ctor_get(x_6, 3); +lean_inc(x_959); +x_960 = l_Lean_MessageData_toString(x_958, x_954); +if (lean_obj_tag(x_960) == 0) +{ +lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; uint8_t x_966; +lean_dec(x_959); +x_961 = lean_ctor_get(x_960, 0); +lean_inc(x_961); +x_962 = lean_ctor_get(x_960, 1); +lean_inc(x_962); +lean_dec(x_960); +x_963 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_963, 0, x_961); +x_964 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_964, 0, x_963); +x_965 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_964, x_4, x_5, x_6, x_7, x_962); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_966 = !lean_is_exclusive(x_965); +if (x_966 == 0) +{ +return x_965; +} +else +{ +lean_object* x_967; lean_object* x_968; lean_object* x_969; +x_967 = lean_ctor_get(x_965, 0); +x_968 = lean_ctor_get(x_965, 1); +lean_inc(x_968); +lean_inc(x_967); +lean_dec(x_965); +x_969 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_969, 0, x_967); +lean_ctor_set(x_969, 1, x_968); +return x_969; +} +} +else +{ +uint8_t x_970; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_970 = !lean_is_exclusive(x_960); +if (x_970 == 0) +{ +lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; +x_971 = lean_ctor_get(x_960, 0); +x_972 = lean_io_error_to_string(x_971); +x_973 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_973, 0, x_972); +x_974 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_974, 0, x_973); +x_975 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_975, 0, x_959); +lean_ctor_set(x_975, 1, x_974); +lean_ctor_set(x_960, 0, x_975); +return x_960; +} +else +{ +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; +x_976 = lean_ctor_get(x_960, 0); +x_977 = lean_ctor_get(x_960, 1); +lean_inc(x_977); +lean_inc(x_976); +lean_dec(x_960); +x_978 = lean_io_error_to_string(x_976); +x_979 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_979, 0, x_978); +x_980 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_980, 0, x_979); +x_981 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_981, 0, x_959); +lean_ctor_set(x_981, 1, x_980); +x_982 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_982, 0, x_981); +lean_ctor_set(x_982, 1, x_977); +return x_982; +} +} +} +else +{ +lean_object* x_983; +x_983 = lean_ctor_get(x_956, 0); +lean_inc(x_983); +lean_dec(x_956); +x_920 = x_983; +x_921 = x_954; +goto block_936; +} +} +else +{ +uint8_t x_984; +lean_dec(x_940); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_805); +lean_dec(x_798); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_984 = !lean_is_exclusive(x_944); +if (x_984 == 0) +{ +return x_944; +} +else +{ +lean_object* x_985; lean_object* x_986; lean_object* x_987; +x_985 = lean_ctor_get(x_944, 0); +x_986 = lean_ctor_get(x_944, 1); +lean_inc(x_986); +lean_inc(x_985); +lean_dec(x_944); +x_987 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_987, 0, x_985); +lean_ctor_set(x_987, 1, x_986); +return x_987; +} +} +} +else +{ +uint8_t x_988; +lean_dec(x_817); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_805); +lean_dec(x_798); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_988 = !lean_is_exclusive(x_939); +if (x_988 == 0) +{ +return x_939; +} +else +{ +lean_object* x_989; lean_object* x_990; lean_object* x_991; +x_989 = lean_ctor_get(x_939, 0); +x_990 = lean_ctor_get(x_939, 1); +lean_inc(x_990); +lean_inc(x_989); +lean_dec(x_939); +x_991 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_991, 0, x_989); +lean_ctor_set(x_991, 1, x_990); +return x_991; +} +} +block_936: +{ +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_inc(x_813); +x_922 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_811, x_920, x_798, x_813); +x_923 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_922, x_4, x_5, x_6, x_7, x_921); +x_924 = lean_ctor_get(x_923, 1); +lean_inc(x_924); +lean_dec(x_923); +x_925 = lean_box(0); +x_926 = l_Lean_mkConst(x_813, x_925); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_926); +x_927 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_926, x_4, x_5, x_6, x_7, x_924); +if (lean_obj_tag(x_927) == 0) +{ +lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; +x_928 = lean_ctor_get(x_927, 0); +lean_inc(x_928); +x_929 = lean_ctor_get(x_927, 1); +lean_inc(x_929); +lean_dec(x_927); +x_930 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__26___boxed), 11, 4); +lean_closure_set(x_930, 0, x_1); +lean_closure_set(x_930, 1, x_818); +lean_closure_set(x_930, 2, x_805); +lean_closure_set(x_930, 3, x_926); +x_931 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_928, x_930, x_4, x_5, x_6, x_7, x_929); +return x_931; +} +else +{ +uint8_t x_932; +lean_dec(x_926); +lean_dec(x_805); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_932 = !lean_is_exclusive(x_927); +if (x_932 == 0) +{ +return x_927; +} +else +{ +lean_object* x_933; lean_object* x_934; lean_object* x_935; +x_933 = lean_ctor_get(x_927, 0); +x_934 = lean_ctor_get(x_927, 1); +lean_inc(x_934); +lean_inc(x_933); +lean_dec(x_927); +x_935 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_935, 0, x_933); +lean_ctor_set(x_935, 1, x_934); +return x_935; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_1022; +lean_dec(x_817); +lean_dec(x_815); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_810); +lean_dec(x_809); +lean_dec(x_805); +lean_dec(x_798); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1022 = !lean_is_exclusive(x_819); +if (x_1022 == 0) +{ +return x_819; +} +else +{ +lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; +x_1023 = lean_ctor_get(x_819, 0); +x_1024 = lean_ctor_get(x_819, 1); +lean_inc(x_1024); +lean_inc(x_1023); +lean_dec(x_819); +x_1025 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1025, 0, x_1023); +lean_ctor_set(x_1025, 1, x_1024); +return x_1025; +} +} +} +else +{ +uint8_t x_1026; +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_810); +lean_dec(x_809); +lean_dec(x_805); +lean_dec(x_798); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1026 = !lean_is_exclusive(x_814); +if (x_1026 == 0) +{ +return x_814; +} +else +{ +lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; +x_1027 = lean_ctor_get(x_814, 0); +x_1028 = lean_ctor_get(x_814, 1); +lean_inc(x_1028); +lean_inc(x_1027); +lean_dec(x_814); +x_1029 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1029, 0, x_1027); +lean_ctor_set(x_1029, 1, x_1028); +return x_1029; +} +} +} +else +{ +lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; +lean_dec(x_811); +lean_dec(x_810); +lean_dec(x_809); +lean_dec(x_798); +lean_dec(x_10); +x_1030 = lean_ctor_get(x_812, 0); +lean_inc(x_1030); +lean_dec(x_812); +x_1031 = lean_box(0); +x_1032 = l_Lean_mkConst(x_1030, x_1031); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1032); +x_1033 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1032, x_4, x_5, x_6, x_7, x_808); +if (lean_obj_tag(x_1033) == 0) +{ +lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; +x_1034 = lean_ctor_get(x_1033, 0); +lean_inc(x_1034); +x_1035 = lean_ctor_get(x_1033, 1); +lean_inc(x_1035); +lean_dec(x_1033); +x_1036 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__28___boxed), 10, 3); +lean_closure_set(x_1036, 0, x_1); +lean_closure_set(x_1036, 1, x_805); +lean_closure_set(x_1036, 2, x_1032); +x_1037 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1034, x_1036, x_4, x_5, x_6, x_7, x_1035); return x_1037; } -} -} else { uint8_t x_1038; -lean_dec(x_909); -lean_dec(x_907); -lean_dec(x_906); -lean_dec(x_901); -lean_dec(x_894); -lean_dec(x_9); +lean_dec(x_1032); +lean_dec(x_805); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1038 = !lean_is_exclusive(x_910); +x_1038 = !lean_is_exclusive(x_1033); if (x_1038 == 0) { -return x_910; +return x_1033; } else { lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; -x_1039 = lean_ctor_get(x_910, 0); -x_1040 = lean_ctor_get(x_910, 1); +x_1039 = lean_ctor_get(x_1033, 0); +x_1040 = lean_ctor_get(x_1033, 1); lean_inc(x_1040); lean_inc(x_1039); -lean_dec(x_910); +lean_dec(x_1033); x_1041 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1041, 0, x_1039); lean_ctor_set(x_1041, 1, x_1040); @@ -12236,1288 +20849,1037 @@ return x_1041; } } } +} else { -lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; -lean_dec(x_907); -lean_dec(x_906); -lean_dec(x_894); +lean_object* x_1042; +lean_dec(x_787); +lean_dec(x_1); +x_1042 = lean_box(0); +x_788 = x_1042; +goto block_797; +} +block_797: +{ +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_dec(x_788); +x_789 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_790 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_790, 0, x_789); +x_791 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_791, 0, x_790); +x_792 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_793 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_793, 0, x_792); +lean_ctor_set(x_793, 1, x_791); +x_794 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_795 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_795, 0, x_793); +lean_ctor_set(x_795, 1, x_794); +x_796 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_795, x_4, x_5, x_6, x_7, x_786); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_796; +} +} +case 5: +{ +lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; +x_1043 = lean_ctor_get(x_9, 1); +lean_inc(x_1043); lean_dec(x_9); -x_1042 = lean_ctor_get(x_908, 0); -lean_inc(x_1042); -lean_dec(x_908); -x_1043 = lean_box(0); -x_1044 = l_Lean_mkConst(x_1042, x_1043); +x_1044 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_1044) == 4) +{ +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; +x_1055 = lean_ctor_get(x_1044, 0); +lean_inc(x_1055); +lean_dec(x_1044); +x_1056 = lean_unsigned_to_nat(0u); +x_1057 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_1056); +x_1058 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_1057); +x_1059 = lean_mk_array(x_1057, x_1058); +x_1060 = lean_unsigned_to_nat(1u); +x_1061 = lean_nat_sub(x_1057, x_1060); +lean_dec(x_1057); +lean_inc(x_10); +x_1062 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_1059, x_1061); +x_1063 = lean_st_ref_get(x_7, x_1043); +x_1064 = lean_ctor_get(x_1063, 0); +lean_inc(x_1064); +x_1065 = lean_ctor_get(x_1063, 1); +lean_inc(x_1065); +lean_dec(x_1063); +x_1066 = lean_ctor_get(x_1064, 0); +lean_inc(x_1066); +lean_dec(x_1064); +x_1067 = lean_ctor_get(x_1, 0); +lean_inc(x_1067); +x_1068 = lean_ctor_get(x_1, 2); +lean_inc(x_1068); +x_1069 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1068, x_1066, x_1055); +if (lean_obj_tag(x_1069) == 0) +{ +lean_object* x_1070; lean_object* x_1071; +lean_inc(x_1067); +x_1070 = l_Lean_Name_append___main(x_1055, x_1067); +lean_inc(x_1055); +x_1071 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1055, x_4, x_5, x_6, x_7, x_1065); +if (lean_obj_tag(x_1071) == 0) +{ +lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; +x_1072 = lean_ctor_get(x_1071, 0); +lean_inc(x_1072); +x_1073 = lean_ctor_get(x_1071, 1); +lean_inc(x_1073); +lean_dec(x_1071); +x_1074 = l_Lean_ConstantInfo_type(x_1072); +x_1075 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1044); -x_1045 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1044, x_3, x_4, x_5, x_6, x_904); -if (lean_obj_tag(x_1045) == 0) +lean_inc(x_1074); +x_1076 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1074, x_1075, x_4, x_5, x_6, x_7, x_1073); +if (lean_obj_tag(x_1076) == 0) { -lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; -x_1046 = lean_ctor_get(x_1045, 0); -lean_inc(x_1046); -x_1047 = lean_ctor_get(x_1045, 1); -lean_inc(x_1047); -lean_dec(x_1045); -x_1048 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19___boxed), 10, 3); -lean_closure_set(x_1048, 0, x_1); -lean_closure_set(x_1048, 1, x_901); -lean_closure_set(x_1048, 2, x_1044); -x_1049 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1046, x_1048, x_3, x_4, x_5, x_6, x_1047); -return x_1049; -} -else -{ -uint8_t x_1050; -lean_dec(x_1044); -lean_dec(x_901); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1050 = !lean_is_exclusive(x_1045); -if (x_1050 == 0) -{ -return x_1045; -} -else -{ -lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; -x_1051 = lean_ctor_get(x_1045, 0); -x_1052 = lean_ctor_get(x_1045, 1); -lean_inc(x_1052); -lean_inc(x_1051); -lean_dec(x_1045); -x_1053 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1053, 0, x_1051); -lean_ctor_set(x_1053, 1, x_1052); -return x_1053; -} -} -} -} -else -{ -lean_object* x_1054; -lean_dec(x_883); -lean_dec(x_1); -x_1054 = lean_box(0); -x_884 = x_1054; -goto block_893; -} -block_893: -{ -lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; -lean_dec(x_884); -x_885 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_886 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_886, 0, x_885); -x_887 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_887, 0, x_886); -x_888 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_889 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_889, 0, x_888); -lean_ctor_set(x_889, 1, x_887); -x_890 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_891 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_891, 0, x_889); -lean_ctor_set(x_891, 1, x_890); -x_892 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_891, x_3, x_4, x_5, x_6, x_882); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_892; -} -} -case 8: -{ -lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; -x_1055 = lean_ctor_get(x_8, 1); -lean_inc(x_1055); -lean_dec(x_8); -x_1056 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_1056) == 4) -{ -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; -x_1067 = lean_ctor_get(x_1056, 0); -lean_inc(x_1067); -lean_dec(x_1056); -x_1068 = lean_unsigned_to_nat(0u); -x_1069 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_1068); -x_1070 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_1069); -x_1071 = lean_mk_array(x_1069, x_1070); -x_1072 = lean_unsigned_to_nat(1u); -x_1073 = lean_nat_sub(x_1069, x_1072); -lean_dec(x_1069); -lean_inc(x_9); -x_1074 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_1071, x_1073); -x_1075 = lean_st_ref_get(x_6, x_1055); -x_1076 = lean_ctor_get(x_1075, 0); -lean_inc(x_1076); -x_1077 = lean_ctor_get(x_1075, 1); +lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1250; uint8_t x_1251; +x_1077 = lean_ctor_get(x_1076, 0); lean_inc(x_1077); -lean_dec(x_1075); -x_1078 = lean_ctor_get(x_1076, 0); +x_1078 = lean_ctor_get(x_1076, 1); lean_inc(x_1078); lean_dec(x_1076); -x_1079 = lean_ctor_get(x_1, 0); -lean_inc(x_1079); -x_1080 = lean_ctor_get(x_1, 2); -lean_inc(x_1080); -x_1081 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1080, x_1078, x_1067); -lean_dec(x_1078); -if (lean_obj_tag(x_1081) == 0) +x_1250 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_1251 = l_Lean_Expr_isConstOf(x_1077, x_1250); +if (x_1251 == 0) { -lean_object* x_1082; lean_object* x_1083; -lean_inc(x_1079); -x_1082 = l_Lean_Name_append___main(x_1067, x_1079); -lean_inc(x_1067); -x_1083 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1067, x_3, x_4, x_5, x_6, x_1077); -if (lean_obj_tag(x_1083) == 0) +lean_object* x_1252; uint8_t x_1253; +x_1252 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_1253 = l_Lean_Expr_isConstOf(x_1077, x_1252); +lean_dec(x_1077); +if (x_1253 == 0) { -lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; -x_1084 = lean_ctor_get(x_1083, 0); -lean_inc(x_1084); -x_1085 = lean_ctor_get(x_1083, 1); -lean_inc(x_1085); -lean_dec(x_1083); -x_1086 = l_Lean_ConstantInfo_type(x_1084); -x_1087 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1086); -x_1088 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1086, x_1087, x_3, x_4, x_5, x_6, x_1085); -if (lean_obj_tag(x_1088) == 0) -{ -lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1179; uint8_t x_1180; -x_1089 = lean_ctor_get(x_1088, 0); -lean_inc(x_1089); -x_1090 = lean_ctor_get(x_1088, 1); -lean_inc(x_1090); -lean_dec(x_1088); -x_1179 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_1180 = l_Lean_Expr_isConstOf(x_1089, x_1179); -if (x_1180 == 0) -{ -lean_object* x_1181; uint8_t x_1182; -x_1181 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_1182 = l_Lean_Expr_isConstOf(x_1089, x_1181); -lean_dec(x_1089); -if (x_1182 == 0) -{ -lean_object* x_1183; -lean_dec(x_1086); -lean_dec(x_1084); -lean_dec(x_1082); -lean_dec(x_1080); +lean_object* x_1254; lean_dec(x_1074); -lean_dec(x_1067); +lean_dec(x_1072); +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1066); +lean_dec(x_1062); +lean_dec(x_1055); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_1183 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_1090); -if (lean_obj_tag(x_1183) == 0) +lean_inc(x_10); +x_1254 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_1078); +if (lean_obj_tag(x_1254) == 0) { -lean_object* x_1184; -x_1184 = lean_ctor_get(x_1183, 0); -lean_inc(x_1184); -if (lean_obj_tag(x_1184) == 0) +lean_object* x_1255; +x_1255 = lean_ctor_get(x_1254, 0); +lean_inc(x_1255); +if (lean_obj_tag(x_1255) == 0) { -lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; +lean_object* x_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; lean_dec(x_1); -x_1185 = lean_ctor_get(x_1183, 1); -lean_inc(x_1185); -lean_dec(x_1183); -x_1186 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1186, 0, x_1079); -x_1187 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1188 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1188, 0, x_1187); -lean_ctor_set(x_1188, 1, x_1186); -x_1189 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_1190 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1190, 0, x_1188); -lean_ctor_set(x_1190, 1, x_1189); -x_1191 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1192 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1192, 0, x_1191); -x_1193 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1193, 0, x_1192); -x_1194 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1194, 0, x_1190); -lean_ctor_set(x_1194, 1, x_1193); -x_1195 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1196 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1196, 0, x_1194); -lean_ctor_set(x_1196, 1, x_1195); -x_1197 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1196, x_3, x_4, x_5, x_6, x_1185); +x_1256 = lean_ctor_get(x_1254, 1); +lean_inc(x_1256); +lean_dec(x_1254); +x_1257 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1257, 0, x_1067); +x_1258 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_1259 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1259, 0, x_1258); +lean_ctor_set(x_1259, 1, x_1257); +x_1260 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_1261 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1261, 0, x_1259); +lean_ctor_set(x_1261, 1, x_1260); +x_1262 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1263 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1263, 0, x_1262); +x_1264 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1264, 0, x_1263); +x_1265 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1265, 0, x_1261); +lean_ctor_set(x_1265, 1, x_1264); +x_1266 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1267 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1267, 0, x_1265); +lean_ctor_set(x_1267, 1, x_1266); +x_1268 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1267, x_4, x_5, x_6, x_7, x_1256); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_1197; +return x_1268; } else { -lean_object* x_1198; lean_object* x_1199; -lean_dec(x_1079); -lean_dec(x_9); -x_1198 = lean_ctor_get(x_1183, 1); -lean_inc(x_1198); -lean_dec(x_1183); -x_1199 = lean_ctor_get(x_1184, 0); -lean_inc(x_1199); -lean_dec(x_1184); -x_2 = x_1199; -x_7 = x_1198; +lean_object* x_1269; lean_object* x_1270; uint8_t x_1271; +lean_dec(x_1067); +lean_dec(x_10); +x_1269 = lean_ctor_get(x_1254, 1); +lean_inc(x_1269); +lean_dec(x_1254); +x_1270 = lean_ctor_get(x_1255, 0); +lean_inc(x_1270); +lean_dec(x_1255); +x_1271 = 0; +x_2 = x_1270; +x_3 = x_1271; +x_8 = x_1269; goto _start; } } else { -uint8_t x_1201; +uint8_t x_1273; +lean_dec(x_1067); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1273 = !lean_is_exclusive(x_1254); +if (x_1273 == 0) +{ +return x_1254; +} +else +{ +lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; +x_1274 = lean_ctor_get(x_1254, 0); +x_1275 = lean_ctor_get(x_1254, 1); +lean_inc(x_1275); +lean_inc(x_1274); +lean_dec(x_1254); +x_1276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1276, 0, x_1274); +lean_ctor_set(x_1276, 1, x_1275); +return x_1276; +} +} +} +else +{ +lean_object* x_1277; +x_1277 = lean_box(0); +x_1079 = x_1277; +goto block_1249; +} +} +else +{ +lean_object* x_1278; +lean_dec(x_1077); +x_1278 = lean_box(0); +x_1079 = x_1278; +goto block_1249; +} +block_1249: +{ +lean_object* x_1080; lean_dec(x_1079); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1201 = !lean_is_exclusive(x_1183); -if (x_1201 == 0) +x_1080 = l_Lean_ConstantInfo_value_x3f(x_1072); +lean_dec(x_1072); +if (lean_obj_tag(x_1080) == 0) { -return x_1183; -} -else -{ -lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; -x_1202 = lean_ctor_get(x_1183, 0); -x_1203 = lean_ctor_get(x_1183, 1); -lean_inc(x_1203); -lean_inc(x_1202); -lean_dec(x_1183); -x_1204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1204, 0, x_1202); -lean_ctor_set(x_1204, 1, x_1203); -return x_1204; -} -} -} -else -{ -lean_object* x_1205; -x_1205 = lean_box(0); -x_1091 = x_1205; -goto block_1178; -} -} -else -{ -lean_object* x_1206; -lean_dec(x_1089); -x_1206 = lean_box(0); -x_1091 = x_1206; -goto block_1178; -} -block_1178: -{ -lean_object* x_1092; -lean_dec(x_1091); -x_1092 = l_Lean_ConstantInfo_value_x3f(x_1084); -lean_dec(x_1084); -if (lean_obj_tag(x_1092) == 0) -{ -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_dec(x_1086); -lean_dec(x_1082); -lean_dec(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_dec(x_1074); -lean_dec(x_1067); +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1066); +lean_dec(x_1062); +lean_dec(x_1055); lean_dec(x_1); -x_1093 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1093, 0, x_1079); -x_1094 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1095 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1095, 0, x_1094); -lean_ctor_set(x_1095, 1, x_1093); -x_1096 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_1097 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1097, 0, x_1095); -lean_ctor_set(x_1097, 1, x_1096); -x_1098 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1099 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1099, 0, x_1098); -x_1100 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1100, 0, x_1099); -x_1101 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1101, 0, x_1097); -lean_ctor_set(x_1101, 1, x_1100); -x_1102 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1103 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1103, 0, x_1101); -lean_ctor_set(x_1103, 1, x_1102); -x_1104 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1103, x_3, x_4, x_5, x_6, x_1090); +x_1081 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1081, 0, x_1067); +x_1082 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_1083 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1083, 0, x_1082); +lean_ctor_set(x_1083, 1, x_1081); +x_1084 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_1085 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1085, 0, x_1083); +lean_ctor_set(x_1085, 1, x_1084); +x_1086 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1087 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1087, 0, x_1086); +x_1088 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1088, 0, x_1087); +x_1089 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1089, 0, x_1085); +lean_ctor_set(x_1089, 1, x_1088); +x_1090 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1091 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1091, 0, x_1089); +lean_ctor_set(x_1091, 1, x_1090); +x_1092 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1091, x_4, x_5, x_6, x_7, x_1078); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_1104; +return x_1092; } else { -lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; -lean_dec(x_1079); -lean_dec(x_9); -x_1105 = lean_ctor_get(x_1092, 0); -lean_inc(x_1105); -lean_dec(x_1092); -x_1106 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1105); +lean_object* x_1093; lean_object* x_1094; +lean_dec(x_1067); +lean_dec(x_10); +x_1093 = lean_ctor_get(x_1080, 0); +lean_inc(x_1093); +lean_dec(x_1080); +x_1094 = l_Lean_Environment_getModuleIdxFor_x3f(x_1066, x_1055); +lean_dec(x_1066); +if (lean_obj_tag(x_1094) == 0) +{ +lean_object* x_1095; lean_object* x_1096; lean_object* x_1112; uint8_t x_1113; lean_object* x_1114; +x_1112 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1093); +x_1113 = 0; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); lean_inc(x_1); -x_1107 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1106, x_3, x_4, x_5, x_6, x_1090); -if (lean_obj_tag(x_1107) == 0) +x_1114 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1112, x_1113, x_4, x_5, x_6, x_7, x_1078); +if (lean_obj_tag(x_1114) == 0) { -lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; -x_1108 = lean_ctor_get(x_1107, 0); -lean_inc(x_1108); -x_1109 = lean_ctor_get(x_1107, 1); -lean_inc(x_1109); -lean_dec(x_1107); -x_1127 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_1128 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21___boxed), 9, 2); -lean_closure_set(x_1128, 0, x_1); -lean_closure_set(x_1128, 1, x_1127); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_1129 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1086, x_1128, x_3, x_4, x_5, x_6, x_1109); -if (lean_obj_tag(x_1129) == 0) -{ -lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; uint8_t 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; -x_1130 = lean_ctor_get(x_1129, 0); -lean_inc(x_1130); -x_1131 = lean_ctor_get(x_1129, 1); -lean_inc(x_1131); -lean_dec(x_1129); -x_1132 = lean_box(0); -lean_inc(x_1082); -x_1133 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_1133, 0, x_1082); -lean_ctor_set(x_1133, 1, x_1132); -lean_ctor_set(x_1133, 2, x_1130); -x_1134 = lean_box(0); -x_1135 = 0; -x_1136 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_1136, 0, x_1133); -lean_ctor_set(x_1136, 1, x_1108); -lean_ctor_set(x_1136, 2, x_1134); -lean_ctor_set_uint8(x_1136, sizeof(void*)*3, x_1135); -x_1137 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1137, 0, x_1136); -x_1138 = lean_st_ref_get(x_6, x_1131); -x_1139 = lean_ctor_get(x_1138, 0); -lean_inc(x_1139); -x_1140 = lean_ctor_get(x_1138, 1); -lean_inc(x_1140); -lean_dec(x_1138); -x_1141 = lean_ctor_get(x_1139, 0); -lean_inc(x_1141); -lean_dec(x_1139); -x_1142 = l_Lean_Environment_addAndCompile(x_1141, x_1132, x_1137); -lean_dec(x_1137); -if (lean_obj_tag(x_1142) == 0) -{ -lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; -lean_dec(x_1082); -lean_dec(x_1080); -lean_dec(x_1074); -lean_dec(x_1067); -lean_dec(x_1); -x_1143 = lean_ctor_get(x_1142, 0); -lean_inc(x_1143); -lean_dec(x_1142); -x_1144 = l_Lean_KernelException_toMessageData(x_1143, x_1132); -x_1145 = lean_ctor_get(x_5, 3); -lean_inc(x_1145); -x_1146 = l_Lean_MessageData_toString(x_1144, x_1140); -if (lean_obj_tag(x_1146) == 0) -{ -lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; uint8_t x_1152; -lean_dec(x_1145); -x_1147 = lean_ctor_get(x_1146, 0); -lean_inc(x_1147); -x_1148 = lean_ctor_get(x_1146, 1); -lean_inc(x_1148); -lean_dec(x_1146); -x_1149 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1149, 0, x_1147); -x_1150 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1150, 0, x_1149); -x_1151 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1150, x_3, x_4, x_5, x_6, x_1148); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1152 = !lean_is_exclusive(x_1151); -if (x_1152 == 0) -{ -return x_1151; -} -else -{ -lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; -x_1153 = lean_ctor_get(x_1151, 0); -x_1154 = lean_ctor_get(x_1151, 1); -lean_inc(x_1154); -lean_inc(x_1153); -lean_dec(x_1151); -x_1155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1155, 0, x_1153); -lean_ctor_set(x_1155, 1, x_1154); -return x_1155; -} -} -else -{ -uint8_t x_1156; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1156 = !lean_is_exclusive(x_1146); -if (x_1156 == 0) -{ -lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; -x_1157 = lean_ctor_get(x_1146, 0); -x_1158 = lean_io_error_to_string(x_1157); -x_1159 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1159, 0, x_1158); -x_1160 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1160, 0, x_1159); -x_1161 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1161, 0, x_1145); -lean_ctor_set(x_1161, 1, x_1160); -lean_ctor_set(x_1146, 0, x_1161); -return x_1146; -} -else -{ -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; -x_1162 = lean_ctor_get(x_1146, 0); -x_1163 = lean_ctor_get(x_1146, 1); -lean_inc(x_1163); -lean_inc(x_1162); -lean_dec(x_1146); -x_1164 = lean_io_error_to_string(x_1162); -x_1165 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1165, 0, x_1164); -x_1166 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1166, 0, x_1165); -x_1167 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1167, 0, x_1145); -lean_ctor_set(x_1167, 1, x_1166); -x_1168 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1168, 0, x_1167); -lean_ctor_set(x_1168, 1, x_1163); -return x_1168; -} -} -} -else -{ -lean_object* x_1169; -x_1169 = lean_ctor_get(x_1142, 0); -lean_inc(x_1169); -lean_dec(x_1142); -x_1110 = x_1169; -x_1111 = x_1140; -goto block_1126; -} -} -else -{ -uint8_t x_1170; -lean_dec(x_1108); -lean_dec(x_1082); -lean_dec(x_1080); -lean_dec(x_1074); -lean_dec(x_1067); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1170 = !lean_is_exclusive(x_1129); -if (x_1170 == 0) -{ -return x_1129; -} -else -{ -lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; -x_1171 = lean_ctor_get(x_1129, 0); -x_1172 = lean_ctor_get(x_1129, 1); -lean_inc(x_1172); -lean_inc(x_1171); -lean_dec(x_1129); -x_1173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1173, 0, x_1171); -lean_ctor_set(x_1173, 1, x_1172); -return x_1173; -} -} -block_1126: -{ -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_inc(x_1082); -x_1112 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1080, x_1110, x_1067, x_1082); -x_1113 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1112, x_3, x_4, x_5, x_6, x_1111); -x_1114 = lean_ctor_get(x_1113, 1); -lean_inc(x_1114); -lean_dec(x_1113); -x_1115 = lean_box(0); -x_1116 = l_Lean_mkConst(x_1082, x_1115); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); +lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; +x_1115 = lean_ctor_get(x_1114, 0); +lean_inc(x_1115); +x_1116 = lean_ctor_get(x_1114, 1); lean_inc(x_1116); -x_1117 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1116, x_3, x_4, x_5, x_6, x_1114); -if (lean_obj_tag(x_1117) == 0) -{ -lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; -x_1118 = lean_ctor_get(x_1117, 0); -lean_inc(x_1118); -x_1119 = lean_ctor_get(x_1117, 1); -lean_inc(x_1119); -lean_dec(x_1117); -x_1120 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20___boxed), 11, 4); -lean_closure_set(x_1120, 0, x_1); -lean_closure_set(x_1120, 1, x_1087); -lean_closure_set(x_1120, 2, x_1074); -lean_closure_set(x_1120, 3, x_1116); -x_1121 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1118, x_1120, x_3, x_4, x_5, x_6, x_1119); -return x_1121; -} -else -{ -uint8_t x_1122; -lean_dec(x_1116); -lean_dec(x_1074); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1122 = !lean_is_exclusive(x_1117); -if (x_1122 == 0) -{ -return x_1117; -} -else -{ -lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; -x_1123 = lean_ctor_get(x_1117, 0); -x_1124 = lean_ctor_get(x_1117, 1); -lean_inc(x_1124); -lean_inc(x_1123); -lean_dec(x_1117); -x_1125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1125, 0, x_1123); -lean_ctor_set(x_1125, 1, x_1124); -return x_1125; -} -} -} -} -else -{ -uint8_t x_1174; -lean_dec(x_1086); -lean_dec(x_1082); -lean_dec(x_1080); -lean_dec(x_1074); -lean_dec(x_1067); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1174 = !lean_is_exclusive(x_1107); -if (x_1174 == 0) -{ -return x_1107; -} -else -{ -lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; -x_1175 = lean_ctor_get(x_1107, 0); -x_1176 = lean_ctor_get(x_1107, 1); -lean_inc(x_1176); -lean_inc(x_1175); -lean_dec(x_1107); -x_1177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1177, 0, x_1175); -lean_ctor_set(x_1177, 1, x_1176); -return x_1177; -} -} -} -} -} -else -{ -uint8_t x_1207; -lean_dec(x_1086); -lean_dec(x_1084); -lean_dec(x_1082); -lean_dec(x_1080); -lean_dec(x_1079); -lean_dec(x_1074); -lean_dec(x_1067); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1207 = !lean_is_exclusive(x_1088); -if (x_1207 == 0) -{ -return x_1088; -} -else -{ -lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; -x_1208 = lean_ctor_get(x_1088, 0); -x_1209 = lean_ctor_get(x_1088, 1); -lean_inc(x_1209); -lean_inc(x_1208); -lean_dec(x_1088); -x_1210 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1210, 0, x_1208); -lean_ctor_set(x_1210, 1, x_1209); -return x_1210; -} -} -} -else -{ -uint8_t x_1211; -lean_dec(x_1082); -lean_dec(x_1080); -lean_dec(x_1079); -lean_dec(x_1074); -lean_dec(x_1067); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1211 = !lean_is_exclusive(x_1083); -if (x_1211 == 0) -{ -return x_1083; -} -else -{ -lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; -x_1212 = lean_ctor_get(x_1083, 0); -x_1213 = lean_ctor_get(x_1083, 1); -lean_inc(x_1213); -lean_inc(x_1212); -lean_dec(x_1083); -x_1214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1214, 0, x_1212); -lean_ctor_set(x_1214, 1, x_1213); -return x_1214; -} -} -} -else -{ -lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; -lean_dec(x_1080); -lean_dec(x_1079); -lean_dec(x_1067); -lean_dec(x_9); -x_1215 = lean_ctor_get(x_1081, 0); -lean_inc(x_1215); -lean_dec(x_1081); -x_1216 = lean_box(0); -x_1217 = l_Lean_mkConst(x_1215, x_1216); +lean_dec(x_1114); +x_1117 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_1118 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__30___boxed), 9, 2); +lean_closure_set(x_1118, 0, x_1); +lean_closure_set(x_1118, 1, x_1117); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1217); -x_1218 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1217, x_3, x_4, x_5, x_6, x_1077); -if (lean_obj_tag(x_1218) == 0) +x_1119 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1074, x_1118, x_4, x_5, x_6, x_7, x_1116); +if (lean_obj_tag(x_1119) == 0) { -lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; -x_1219 = lean_ctor_get(x_1218, 0); +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; +x_1120 = lean_ctor_get(x_1119, 0); +lean_inc(x_1120); +x_1121 = lean_ctor_get(x_1119, 1); +lean_inc(x_1121); +lean_dec(x_1119); +x_1122 = lean_box(0); +lean_inc(x_1070); +x_1123 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_1123, 0, x_1070); +lean_ctor_set(x_1123, 1, x_1122); +lean_ctor_set(x_1123, 2, x_1120); +x_1124 = lean_box(0); +x_1125 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_1125, 0, x_1123); +lean_ctor_set(x_1125, 1, x_1115); +lean_ctor_set(x_1125, 2, x_1124); +lean_ctor_set_uint8(x_1125, sizeof(void*)*3, x_1113); +x_1126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1126, 0, x_1125); +x_1127 = lean_st_ref_get(x_7, x_1121); +x_1128 = lean_ctor_get(x_1127, 0); +lean_inc(x_1128); +x_1129 = lean_ctor_get(x_1127, 1); +lean_inc(x_1129); +lean_dec(x_1127); +x_1130 = lean_ctor_get(x_1128, 0); +lean_inc(x_1130); +lean_dec(x_1128); +x_1131 = l_Lean_Environment_addAndCompile(x_1130, x_1122, x_1126); +lean_dec(x_1126); +if (lean_obj_tag(x_1131) == 0) +{ +lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1062); +lean_dec(x_1055); +lean_dec(x_1); +x_1132 = lean_ctor_get(x_1131, 0); +lean_inc(x_1132); +lean_dec(x_1131); +x_1133 = l_Lean_KernelException_toMessageData(x_1132, x_1122); +x_1134 = lean_ctor_get(x_6, 3); +lean_inc(x_1134); +x_1135 = l_Lean_MessageData_toString(x_1133, x_1129); +if (lean_obj_tag(x_1135) == 0) +{ +lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; uint8_t x_1141; +lean_dec(x_1134); +x_1136 = lean_ctor_get(x_1135, 0); +lean_inc(x_1136); +x_1137 = lean_ctor_get(x_1135, 1); +lean_inc(x_1137); +lean_dec(x_1135); +x_1138 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1138, 0, x_1136); +x_1139 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1139, 0, x_1138); +x_1140 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1139, x_4, x_5, x_6, x_7, x_1137); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1141 = !lean_is_exclusive(x_1140); +if (x_1141 == 0) +{ +return x_1140; +} +else +{ +lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; +x_1142 = lean_ctor_get(x_1140, 0); +x_1143 = lean_ctor_get(x_1140, 1); +lean_inc(x_1143); +lean_inc(x_1142); +lean_dec(x_1140); +x_1144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1144, 0, x_1142); +lean_ctor_set(x_1144, 1, x_1143); +return x_1144; +} +} +else +{ +uint8_t x_1145; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1145 = !lean_is_exclusive(x_1135); +if (x_1145 == 0) +{ +lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; +x_1146 = lean_ctor_get(x_1135, 0); +x_1147 = lean_io_error_to_string(x_1146); +x_1148 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1148, 0, x_1147); +x_1149 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1149, 0, x_1148); +x_1150 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1150, 0, x_1134); +lean_ctor_set(x_1150, 1, x_1149); +lean_ctor_set(x_1135, 0, x_1150); +return x_1135; +} +else +{ +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; +x_1151 = lean_ctor_get(x_1135, 0); +x_1152 = lean_ctor_get(x_1135, 1); +lean_inc(x_1152); +lean_inc(x_1151); +lean_dec(x_1135); +x_1153 = lean_io_error_to_string(x_1151); +x_1154 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1154, 0, x_1153); +x_1155 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1155, 0, x_1154); +x_1156 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1156, 0, x_1134); +lean_ctor_set(x_1156, 1, x_1155); +x_1157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1157, 0, x_1156); +lean_ctor_set(x_1157, 1, x_1152); +return x_1157; +} +} +} +else +{ +lean_object* x_1158; +x_1158 = lean_ctor_get(x_1131, 0); +lean_inc(x_1158); +lean_dec(x_1131); +x_1095 = x_1158; +x_1096 = x_1129; +goto block_1111; +} +} +else +{ +uint8_t x_1159; +lean_dec(x_1115); +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1062); +lean_dec(x_1055); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1159 = !lean_is_exclusive(x_1119); +if (x_1159 == 0) +{ +return x_1119; +} +else +{ +lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; +x_1160 = lean_ctor_get(x_1119, 0); +x_1161 = lean_ctor_get(x_1119, 1); +lean_inc(x_1161); +lean_inc(x_1160); +lean_dec(x_1119); +x_1162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1162, 0, x_1160); +lean_ctor_set(x_1162, 1, x_1161); +return x_1162; +} +} +} +else +{ +uint8_t x_1163; +lean_dec(x_1074); +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1062); +lean_dec(x_1055); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1163 = !lean_is_exclusive(x_1114); +if (x_1163 == 0) +{ +return x_1114; +} +else +{ +lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; +x_1164 = lean_ctor_get(x_1114, 0); +x_1165 = lean_ctor_get(x_1114, 1); +lean_inc(x_1165); +lean_inc(x_1164); +lean_dec(x_1114); +x_1166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1166, 0, x_1164); +lean_ctor_set(x_1166, 1, x_1165); +return x_1166; +} +} +block_1111: +{ +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_inc(x_1070); +x_1097 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1068, x_1095, x_1055, x_1070); +x_1098 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1097, x_4, x_5, x_6, x_7, x_1096); +x_1099 = lean_ctor_get(x_1098, 1); +lean_inc(x_1099); +lean_dec(x_1098); +x_1100 = lean_box(0); +x_1101 = l_Lean_mkConst(x_1070, x_1100); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1101); +x_1102 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1101, x_4, x_5, x_6, x_7, x_1099); +if (lean_obj_tag(x_1102) == 0) +{ +lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; +x_1103 = lean_ctor_get(x_1102, 0); +lean_inc(x_1103); +x_1104 = lean_ctor_get(x_1102, 1); +lean_inc(x_1104); +lean_dec(x_1102); +x_1105 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__29___boxed), 11, 4); +lean_closure_set(x_1105, 0, x_1); +lean_closure_set(x_1105, 1, x_1075); +lean_closure_set(x_1105, 2, x_1062); +lean_closure_set(x_1105, 3, x_1101); +x_1106 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1103, x_1105, x_4, x_5, x_6, x_7, x_1104); +return x_1106; +} +else +{ +uint8_t x_1107; +lean_dec(x_1101); +lean_dec(x_1062); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1107 = !lean_is_exclusive(x_1102); +if (x_1107 == 0) +{ +return x_1102; +} +else +{ +lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; +x_1108 = lean_ctor_get(x_1102, 0); +x_1109 = lean_ctor_get(x_1102, 1); +lean_inc(x_1109); +lean_inc(x_1108); +lean_dec(x_1102); +x_1110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1110, 0, x_1108); +lean_ctor_set(x_1110, 1, x_1109); +return x_1110; +} +} +} +} +else +{ +lean_dec(x_1094); +if (x_3 == 0) +{ +lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; uint8_t x_1173; +lean_dec(x_1093); +lean_dec(x_1074); +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1062); +lean_dec(x_1); +x_1167 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1167, 0, x_1055); +x_1168 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_1169 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1169, 0, x_1168); +lean_ctor_set(x_1169, 1, x_1167); +x_1170 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_1171 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1171, 0, x_1169); +lean_ctor_set(x_1171, 1, x_1170); +x_1172 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1171, x_4, x_5, x_6, x_7, x_1078); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1173 = !lean_is_exclusive(x_1172); +if (x_1173 == 0) +{ +return x_1172; +} +else +{ +lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; +x_1174 = lean_ctor_get(x_1172, 0); +x_1175 = lean_ctor_get(x_1172, 1); +lean_inc(x_1175); +lean_inc(x_1174); +lean_dec(x_1172); +x_1176 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1176, 0, x_1174); +lean_ctor_set(x_1176, 1, x_1175); +return x_1176; +} +} +else +{ +lean_object* x_1177; lean_object* x_1178; lean_object* x_1194; uint8_t x_1195; lean_object* x_1196; +x_1194 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1093); +x_1195 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_1196 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1194, x_1195, x_4, x_5, x_6, x_7, x_1078); +if (lean_obj_tag(x_1196) == 0) +{ +lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; +x_1197 = lean_ctor_get(x_1196, 0); +lean_inc(x_1197); +x_1198 = lean_ctor_get(x_1196, 1); +lean_inc(x_1198); +lean_dec(x_1196); +x_1199 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_1200 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34___boxed), 9, 2); +lean_closure_set(x_1200, 0, x_1); +lean_closure_set(x_1200, 1, x_1199); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_1201 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1074, x_1200, x_4, x_5, x_6, x_7, x_1198); +if (lean_obj_tag(x_1201) == 0) +{ +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; +x_1202 = lean_ctor_get(x_1201, 0); +lean_inc(x_1202); +x_1203 = lean_ctor_get(x_1201, 1); +lean_inc(x_1203); +lean_dec(x_1201); +x_1204 = lean_box(0); +lean_inc(x_1070); +x_1205 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_1205, 0, x_1070); +lean_ctor_set(x_1205, 1, x_1204); +lean_ctor_set(x_1205, 2, x_1202); +x_1206 = lean_box(0); +x_1207 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_1207, 0, x_1205); +lean_ctor_set(x_1207, 1, x_1197); +lean_ctor_set(x_1207, 2, x_1206); +lean_ctor_set_uint8(x_1207, sizeof(void*)*3, x_1195); +x_1208 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1208, 0, x_1207); +x_1209 = lean_st_ref_get(x_7, x_1203); +x_1210 = lean_ctor_get(x_1209, 0); +lean_inc(x_1210); +x_1211 = lean_ctor_get(x_1209, 1); +lean_inc(x_1211); +lean_dec(x_1209); +x_1212 = lean_ctor_get(x_1210, 0); +lean_inc(x_1212); +lean_dec(x_1210); +x_1213 = l_Lean_Environment_addAndCompile(x_1212, x_1204, x_1208); +lean_dec(x_1208); +if (lean_obj_tag(x_1213) == 0) +{ +lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1062); +lean_dec(x_1055); +lean_dec(x_1); +x_1214 = lean_ctor_get(x_1213, 0); +lean_inc(x_1214); +lean_dec(x_1213); +x_1215 = l_Lean_KernelException_toMessageData(x_1214, x_1204); +x_1216 = lean_ctor_get(x_6, 3); +lean_inc(x_1216); +x_1217 = l_Lean_MessageData_toString(x_1215, x_1211); +if (lean_obj_tag(x_1217) == 0) +{ +lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; uint8_t x_1223; +lean_dec(x_1216); +x_1218 = lean_ctor_get(x_1217, 0); +lean_inc(x_1218); +x_1219 = lean_ctor_get(x_1217, 1); lean_inc(x_1219); -x_1220 = lean_ctor_get(x_1218, 1); -lean_inc(x_1220); -lean_dec(x_1218); -x_1221 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22___boxed), 10, 3); -lean_closure_set(x_1221, 0, x_1); -lean_closure_set(x_1221, 1, x_1074); -lean_closure_set(x_1221, 2, x_1217); -x_1222 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1219, x_1221, x_3, x_4, x_5, x_6, x_1220); +lean_dec(x_1217); +x_1220 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1220, 0, x_1218); +x_1221 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1221, 0, x_1220); +x_1222 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1221, x_4, x_5, x_6, x_7, x_1219); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1223 = !lean_is_exclusive(x_1222); +if (x_1223 == 0) +{ return x_1222; } else { -uint8_t x_1223; -lean_dec(x_1217); -lean_dec(x_1074); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1223 = !lean_is_exclusive(x_1218); -if (x_1223 == 0) -{ -return x_1218; -} -else -{ lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; -x_1224 = lean_ctor_get(x_1218, 0); -x_1225 = lean_ctor_get(x_1218, 1); +x_1224 = lean_ctor_get(x_1222, 0); +x_1225 = lean_ctor_get(x_1222, 1); lean_inc(x_1225); lean_inc(x_1224); -lean_dec(x_1218); +lean_dec(x_1222); x_1226 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1226, 0, x_1224); lean_ctor_set(x_1226, 1, x_1225); return x_1226; } } +else +{ +uint8_t x_1227; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1227 = !lean_is_exclusive(x_1217); +if (x_1227 == 0) +{ +lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; +x_1228 = lean_ctor_get(x_1217, 0); +x_1229 = lean_io_error_to_string(x_1228); +x_1230 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1230, 0, x_1229); +x_1231 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1231, 0, x_1230); +x_1232 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1232, 0, x_1216); +lean_ctor_set(x_1232, 1, x_1231); +lean_ctor_set(x_1217, 0, x_1232); +return x_1217; +} +else +{ +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; +x_1233 = lean_ctor_get(x_1217, 0); +x_1234 = lean_ctor_get(x_1217, 1); +lean_inc(x_1234); +lean_inc(x_1233); +lean_dec(x_1217); +x_1235 = lean_io_error_to_string(x_1233); +x_1236 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1236, 0, x_1235); +x_1237 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1237, 0, x_1236); +x_1238 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1238, 0, x_1216); +lean_ctor_set(x_1238, 1, x_1237); +x_1239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1239, 0, x_1238); +lean_ctor_set(x_1239, 1, x_1234); +return x_1239; +} } } else { -lean_object* x_1227; -lean_dec(x_1056); -lean_dec(x_1); -x_1227 = lean_box(0); -x_1057 = x_1227; -goto block_1066; +lean_object* x_1240; +x_1240 = lean_ctor_get(x_1213, 0); +lean_inc(x_1240); +lean_dec(x_1213); +x_1177 = x_1240; +x_1178 = x_1211; +goto block_1193; } -block_1066: +} +else { -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_dec(x_1057); -x_1058 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1059 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1059, 0, x_1058); -x_1060 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1060, 0, x_1059); -x_1061 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_1062 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1062, 0, x_1061); -lean_ctor_set(x_1062, 1, x_1060); -x_1063 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1064 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1064, 0, x_1062); -lean_ctor_set(x_1064, 1, x_1063); -x_1065 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1064, x_3, x_4, x_5, x_6, x_1055); +uint8_t x_1241; +lean_dec(x_1197); +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1062); +lean_dec(x_1055); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_1065; -} -} -case 9: +lean_dec(x_1); +x_1241 = !lean_is_exclusive(x_1201); +if (x_1241 == 0) { -lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; -x_1228 = lean_ctor_get(x_8, 1); -lean_inc(x_1228); -lean_dec(x_8); -x_1229 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_1229) == 4) +return x_1201; +} +else { -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; -x_1240 = lean_ctor_get(x_1229, 0); -lean_inc(x_1240); -lean_dec(x_1229); -x_1241 = lean_unsigned_to_nat(0u); -x_1242 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_1241); -x_1243 = l_Lean_Expr_getAppArgs___closed__1; +lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; +x_1242 = lean_ctor_get(x_1201, 0); +x_1243 = lean_ctor_get(x_1201, 1); +lean_inc(x_1243); lean_inc(x_1242); -x_1244 = lean_mk_array(x_1242, x_1243); -x_1245 = lean_unsigned_to_nat(1u); -x_1246 = lean_nat_sub(x_1242, x_1245); -lean_dec(x_1242); -lean_inc(x_9); -x_1247 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_1244, x_1246); -x_1248 = lean_st_ref_get(x_6, x_1228); -x_1249 = lean_ctor_get(x_1248, 0); -lean_inc(x_1249); -x_1250 = lean_ctor_get(x_1248, 1); -lean_inc(x_1250); -lean_dec(x_1248); -x_1251 = lean_ctor_get(x_1249, 0); -lean_inc(x_1251); -lean_dec(x_1249); -x_1252 = lean_ctor_get(x_1, 0); -lean_inc(x_1252); -x_1253 = lean_ctor_get(x_1, 2); -lean_inc(x_1253); -x_1254 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1253, x_1251, x_1240); -lean_dec(x_1251); -if (lean_obj_tag(x_1254) == 0) +lean_dec(x_1201); +x_1244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1244, 0, x_1242); +lean_ctor_set(x_1244, 1, x_1243); +return x_1244; +} +} +} +else { -lean_object* x_1255; lean_object* x_1256; -lean_inc(x_1252); -x_1255 = l_Lean_Name_append___main(x_1240, x_1252); -lean_inc(x_1240); -x_1256 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1240, x_3, x_4, x_5, x_6, x_1250); -if (lean_obj_tag(x_1256) == 0) -{ -lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; -x_1257 = lean_ctor_get(x_1256, 0); -lean_inc(x_1257); -x_1258 = lean_ctor_get(x_1256, 1); -lean_inc(x_1258); -lean_dec(x_1256); -x_1259 = l_Lean_ConstantInfo_type(x_1257); -x_1260 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1259); -x_1261 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1259, x_1260, x_3, x_4, x_5, x_6, x_1258); -if (lean_obj_tag(x_1261) == 0) -{ -lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1352; uint8_t x_1353; -x_1262 = lean_ctor_get(x_1261, 0); -lean_inc(x_1262); -x_1263 = lean_ctor_get(x_1261, 1); -lean_inc(x_1263); -lean_dec(x_1261); -x_1352 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_1353 = l_Lean_Expr_isConstOf(x_1262, x_1352); -if (x_1353 == 0) -{ -lean_object* x_1354; uint8_t x_1355; -x_1354 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_1355 = l_Lean_Expr_isConstOf(x_1262, x_1354); -lean_dec(x_1262); -if (x_1355 == 0) -{ -lean_object* x_1356; -lean_dec(x_1259); -lean_dec(x_1257); -lean_dec(x_1255); -lean_dec(x_1253); -lean_dec(x_1247); -lean_dec(x_1240); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_1356 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_1263); -if (lean_obj_tag(x_1356) == 0) -{ -lean_object* x_1357; -x_1357 = lean_ctor_get(x_1356, 0); -lean_inc(x_1357); -if (lean_obj_tag(x_1357) == 0) -{ -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_dec(x_1); -x_1358 = lean_ctor_get(x_1356, 1); -lean_inc(x_1358); -lean_dec(x_1356); -x_1359 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1359, 0, x_1252); -x_1360 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1361 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1361, 0, x_1360); -lean_ctor_set(x_1361, 1, x_1359); -x_1362 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_1363 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1363, 0, x_1361); -lean_ctor_set(x_1363, 1, x_1362); -x_1364 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1365 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1365, 0, x_1364); -x_1366 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1366, 0, x_1365); -x_1367 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1367, 0, x_1363); -lean_ctor_set(x_1367, 1, x_1366); -x_1368 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1369 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1369, 0, x_1367); -lean_ctor_set(x_1369, 1, x_1368); -x_1370 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1369, x_3, x_4, x_5, x_6, x_1358); +uint8_t x_1245; +lean_dec(x_1074); +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1062); +lean_dec(x_1055); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_1370; -} -else -{ -lean_object* x_1371; lean_object* x_1372; -lean_dec(x_1252); -lean_dec(x_9); -x_1371 = lean_ctor_get(x_1356, 1); -lean_inc(x_1371); -lean_dec(x_1356); -x_1372 = lean_ctor_get(x_1357, 0); -lean_inc(x_1372); -lean_dec(x_1357); -x_2 = x_1372; -x_7 = x_1371; -goto _start; -} -} -else -{ -uint8_t x_1374; -lean_dec(x_1252); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1374 = !lean_is_exclusive(x_1356); -if (x_1374 == 0) +x_1245 = !lean_is_exclusive(x_1196); +if (x_1245 == 0) { -return x_1356; +return x_1196; } else { -lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; -x_1375 = lean_ctor_get(x_1356, 0); -x_1376 = lean_ctor_get(x_1356, 1); -lean_inc(x_1376); -lean_inc(x_1375); -lean_dec(x_1356); -x_1377 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1377, 0, x_1375); -lean_ctor_set(x_1377, 1, x_1376); -return x_1377; +lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; +x_1246 = lean_ctor_get(x_1196, 0); +x_1247 = lean_ctor_get(x_1196, 1); +lean_inc(x_1247); +lean_inc(x_1246); +lean_dec(x_1196); +x_1248 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1248, 0, x_1246); +lean_ctor_set(x_1248, 1, x_1247); +return x_1248; } } -} -else +block_1193: { -lean_object* x_1378; -x_1378 = lean_box(0); -x_1264 = x_1378; -goto block_1351; -} -} -else -{ -lean_object* x_1379; -lean_dec(x_1262); -x_1379 = lean_box(0); -x_1264 = x_1379; -goto block_1351; -} -block_1351: -{ -lean_object* x_1265; -lean_dec(x_1264); -x_1265 = l_Lean_ConstantInfo_value_x3f(x_1257); -lean_dec(x_1257); -if (lean_obj_tag(x_1265) == 0) -{ -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_dec(x_1259); -lean_dec(x_1255); -lean_dec(x_1253); -lean_dec(x_1247); -lean_dec(x_1240); -lean_dec(x_1); -x_1266 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1266, 0, x_1252); -x_1267 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1268 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1268, 0, x_1267); -lean_ctor_set(x_1268, 1, x_1266); -x_1269 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_1270 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1270, 0, x_1268); -lean_ctor_set(x_1270, 1, x_1269); -x_1271 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1272 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1272, 0, x_1271); -x_1273 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1273, 0, x_1272); -x_1274 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1274, 0, x_1270); -lean_ctor_set(x_1274, 1, x_1273); -x_1275 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1276 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1276, 0, x_1274); -lean_ctor_set(x_1276, 1, x_1275); -x_1277 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1276, x_3, x_4, x_5, x_6, x_1263); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1277; -} -else -{ -lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; -lean_dec(x_1252); -lean_dec(x_9); -x_1278 = lean_ctor_get(x_1265, 0); -lean_inc(x_1278); -lean_dec(x_1265); -x_1279 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1278); +lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; +lean_inc(x_1070); +x_1179 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1068, x_1177, x_1055, x_1070); +x_1180 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1179, x_4, x_5, x_6, x_7, x_1178); +x_1181 = lean_ctor_get(x_1180, 1); +lean_inc(x_1181); +lean_dec(x_1180); +x_1182 = lean_box(0); +x_1183 = l_Lean_mkConst(x_1070, x_1182); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_1280 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1279, x_3, x_4, x_5, x_6, x_1263); -if (lean_obj_tag(x_1280) == 0) +lean_inc(x_1183); +x_1184 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1183, x_4, x_5, x_6, x_7, x_1181); +if (lean_obj_tag(x_1184) == 0) { -lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; -x_1281 = lean_ctor_get(x_1280, 0); +lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; +x_1185 = lean_ctor_get(x_1184, 0); +lean_inc(x_1185); +x_1186 = lean_ctor_get(x_1184, 1); +lean_inc(x_1186); +lean_dec(x_1184); +x_1187 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33___boxed), 11, 4); +lean_closure_set(x_1187, 0, x_1); +lean_closure_set(x_1187, 1, x_1075); +lean_closure_set(x_1187, 2, x_1062); +lean_closure_set(x_1187, 3, x_1183); +x_1188 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1185, x_1187, x_4, x_5, x_6, x_7, x_1186); +return x_1188; +} +else +{ +uint8_t x_1189; +lean_dec(x_1183); +lean_dec(x_1062); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1189 = !lean_is_exclusive(x_1184); +if (x_1189 == 0) +{ +return x_1184; +} +else +{ +lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; +x_1190 = lean_ctor_get(x_1184, 0); +x_1191 = lean_ctor_get(x_1184, 1); +lean_inc(x_1191); +lean_inc(x_1190); +lean_dec(x_1184); +x_1192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1192, 0, x_1190); +lean_ctor_set(x_1192, 1, x_1191); +return x_1192; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_1279; +lean_dec(x_1074); +lean_dec(x_1072); +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1067); +lean_dec(x_1066); +lean_dec(x_1062); +lean_dec(x_1055); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1279 = !lean_is_exclusive(x_1076); +if (x_1279 == 0) +{ +return x_1076; +} +else +{ +lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; +x_1280 = lean_ctor_get(x_1076, 0); +x_1281 = lean_ctor_get(x_1076, 1); lean_inc(x_1281); -x_1282 = lean_ctor_get(x_1280, 1); -lean_inc(x_1282); -lean_dec(x_1280); -x_1300 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_1301 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24___boxed), 9, 2); -lean_closure_set(x_1301, 0, x_1); -lean_closure_set(x_1301, 1, x_1300); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_1302 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1259, x_1301, x_3, x_4, x_5, x_6, x_1282); -if (lean_obj_tag(x_1302) == 0) +lean_inc(x_1280); +lean_dec(x_1076); +x_1282 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1282, 0, x_1280); +lean_ctor_set(x_1282, 1, x_1281); +return x_1282; +} +} +} +else { -lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; uint8_t 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; -x_1303 = lean_ctor_get(x_1302, 0); -lean_inc(x_1303); -x_1304 = lean_ctor_get(x_1302, 1); -lean_inc(x_1304); -lean_dec(x_1302); -x_1305 = lean_box(0); -lean_inc(x_1255); -x_1306 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_1306, 0, x_1255); -lean_ctor_set(x_1306, 1, x_1305); -lean_ctor_set(x_1306, 2, x_1303); -x_1307 = lean_box(0); -x_1308 = 0; -x_1309 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_1309, 0, x_1306); -lean_ctor_set(x_1309, 1, x_1281); -lean_ctor_set(x_1309, 2, x_1307); -lean_ctor_set_uint8(x_1309, sizeof(void*)*3, x_1308); -x_1310 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1310, 0, x_1309); -x_1311 = lean_st_ref_get(x_6, x_1304); -x_1312 = lean_ctor_get(x_1311, 0); -lean_inc(x_1312); -x_1313 = lean_ctor_get(x_1311, 1); -lean_inc(x_1313); -lean_dec(x_1311); -x_1314 = lean_ctor_get(x_1312, 0); -lean_inc(x_1314); -lean_dec(x_1312); -x_1315 = l_Lean_Environment_addAndCompile(x_1314, x_1305, x_1310); -lean_dec(x_1310); -if (lean_obj_tag(x_1315) == 0) -{ -lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; -lean_dec(x_1255); -lean_dec(x_1253); -lean_dec(x_1247); -lean_dec(x_1240); +uint8_t x_1283; +lean_dec(x_1070); +lean_dec(x_1068); +lean_dec(x_1067); +lean_dec(x_1066); +lean_dec(x_1062); +lean_dec(x_1055); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_1); -x_1316 = lean_ctor_get(x_1315, 0); -lean_inc(x_1316); -lean_dec(x_1315); -x_1317 = l_Lean_KernelException_toMessageData(x_1316, x_1305); -x_1318 = lean_ctor_get(x_5, 3); -lean_inc(x_1318); -x_1319 = l_Lean_MessageData_toString(x_1317, x_1313); -if (lean_obj_tag(x_1319) == 0) +x_1283 = !lean_is_exclusive(x_1071); +if (x_1283 == 0) { -lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; uint8_t x_1325; -lean_dec(x_1318); -x_1320 = lean_ctor_get(x_1319, 0); -lean_inc(x_1320); -x_1321 = lean_ctor_get(x_1319, 1); -lean_inc(x_1321); -lean_dec(x_1319); -x_1322 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1322, 0, x_1320); -x_1323 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1323, 0, x_1322); -x_1324 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1323, x_3, x_4, x_5, x_6, x_1321); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1325 = !lean_is_exclusive(x_1324); -if (x_1325 == 0) -{ -return x_1324; +return x_1071; } else { -lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; -x_1326 = lean_ctor_get(x_1324, 0); -x_1327 = lean_ctor_get(x_1324, 1); -lean_inc(x_1327); -lean_inc(x_1326); -lean_dec(x_1324); -x_1328 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1328, 0, x_1326); -lean_ctor_set(x_1328, 1, x_1327); -return x_1328; -} -} -else -{ -uint8_t x_1329; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1329 = !lean_is_exclusive(x_1319); -if (x_1329 == 0) -{ -lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; -x_1330 = lean_ctor_get(x_1319, 0); -x_1331 = lean_io_error_to_string(x_1330); -x_1332 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1332, 0, x_1331); -x_1333 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1333, 0, x_1332); -x_1334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1334, 0, x_1318); -lean_ctor_set(x_1334, 1, x_1333); -lean_ctor_set(x_1319, 0, x_1334); -return x_1319; -} -else -{ -lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; -x_1335 = lean_ctor_get(x_1319, 0); -x_1336 = lean_ctor_get(x_1319, 1); -lean_inc(x_1336); -lean_inc(x_1335); -lean_dec(x_1319); -x_1337 = lean_io_error_to_string(x_1335); -x_1338 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1338, 0, x_1337); -x_1339 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1339, 0, x_1338); -x_1340 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1340, 0, x_1318); -lean_ctor_set(x_1340, 1, x_1339); -x_1341 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1341, 0, x_1340); -lean_ctor_set(x_1341, 1, x_1336); -return x_1341; +lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; +x_1284 = lean_ctor_get(x_1071, 0); +x_1285 = lean_ctor_get(x_1071, 1); +lean_inc(x_1285); +lean_inc(x_1284); +lean_dec(x_1071); +x_1286 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1286, 0, x_1284); +lean_ctor_set(x_1286, 1, x_1285); +return x_1286; } } } else { -lean_object* x_1342; -x_1342 = lean_ctor_get(x_1315, 0); -lean_inc(x_1342); -lean_dec(x_1315); -x_1283 = x_1342; -x_1284 = x_1313; -goto block_1299; -} -} -else -{ -uint8_t x_1343; -lean_dec(x_1281); -lean_dec(x_1255); -lean_dec(x_1253); -lean_dec(x_1247); -lean_dec(x_1240); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1343 = !lean_is_exclusive(x_1302); -if (x_1343 == 0) -{ -return x_1302; -} -else -{ -lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; -x_1344 = lean_ctor_get(x_1302, 0); -x_1345 = lean_ctor_get(x_1302, 1); -lean_inc(x_1345); -lean_inc(x_1344); -lean_dec(x_1302); -x_1346 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1346, 0, x_1344); -lean_ctor_set(x_1346, 1, x_1345); -return x_1346; -} -} -block_1299: -{ -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_inc(x_1255); -x_1285 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1253, x_1283, x_1240, x_1255); -x_1286 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1285, x_3, x_4, x_5, x_6, x_1284); -x_1287 = lean_ctor_get(x_1286, 1); +lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; +lean_dec(x_1068); +lean_dec(x_1067); +lean_dec(x_1066); +lean_dec(x_1055); +lean_dec(x_10); +x_1287 = lean_ctor_get(x_1069, 0); lean_inc(x_1287); -lean_dec(x_1286); +lean_dec(x_1069); x_1288 = lean_box(0); -x_1289 = l_Lean_mkConst(x_1255, x_1288); +x_1289 = l_Lean_mkConst(x_1287, x_1288); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); lean_inc(x_1289); -x_1290 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1289, x_3, x_4, x_5, x_6, x_1287); +x_1290 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1289, x_4, x_5, x_6, x_7, x_1065); if (lean_obj_tag(x_1290) == 0) { lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; @@ -13526,23 +21888,22 @@ lean_inc(x_1291); x_1292 = lean_ctor_get(x_1290, 1); lean_inc(x_1292); lean_dec(x_1290); -x_1293 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23___boxed), 11, 4); +x_1293 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__35___boxed), 10, 3); lean_closure_set(x_1293, 0, x_1); -lean_closure_set(x_1293, 1, x_1260); -lean_closure_set(x_1293, 2, x_1247); -lean_closure_set(x_1293, 3, x_1289); -x_1294 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1291, x_1293, x_3, x_4, x_5, x_6, x_1292); +lean_closure_set(x_1293, 1, x_1062); +lean_closure_set(x_1293, 2, x_1289); +x_1294 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1291, x_1293, x_4, x_5, x_6, x_7, x_1292); return x_1294; } else { uint8_t x_1295; lean_dec(x_1289); -lean_dec(x_1247); +lean_dec(x_1062); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); x_1295 = !lean_is_exclusive(x_1290); if (x_1295 == 0) @@ -13567,2386 +21928,6533 @@ return x_1298; } else { -uint8_t x_1347; -lean_dec(x_1259); -lean_dec(x_1255); -lean_dec(x_1253); -lean_dec(x_1247); -lean_dec(x_1240); +lean_object* x_1299; +lean_dec(x_1044); +lean_dec(x_1); +x_1299 = lean_box(0); +x_1045 = x_1299; +goto block_1054; +} +block_1054: +{ +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_dec(x_1045); +x_1046 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1047 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1047, 0, x_1046); +x_1048 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1048, 0, x_1047); +x_1049 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_1050 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1050, 0, x_1049); +lean_ctor_set(x_1050, 1, x_1048); +x_1051 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1052 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1052, 0, x_1050); +lean_ctor_set(x_1052, 1, x_1051); +x_1053 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1052, x_4, x_5, x_6, x_7, x_1043); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1347 = !lean_is_exclusive(x_1280); -if (x_1347 == 0) +return x_1053; +} +} +case 6: { -return x_1280; -} -else -{ -lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; -x_1348 = lean_ctor_get(x_1280, 0); -x_1349 = lean_ctor_get(x_1280, 1); -lean_inc(x_1349); -lean_inc(x_1348); -lean_dec(x_1280); -x_1350 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1350, 0, x_1348); -lean_ctor_set(x_1350, 1, x_1349); -return x_1350; -} -} -} -} -} -else -{ -uint8_t x_1380; -lean_dec(x_1259); -lean_dec(x_1257); -lean_dec(x_1255); -lean_dec(x_1253); -lean_dec(x_1252); -lean_dec(x_1247); -lean_dec(x_1240); +lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; +x_1300 = lean_ctor_get(x_9, 1); +lean_inc(x_1300); lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1380 = !lean_is_exclusive(x_1261); -if (x_1380 == 0) +x_1301 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__36), 8, 1); +lean_closure_set(x_1301, 0, x_1); +x_1302 = l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferLambdaType___spec__2___rarg(x_10, x_1301, x_4, x_5, x_6, x_7, x_1300); +return x_1302; +} +case 7: { -return x_1261; -} -else -{ -lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; -x_1381 = lean_ctor_get(x_1261, 0); -x_1382 = lean_ctor_get(x_1261, 1); -lean_inc(x_1382); -lean_inc(x_1381); -lean_dec(x_1261); -x_1383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1383, 0, x_1381); -lean_ctor_set(x_1383, 1, x_1382); -return x_1383; -} -} -} -else -{ -uint8_t x_1384; -lean_dec(x_1255); -lean_dec(x_1253); -lean_dec(x_1252); -lean_dec(x_1247); -lean_dec(x_1240); +lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; +x_1303 = lean_ctor_get(x_9, 1); +lean_inc(x_1303); lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1384 = !lean_is_exclusive(x_1256); -if (x_1384 == 0) +x_1304 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_1304) == 4) { -return x_1256; -} -else +lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; +x_1315 = lean_ctor_get(x_1304, 0); +lean_inc(x_1315); +lean_dec(x_1304); +x_1316 = lean_unsigned_to_nat(0u); +x_1317 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_1316); +x_1318 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_1317); +x_1319 = lean_mk_array(x_1317, x_1318); +x_1320 = lean_unsigned_to_nat(1u); +x_1321 = lean_nat_sub(x_1317, x_1320); +lean_dec(x_1317); +lean_inc(x_10); +x_1322 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_1319, x_1321); +x_1323 = lean_st_ref_get(x_7, x_1303); +x_1324 = lean_ctor_get(x_1323, 0); +lean_inc(x_1324); +x_1325 = lean_ctor_get(x_1323, 1); +lean_inc(x_1325); +lean_dec(x_1323); +x_1326 = lean_ctor_get(x_1324, 0); +lean_inc(x_1326); +lean_dec(x_1324); +x_1327 = lean_ctor_get(x_1, 0); +lean_inc(x_1327); +x_1328 = lean_ctor_get(x_1, 2); +lean_inc(x_1328); +x_1329 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1328, x_1326, x_1315); +if (lean_obj_tag(x_1329) == 0) { -lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; -x_1385 = lean_ctor_get(x_1256, 0); -x_1386 = lean_ctor_get(x_1256, 1); -lean_inc(x_1386); -lean_inc(x_1385); -lean_dec(x_1256); -x_1387 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1387, 0, x_1385); -lean_ctor_set(x_1387, 1, x_1386); -return x_1387; -} -} -} -else +lean_object* x_1330; lean_object* x_1331; +lean_inc(x_1327); +x_1330 = l_Lean_Name_append___main(x_1315, x_1327); +lean_inc(x_1315); +x_1331 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1315, x_4, x_5, x_6, x_7, x_1325); +if (lean_obj_tag(x_1331) == 0) { -lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; -lean_dec(x_1253); -lean_dec(x_1252); -lean_dec(x_1240); -lean_dec(x_9); -x_1388 = lean_ctor_get(x_1254, 0); -lean_inc(x_1388); -lean_dec(x_1254); -x_1389 = lean_box(0); -x_1390 = l_Lean_mkConst(x_1388, x_1389); +lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; +x_1332 = lean_ctor_get(x_1331, 0); +lean_inc(x_1332); +x_1333 = lean_ctor_get(x_1331, 1); +lean_inc(x_1333); +lean_dec(x_1331); +x_1334 = l_Lean_ConstantInfo_type(x_1332); +x_1335 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); +lean_inc(x_1334); +x_1336 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1334, x_1335, x_4, x_5, x_6, x_7, x_1333); +if (lean_obj_tag(x_1336) == 0) +{ +lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1510; uint8_t x_1511; +x_1337 = lean_ctor_get(x_1336, 0); +lean_inc(x_1337); +x_1338 = lean_ctor_get(x_1336, 1); +lean_inc(x_1338); +lean_dec(x_1336); +x_1510 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_1511 = l_Lean_Expr_isConstOf(x_1337, x_1510); +if (x_1511 == 0) +{ +lean_object* x_1512; uint8_t x_1513; +x_1512 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_1513 = l_Lean_Expr_isConstOf(x_1337, x_1512); +lean_dec(x_1337); +if (x_1513 == 0) +{ +lean_object* x_1514; +lean_dec(x_1334); +lean_dec(x_1332); +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1326); +lean_dec(x_1322); +lean_dec(x_1315); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_1514 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_1338); +if (lean_obj_tag(x_1514) == 0) +{ +lean_object* x_1515; +x_1515 = lean_ctor_get(x_1514, 0); +lean_inc(x_1515); +if (lean_obj_tag(x_1515) == 0) +{ +lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; +lean_dec(x_1); +x_1516 = lean_ctor_get(x_1514, 1); +lean_inc(x_1516); +lean_dec(x_1514); +x_1517 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1517, 0, x_1327); +x_1518 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_1519 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1519, 0, x_1518); +lean_ctor_set(x_1519, 1, x_1517); +x_1520 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_1521 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1521, 0, x_1519); +lean_ctor_set(x_1521, 1, x_1520); +x_1522 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1523 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1523, 0, x_1522); +x_1524 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1524, 0, x_1523); +x_1525 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1525, 0, x_1521); +lean_ctor_set(x_1525, 1, x_1524); +x_1526 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1527 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1527, 0, x_1525); +lean_ctor_set(x_1527, 1, x_1526); +x_1528 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1527, x_4, x_5, x_6, x_7, x_1516); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1528; +} +else +{ +lean_object* x_1529; lean_object* x_1530; uint8_t x_1531; +lean_dec(x_1327); +lean_dec(x_10); +x_1529 = lean_ctor_get(x_1514, 1); +lean_inc(x_1529); +lean_dec(x_1514); +x_1530 = lean_ctor_get(x_1515, 0); +lean_inc(x_1530); +lean_dec(x_1515); +x_1531 = 0; +x_2 = x_1530; +x_3 = x_1531; +x_8 = x_1529; +goto _start; +} +} +else +{ +uint8_t x_1533; +lean_dec(x_1327); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1533 = !lean_is_exclusive(x_1514); +if (x_1533 == 0) +{ +return x_1514; +} +else +{ +lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; +x_1534 = lean_ctor_get(x_1514, 0); +x_1535 = lean_ctor_get(x_1514, 1); +lean_inc(x_1535); +lean_inc(x_1534); +lean_dec(x_1514); +x_1536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1536, 0, x_1534); +lean_ctor_set(x_1536, 1, x_1535); +return x_1536; +} +} +} +else +{ +lean_object* x_1537; +x_1537 = lean_box(0); +x_1339 = x_1537; +goto block_1509; +} +} +else +{ +lean_object* x_1538; +lean_dec(x_1337); +x_1538 = lean_box(0); +x_1339 = x_1538; +goto block_1509; +} +block_1509: +{ +lean_object* x_1340; +lean_dec(x_1339); +x_1340 = l_Lean_ConstantInfo_value_x3f(x_1332); +lean_dec(x_1332); +if (lean_obj_tag(x_1340) == 0) +{ +lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; +lean_dec(x_1334); +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1326); +lean_dec(x_1322); +lean_dec(x_1315); +lean_dec(x_1); +x_1341 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1341, 0, x_1327); +x_1342 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_1343 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1343, 0, x_1342); +lean_ctor_set(x_1343, 1, x_1341); +x_1344 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_1345 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1345, 0, x_1343); +lean_ctor_set(x_1345, 1, x_1344); +x_1346 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1347 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1347, 0, x_1346); +x_1348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1348, 0, x_1347); +x_1349 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1349, 0, x_1345); +lean_ctor_set(x_1349, 1, x_1348); +x_1350 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1351 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1351, 0, x_1349); +lean_ctor_set(x_1351, 1, x_1350); +x_1352 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1351, x_4, x_5, x_6, x_7, x_1338); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1352; +} +else +{ +lean_object* x_1353; lean_object* x_1354; +lean_dec(x_1327); +lean_dec(x_10); +x_1353 = lean_ctor_get(x_1340, 0); +lean_inc(x_1353); +lean_dec(x_1340); +x_1354 = l_Lean_Environment_getModuleIdxFor_x3f(x_1326, x_1315); +lean_dec(x_1326); +if (lean_obj_tag(x_1354) == 0) +{ +lean_object* x_1355; lean_object* x_1356; lean_object* x_1372; uint8_t x_1373; lean_object* x_1374; +x_1372 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1353); +x_1373 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_1374 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1372, x_1373, x_4, x_5, x_6, x_7, x_1338); +if (lean_obj_tag(x_1374) == 0) +{ +lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; +x_1375 = lean_ctor_get(x_1374, 0); +lean_inc(x_1375); +x_1376 = lean_ctor_get(x_1374, 1); +lean_inc(x_1376); +lean_dec(x_1374); +x_1377 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_1378 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__38___boxed), 9, 2); +lean_closure_set(x_1378, 0, x_1); +lean_closure_set(x_1378, 1, x_1377); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_1379 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1334, x_1378, x_4, x_5, x_6, x_7, x_1376); +if (lean_obj_tag(x_1379) == 0) +{ +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; +x_1380 = lean_ctor_get(x_1379, 0); +lean_inc(x_1380); +x_1381 = lean_ctor_get(x_1379, 1); +lean_inc(x_1381); +lean_dec(x_1379); +x_1382 = lean_box(0); +lean_inc(x_1330); +x_1383 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_1383, 0, x_1330); +lean_ctor_set(x_1383, 1, x_1382); +lean_ctor_set(x_1383, 2, x_1380); +x_1384 = lean_box(0); +x_1385 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_1385, 0, x_1383); +lean_ctor_set(x_1385, 1, x_1375); +lean_ctor_set(x_1385, 2, x_1384); +lean_ctor_set_uint8(x_1385, sizeof(void*)*3, x_1373); +x_1386 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1386, 0, x_1385); +x_1387 = lean_st_ref_get(x_7, x_1381); +x_1388 = lean_ctor_get(x_1387, 0); +lean_inc(x_1388); +x_1389 = lean_ctor_get(x_1387, 1); +lean_inc(x_1389); +lean_dec(x_1387); +x_1390 = lean_ctor_get(x_1388, 0); lean_inc(x_1390); -x_1391 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1390, x_3, x_4, x_5, x_6, x_1250); +lean_dec(x_1388); +x_1391 = l_Lean_Environment_addAndCompile(x_1390, x_1382, x_1386); +lean_dec(x_1386); if (lean_obj_tag(x_1391) == 0) { lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1322); +lean_dec(x_1315); +lean_dec(x_1); x_1392 = lean_ctor_get(x_1391, 0); lean_inc(x_1392); -x_1393 = lean_ctor_get(x_1391, 1); -lean_inc(x_1393); lean_dec(x_1391); -x_1394 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25___boxed), 10, 3); -lean_closure_set(x_1394, 0, x_1); -lean_closure_set(x_1394, 1, x_1247); -lean_closure_set(x_1394, 2, x_1390); -x_1395 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1392, x_1394, x_3, x_4, x_5, x_6, x_1393); +x_1393 = l_Lean_KernelException_toMessageData(x_1392, x_1382); +x_1394 = lean_ctor_get(x_6, 3); +lean_inc(x_1394); +x_1395 = l_Lean_MessageData_toString(x_1393, x_1389); +if (lean_obj_tag(x_1395) == 0) +{ +lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; uint8_t x_1401; +lean_dec(x_1394); +x_1396 = lean_ctor_get(x_1395, 0); +lean_inc(x_1396); +x_1397 = lean_ctor_get(x_1395, 1); +lean_inc(x_1397); +lean_dec(x_1395); +x_1398 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1398, 0, x_1396); +x_1399 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1399, 0, x_1398); +x_1400 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1399, x_4, x_5, x_6, x_7, x_1397); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1401 = !lean_is_exclusive(x_1400); +if (x_1401 == 0) +{ +return x_1400; +} +else +{ +lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; +x_1402 = lean_ctor_get(x_1400, 0); +x_1403 = lean_ctor_get(x_1400, 1); +lean_inc(x_1403); +lean_inc(x_1402); +lean_dec(x_1400); +x_1404 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1404, 0, x_1402); +lean_ctor_set(x_1404, 1, x_1403); +return x_1404; +} +} +else +{ +uint8_t x_1405; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1405 = !lean_is_exclusive(x_1395); +if (x_1405 == 0) +{ +lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; +x_1406 = lean_ctor_get(x_1395, 0); +x_1407 = lean_io_error_to_string(x_1406); +x_1408 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1408, 0, x_1407); +x_1409 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1409, 0, x_1408); +x_1410 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1410, 0, x_1394); +lean_ctor_set(x_1410, 1, x_1409); +lean_ctor_set(x_1395, 0, x_1410); return x_1395; } else { -uint8_t x_1396; -lean_dec(x_1390); -lean_dec(x_1247); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1396 = !lean_is_exclusive(x_1391); -if (x_1396 == 0) -{ -return x_1391; +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; +x_1411 = lean_ctor_get(x_1395, 0); +x_1412 = lean_ctor_get(x_1395, 1); +lean_inc(x_1412); +lean_inc(x_1411); +lean_dec(x_1395); +x_1413 = lean_io_error_to_string(x_1411); +x_1414 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1414, 0, x_1413); +x_1415 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1415, 0, x_1414); +x_1416 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1416, 0, x_1394); +lean_ctor_set(x_1416, 1, x_1415); +x_1417 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1417, 0, x_1416); +lean_ctor_set(x_1417, 1, x_1412); +return x_1417; +} +} } else { -lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; -x_1397 = lean_ctor_get(x_1391, 0); -x_1398 = lean_ctor_get(x_1391, 1); -lean_inc(x_1398); -lean_inc(x_1397); +lean_object* x_1418; +x_1418 = lean_ctor_get(x_1391, 0); +lean_inc(x_1418); lean_dec(x_1391); -x_1399 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1399, 0, x_1397); -lean_ctor_set(x_1399, 1, x_1398); -return x_1399; +x_1355 = x_1418; +x_1356 = x_1389; +goto block_1371; +} +} +else +{ +uint8_t x_1419; +lean_dec(x_1375); +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1322); +lean_dec(x_1315); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1419 = !lean_is_exclusive(x_1379); +if (x_1419 == 0) +{ +return x_1379; +} +else +{ +lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; +x_1420 = lean_ctor_get(x_1379, 0); +x_1421 = lean_ctor_get(x_1379, 1); +lean_inc(x_1421); +lean_inc(x_1420); +lean_dec(x_1379); +x_1422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1422, 0, x_1420); +lean_ctor_set(x_1422, 1, x_1421); +return x_1422; +} +} +} +else +{ +uint8_t x_1423; +lean_dec(x_1334); +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1322); +lean_dec(x_1315); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1423 = !lean_is_exclusive(x_1374); +if (x_1423 == 0) +{ +return x_1374; +} +else +{ +lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; +x_1424 = lean_ctor_get(x_1374, 0); +x_1425 = lean_ctor_get(x_1374, 1); +lean_inc(x_1425); +lean_inc(x_1424); +lean_dec(x_1374); +x_1426 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1426, 0, x_1424); +lean_ctor_set(x_1426, 1, x_1425); +return x_1426; +} +} +block_1371: +{ +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_inc(x_1330); +x_1357 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1328, x_1355, x_1315, x_1330); +x_1358 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1357, x_4, x_5, x_6, x_7, x_1356); +x_1359 = lean_ctor_get(x_1358, 1); +lean_inc(x_1359); +lean_dec(x_1358); +x_1360 = lean_box(0); +x_1361 = l_Lean_mkConst(x_1330, x_1360); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1361); +x_1362 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1361, x_4, x_5, x_6, x_7, x_1359); +if (lean_obj_tag(x_1362) == 0) +{ +lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; +x_1363 = lean_ctor_get(x_1362, 0); +lean_inc(x_1363); +x_1364 = lean_ctor_get(x_1362, 1); +lean_inc(x_1364); +lean_dec(x_1362); +x_1365 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__37___boxed), 11, 4); +lean_closure_set(x_1365, 0, x_1); +lean_closure_set(x_1365, 1, x_1335); +lean_closure_set(x_1365, 2, x_1322); +lean_closure_set(x_1365, 3, x_1361); +x_1366 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1363, x_1365, x_4, x_5, x_6, x_7, x_1364); +return x_1366; +} +else +{ +uint8_t x_1367; +lean_dec(x_1361); +lean_dec(x_1322); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1367 = !lean_is_exclusive(x_1362); +if (x_1367 == 0) +{ +return x_1362; +} +else +{ +lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; +x_1368 = lean_ctor_get(x_1362, 0); +x_1369 = lean_ctor_get(x_1362, 1); +lean_inc(x_1369); +lean_inc(x_1368); +lean_dec(x_1362); +x_1370 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1370, 0, x_1368); +lean_ctor_set(x_1370, 1, x_1369); +return x_1370; } } } } else { -lean_object* x_1400; -lean_dec(x_1229); -lean_dec(x_1); -x_1400 = lean_box(0); -x_1230 = x_1400; -goto block_1239; -} -block_1239: +lean_dec(x_1354); +if (x_3 == 0) { -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_dec(x_1230); -x_1231 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1232 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1232, 0, x_1231); -x_1233 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1233, 0, x_1232); -x_1234 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_1235 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1235, 0, x_1234); -lean_ctor_set(x_1235, 1, x_1233); -x_1236 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1237 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1237, 0, x_1235); -lean_ctor_set(x_1237, 1, x_1236); -x_1238 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1237, x_3, x_4, x_5, x_6, x_1228); +lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; uint8_t x_1433; +lean_dec(x_1353); +lean_dec(x_1334); +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1322); +lean_dec(x_1); +x_1427 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1427, 0, x_1315); +x_1428 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_1429 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1429, 0, x_1428); +lean_ctor_set(x_1429, 1, x_1427); +x_1430 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_1431 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1431, 0, x_1429); +lean_ctor_set(x_1431, 1, x_1430); +x_1432 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1431, x_4, x_5, x_6, x_7, x_1338); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_1238; +x_1433 = !lean_is_exclusive(x_1432); +if (x_1433 == 0) +{ +return x_1432; } -} -case 10: +else { -lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; -x_1401 = lean_ctor_get(x_8, 1); -lean_inc(x_1401); -lean_dec(x_8); -x_1402 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_1402) == 4) -{ -lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; -x_1413 = lean_ctor_get(x_1402, 0); -lean_inc(x_1413); -lean_dec(x_1402); -x_1414 = lean_unsigned_to_nat(0u); -x_1415 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_1414); -x_1416 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_1415); -x_1417 = lean_mk_array(x_1415, x_1416); -x_1418 = lean_unsigned_to_nat(1u); -x_1419 = lean_nat_sub(x_1415, x_1418); -lean_dec(x_1415); -lean_inc(x_9); -x_1420 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_1417, x_1419); -x_1421 = lean_st_ref_get(x_6, x_1401); -x_1422 = lean_ctor_get(x_1421, 0); -lean_inc(x_1422); -x_1423 = lean_ctor_get(x_1421, 1); -lean_inc(x_1423); -lean_dec(x_1421); -x_1424 = lean_ctor_get(x_1422, 0); -lean_inc(x_1424); -lean_dec(x_1422); -x_1425 = lean_ctor_get(x_1, 0); -lean_inc(x_1425); -x_1426 = lean_ctor_get(x_1, 2); -lean_inc(x_1426); -x_1427 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1426, x_1424, x_1413); -lean_dec(x_1424); -if (lean_obj_tag(x_1427) == 0) -{ -lean_object* x_1428; lean_object* x_1429; -lean_inc(x_1425); -x_1428 = l_Lean_Name_append___main(x_1413, x_1425); -lean_inc(x_1413); -x_1429 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1413, x_3, x_4, x_5, x_6, x_1423); -if (lean_obj_tag(x_1429) == 0) -{ -lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; -x_1430 = lean_ctor_get(x_1429, 0); -lean_inc(x_1430); -x_1431 = lean_ctor_get(x_1429, 1); -lean_inc(x_1431); -lean_dec(x_1429); -x_1432 = l_Lean_ConstantInfo_type(x_1430); -x_1433 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1432); -x_1434 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1432, x_1433, x_3, x_4, x_5, x_6, x_1431); -if (lean_obj_tag(x_1434) == 0) -{ -lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1525; uint8_t x_1526; -x_1435 = lean_ctor_get(x_1434, 0); +lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; +x_1434 = lean_ctor_get(x_1432, 0); +x_1435 = lean_ctor_get(x_1432, 1); lean_inc(x_1435); -x_1436 = lean_ctor_get(x_1434, 1); -lean_inc(x_1436); -lean_dec(x_1434); -x_1525 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_1526 = l_Lean_Expr_isConstOf(x_1435, x_1525); -if (x_1526 == 0) -{ -lean_object* x_1527; uint8_t x_1528; -x_1527 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_1528 = l_Lean_Expr_isConstOf(x_1435, x_1527); -lean_dec(x_1435); -if (x_1528 == 0) -{ -lean_object* x_1529; +lean_inc(x_1434); lean_dec(x_1432); -lean_dec(x_1430); -lean_dec(x_1428); -lean_dec(x_1426); -lean_dec(x_1420); -lean_dec(x_1413); +x_1436 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1436, 0, x_1434); +lean_ctor_set(x_1436, 1, x_1435); +return x_1436; +} +} +else +{ +lean_object* x_1437; lean_object* x_1438; lean_object* x_1454; uint8_t x_1455; lean_object* x_1456; +x_1454 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1353); +x_1455 = 0; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_1529 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_1436); -if (lean_obj_tag(x_1529) == 0) +lean_inc(x_1); +x_1456 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1454, x_1455, x_4, x_5, x_6, x_7, x_1338); +if (lean_obj_tag(x_1456) == 0) { -lean_object* x_1530; -x_1530 = lean_ctor_get(x_1529, 0); -lean_inc(x_1530); -if (lean_obj_tag(x_1530) == 0) +lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; +x_1457 = lean_ctor_get(x_1456, 0); +lean_inc(x_1457); +x_1458 = lean_ctor_get(x_1456, 1); +lean_inc(x_1458); +lean_dec(x_1456); +x_1459 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_1460 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__42___boxed), 9, 2); +lean_closure_set(x_1460, 0, x_1); +lean_closure_set(x_1460, 1, x_1459); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_1461 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1334, x_1460, x_4, x_5, x_6, x_7, x_1458); +if (lean_obj_tag(x_1461) == 0) { -lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; +lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; +x_1462 = lean_ctor_get(x_1461, 0); +lean_inc(x_1462); +x_1463 = lean_ctor_get(x_1461, 1); +lean_inc(x_1463); +lean_dec(x_1461); +x_1464 = lean_box(0); +lean_inc(x_1330); +x_1465 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_1465, 0, x_1330); +lean_ctor_set(x_1465, 1, x_1464); +lean_ctor_set(x_1465, 2, x_1462); +x_1466 = lean_box(0); +x_1467 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_1467, 0, x_1465); +lean_ctor_set(x_1467, 1, x_1457); +lean_ctor_set(x_1467, 2, x_1466); +lean_ctor_set_uint8(x_1467, sizeof(void*)*3, x_1455); +x_1468 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1468, 0, x_1467); +x_1469 = lean_st_ref_get(x_7, x_1463); +x_1470 = lean_ctor_get(x_1469, 0); +lean_inc(x_1470); +x_1471 = lean_ctor_get(x_1469, 1); +lean_inc(x_1471); +lean_dec(x_1469); +x_1472 = lean_ctor_get(x_1470, 0); +lean_inc(x_1472); +lean_dec(x_1470); +x_1473 = l_Lean_Environment_addAndCompile(x_1472, x_1464, x_1468); +lean_dec(x_1468); +if (lean_obj_tag(x_1473) == 0) +{ +lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1322); +lean_dec(x_1315); lean_dec(x_1); -x_1531 = lean_ctor_get(x_1529, 1); -lean_inc(x_1531); -lean_dec(x_1529); -x_1532 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1532, 0, x_1425); -x_1533 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1534 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1534, 0, x_1533); -lean_ctor_set(x_1534, 1, x_1532); -x_1535 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_1536 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1536, 0, x_1534); -lean_ctor_set(x_1536, 1, x_1535); -x_1537 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1538 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1538, 0, x_1537); -x_1539 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1539, 0, x_1538); -x_1540 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1540, 0, x_1536); -lean_ctor_set(x_1540, 1, x_1539); -x_1541 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1542 = lean_alloc_ctor(10, 2, 0); +x_1474 = lean_ctor_get(x_1473, 0); +lean_inc(x_1474); +lean_dec(x_1473); +x_1475 = l_Lean_KernelException_toMessageData(x_1474, x_1464); +x_1476 = lean_ctor_get(x_6, 3); +lean_inc(x_1476); +x_1477 = l_Lean_MessageData_toString(x_1475, x_1471); +if (lean_obj_tag(x_1477) == 0) +{ +lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; uint8_t x_1483; +lean_dec(x_1476); +x_1478 = lean_ctor_get(x_1477, 0); +lean_inc(x_1478); +x_1479 = lean_ctor_get(x_1477, 1); +lean_inc(x_1479); +lean_dec(x_1477); +x_1480 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1480, 0, x_1478); +x_1481 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1481, 0, x_1480); +x_1482 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1481, x_4, x_5, x_6, x_7, x_1479); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1483 = !lean_is_exclusive(x_1482); +if (x_1483 == 0) +{ +return x_1482; +} +else +{ +lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; +x_1484 = lean_ctor_get(x_1482, 0); +x_1485 = lean_ctor_get(x_1482, 1); +lean_inc(x_1485); +lean_inc(x_1484); +lean_dec(x_1482); +x_1486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1486, 0, x_1484); +lean_ctor_set(x_1486, 1, x_1485); +return x_1486; +} +} +else +{ +uint8_t x_1487; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1487 = !lean_is_exclusive(x_1477); +if (x_1487 == 0) +{ +lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; +x_1488 = lean_ctor_get(x_1477, 0); +x_1489 = lean_io_error_to_string(x_1488); +x_1490 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1490, 0, x_1489); +x_1491 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1491, 0, x_1490); +x_1492 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1492, 0, x_1476); +lean_ctor_set(x_1492, 1, x_1491); +lean_ctor_set(x_1477, 0, x_1492); +return x_1477; +} +else +{ +lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; +x_1493 = lean_ctor_get(x_1477, 0); +x_1494 = lean_ctor_get(x_1477, 1); +lean_inc(x_1494); +lean_inc(x_1493); +lean_dec(x_1477); +x_1495 = lean_io_error_to_string(x_1493); +x_1496 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1496, 0, x_1495); +x_1497 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1497, 0, x_1496); +x_1498 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1498, 0, x_1476); +lean_ctor_set(x_1498, 1, x_1497); +x_1499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1499, 0, x_1498); +lean_ctor_set(x_1499, 1, x_1494); +return x_1499; +} +} +} +else +{ +lean_object* x_1500; +x_1500 = lean_ctor_get(x_1473, 0); +lean_inc(x_1500); +lean_dec(x_1473); +x_1437 = x_1500; +x_1438 = x_1471; +goto block_1453; +} +} +else +{ +uint8_t x_1501; +lean_dec(x_1457); +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1322); +lean_dec(x_1315); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1501 = !lean_is_exclusive(x_1461); +if (x_1501 == 0) +{ +return x_1461; +} +else +{ +lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; +x_1502 = lean_ctor_get(x_1461, 0); +x_1503 = lean_ctor_get(x_1461, 1); +lean_inc(x_1503); +lean_inc(x_1502); +lean_dec(x_1461); +x_1504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1504, 0, x_1502); +lean_ctor_set(x_1504, 1, x_1503); +return x_1504; +} +} +} +else +{ +uint8_t x_1505; +lean_dec(x_1334); +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1322); +lean_dec(x_1315); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1505 = !lean_is_exclusive(x_1456); +if (x_1505 == 0) +{ +return x_1456; +} +else +{ +lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; +x_1506 = lean_ctor_get(x_1456, 0); +x_1507 = lean_ctor_get(x_1456, 1); +lean_inc(x_1507); +lean_inc(x_1506); +lean_dec(x_1456); +x_1508 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1508, 0, x_1506); +lean_ctor_set(x_1508, 1, x_1507); +return x_1508; +} +} +block_1453: +{ +lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; +lean_inc(x_1330); +x_1439 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1328, x_1437, x_1315, x_1330); +x_1440 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1439, x_4, x_5, x_6, x_7, x_1438); +x_1441 = lean_ctor_get(x_1440, 1); +lean_inc(x_1441); +lean_dec(x_1440); +x_1442 = lean_box(0); +x_1443 = l_Lean_mkConst(x_1330, x_1442); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1443); +x_1444 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1443, x_4, x_5, x_6, x_7, x_1441); +if (lean_obj_tag(x_1444) == 0) +{ +lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; +x_1445 = lean_ctor_get(x_1444, 0); +lean_inc(x_1445); +x_1446 = lean_ctor_get(x_1444, 1); +lean_inc(x_1446); +lean_dec(x_1444); +x_1447 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__41___boxed), 11, 4); +lean_closure_set(x_1447, 0, x_1); +lean_closure_set(x_1447, 1, x_1335); +lean_closure_set(x_1447, 2, x_1322); +lean_closure_set(x_1447, 3, x_1443); +x_1448 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1445, x_1447, x_4, x_5, x_6, x_7, x_1446); +return x_1448; +} +else +{ +uint8_t x_1449; +lean_dec(x_1443); +lean_dec(x_1322); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1449 = !lean_is_exclusive(x_1444); +if (x_1449 == 0) +{ +return x_1444; +} +else +{ +lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; +x_1450 = lean_ctor_get(x_1444, 0); +x_1451 = lean_ctor_get(x_1444, 1); +lean_inc(x_1451); +lean_inc(x_1450); +lean_dec(x_1444); +x_1452 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1452, 0, x_1450); +lean_ctor_set(x_1452, 1, x_1451); +return x_1452; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_1539; +lean_dec(x_1334); +lean_dec(x_1332); +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1327); +lean_dec(x_1326); +lean_dec(x_1322); +lean_dec(x_1315); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1539 = !lean_is_exclusive(x_1336); +if (x_1539 == 0) +{ +return x_1336; +} +else +{ +lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; +x_1540 = lean_ctor_get(x_1336, 0); +x_1541 = lean_ctor_get(x_1336, 1); +lean_inc(x_1541); +lean_inc(x_1540); +lean_dec(x_1336); +x_1542 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1542, 0, x_1540); lean_ctor_set(x_1542, 1, x_1541); -x_1543 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1542, x_3, x_4, x_5, x_6, x_1531); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1543; +return x_1542; } -else -{ -lean_object* x_1544; lean_object* x_1545; -lean_dec(x_1425); -lean_dec(x_9); -x_1544 = lean_ctor_get(x_1529, 1); -lean_inc(x_1544); -lean_dec(x_1529); -x_1545 = lean_ctor_get(x_1530, 0); -lean_inc(x_1545); -lean_dec(x_1530); -x_2 = x_1545; -x_7 = x_1544; -goto _start; } } else { -uint8_t x_1547; -lean_dec(x_1425); -lean_dec(x_9); +uint8_t x_1543; +lean_dec(x_1330); +lean_dec(x_1328); +lean_dec(x_1327); +lean_dec(x_1326); +lean_dec(x_1322); +lean_dec(x_1315); +lean_dec(x_10); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1547 = !lean_is_exclusive(x_1529); -if (x_1547 == 0) +x_1543 = !lean_is_exclusive(x_1331); +if (x_1543 == 0) { -return x_1529; +return x_1331; } else { -lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; -x_1548 = lean_ctor_get(x_1529, 0); -x_1549 = lean_ctor_get(x_1529, 1); +lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; +x_1544 = lean_ctor_get(x_1331, 0); +x_1545 = lean_ctor_get(x_1331, 1); +lean_inc(x_1545); +lean_inc(x_1544); +lean_dec(x_1331); +x_1546 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1546, 0, x_1544); +lean_ctor_set(x_1546, 1, x_1545); +return x_1546; +} +} +} +else +{ +lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; +lean_dec(x_1328); +lean_dec(x_1327); +lean_dec(x_1326); +lean_dec(x_1315); +lean_dec(x_10); +x_1547 = lean_ctor_get(x_1329, 0); +lean_inc(x_1547); +lean_dec(x_1329); +x_1548 = lean_box(0); +x_1549 = l_Lean_mkConst(x_1547, x_1548); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); lean_inc(x_1549); -lean_inc(x_1548); -lean_dec(x_1529); -x_1550 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1550, 0, x_1548); -lean_ctor_set(x_1550, 1, x_1549); +x_1550 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1549, x_4, x_5, x_6, x_7, x_1325); +if (lean_obj_tag(x_1550) == 0) +{ +lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; +x_1551 = lean_ctor_get(x_1550, 0); +lean_inc(x_1551); +x_1552 = lean_ctor_get(x_1550, 1); +lean_inc(x_1552); +lean_dec(x_1550); +x_1553 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__43___boxed), 10, 3); +lean_closure_set(x_1553, 0, x_1); +lean_closure_set(x_1553, 1, x_1322); +lean_closure_set(x_1553, 2, x_1549); +x_1554 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1551, x_1553, x_4, x_5, x_6, x_7, x_1552); +return x_1554; +} +else +{ +uint8_t x_1555; +lean_dec(x_1549); +lean_dec(x_1322); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1555 = !lean_is_exclusive(x_1550); +if (x_1555 == 0) +{ return x_1550; } +else +{ +lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; +x_1556 = lean_ctor_get(x_1550, 0); +x_1557 = lean_ctor_get(x_1550, 1); +lean_inc(x_1557); +lean_inc(x_1556); +lean_dec(x_1550); +x_1558 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1558, 0, x_1556); +lean_ctor_set(x_1558, 1, x_1557); +return x_1558; +} +} } } else { -lean_object* x_1551; -x_1551 = lean_box(0); -x_1437 = x_1551; -goto block_1524; -} -} -else -{ -lean_object* x_1552; -lean_dec(x_1435); -x_1552 = lean_box(0); -x_1437 = x_1552; -goto block_1524; -} -block_1524: -{ -lean_object* x_1438; -lean_dec(x_1437); -x_1438 = l_Lean_ConstantInfo_value_x3f(x_1430); -lean_dec(x_1430); -if (lean_obj_tag(x_1438) == 0) -{ -lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; -lean_dec(x_1432); -lean_dec(x_1428); -lean_dec(x_1426); -lean_dec(x_1420); -lean_dec(x_1413); +lean_object* x_1559; +lean_dec(x_1304); lean_dec(x_1); -x_1439 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1439, 0, x_1425); -x_1440 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1441 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1441, 0, x_1440); -lean_ctor_set(x_1441, 1, x_1439); -x_1442 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_1443 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1443, 0, x_1441); -lean_ctor_set(x_1443, 1, x_1442); -x_1444 = lean_expr_dbg_to_string(x_9); +x_1559 = lean_box(0); +x_1305 = x_1559; +goto block_1314; +} +block_1314: +{ +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_dec(x_1305); +x_1306 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1307 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1307, 0, x_1306); +x_1308 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1308, 0, x_1307); +x_1309 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_1310 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1310, 0, x_1309); +lean_ctor_set(x_1310, 1, x_1308); +x_1311 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1312 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1312, 0, x_1310); +lean_ctor_set(x_1312, 1, x_1311); +x_1313 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1312, x_4, x_5, x_6, x_7, x_1303); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1313; +} +} +case 8: +{ +lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; +x_1560 = lean_ctor_get(x_9, 1); +lean_inc(x_1560); lean_dec(x_9); -x_1445 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1445, 0, x_1444); -x_1446 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1446, 0, x_1445); -x_1447 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1447, 0, x_1443); -lean_ctor_set(x_1447, 1, x_1446); -x_1448 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1449 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1449, 0, x_1447); -lean_ctor_set(x_1449, 1, x_1448); -x_1450 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1449, x_3, x_4, x_5, x_6, x_1436); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1450; -} -else +x_1561 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_1561) == 4) { -lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; -lean_dec(x_1425); -lean_dec(x_9); -x_1451 = lean_ctor_get(x_1438, 0); -lean_inc(x_1451); -lean_dec(x_1438); -x_1452 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1451); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_1453 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1452, x_3, x_4, x_5, x_6, x_1436); -if (lean_obj_tag(x_1453) == 0) -{ -lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; -x_1454 = lean_ctor_get(x_1453, 0); -lean_inc(x_1454); -x_1455 = lean_ctor_get(x_1453, 1); -lean_inc(x_1455); -lean_dec(x_1453); -x_1473 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_1474 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__27___boxed), 9, 2); -lean_closure_set(x_1474, 0, x_1); -lean_closure_set(x_1474, 1, x_1473); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_1475 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1432, x_1474, x_3, x_4, x_5, x_6, x_1455); -if (lean_obj_tag(x_1475) == 0) -{ -lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; uint8_t x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; -x_1476 = lean_ctor_get(x_1475, 0); -lean_inc(x_1476); -x_1477 = lean_ctor_get(x_1475, 1); -lean_inc(x_1477); -lean_dec(x_1475); -x_1478 = lean_box(0); -lean_inc(x_1428); -x_1479 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_1479, 0, x_1428); -lean_ctor_set(x_1479, 1, x_1478); -lean_ctor_set(x_1479, 2, x_1476); -x_1480 = lean_box(0); -x_1481 = 0; -x_1482 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_1482, 0, x_1479); -lean_ctor_set(x_1482, 1, x_1454); -lean_ctor_set(x_1482, 2, x_1480); -lean_ctor_set_uint8(x_1482, sizeof(void*)*3, x_1481); -x_1483 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1483, 0, x_1482); -x_1484 = lean_st_ref_get(x_6, x_1477); -x_1485 = lean_ctor_get(x_1484, 0); -lean_inc(x_1485); -x_1486 = lean_ctor_get(x_1484, 1); -lean_inc(x_1486); -lean_dec(x_1484); -x_1487 = lean_ctor_get(x_1485, 0); -lean_inc(x_1487); -lean_dec(x_1485); -x_1488 = l_Lean_Environment_addAndCompile(x_1487, x_1478, x_1483); -lean_dec(x_1483); -if (lean_obj_tag(x_1488) == 0) -{ -lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; -lean_dec(x_1428); -lean_dec(x_1426); -lean_dec(x_1420); -lean_dec(x_1413); -lean_dec(x_1); -x_1489 = lean_ctor_get(x_1488, 0); -lean_inc(x_1489); -lean_dec(x_1488); -x_1490 = l_Lean_KernelException_toMessageData(x_1489, x_1478); -x_1491 = lean_ctor_get(x_5, 3); -lean_inc(x_1491); -x_1492 = l_Lean_MessageData_toString(x_1490, x_1486); -if (lean_obj_tag(x_1492) == 0) -{ -lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; uint8_t x_1498; -lean_dec(x_1491); -x_1493 = lean_ctor_get(x_1492, 0); -lean_inc(x_1493); -x_1494 = lean_ctor_get(x_1492, 1); -lean_inc(x_1494); -lean_dec(x_1492); -x_1495 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1495, 0, x_1493); -x_1496 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1496, 0, x_1495); -x_1497 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1496, x_3, x_4, x_5, x_6, x_1494); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1498 = !lean_is_exclusive(x_1497); -if (x_1498 == 0) -{ -return x_1497; -} -else -{ -lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; -x_1499 = lean_ctor_get(x_1497, 0); -x_1500 = lean_ctor_get(x_1497, 1); -lean_inc(x_1500); -lean_inc(x_1499); -lean_dec(x_1497); -x_1501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1501, 0, x_1499); -lean_ctor_set(x_1501, 1, x_1500); -return x_1501; -} -} -else -{ -uint8_t x_1502; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1502 = !lean_is_exclusive(x_1492); -if (x_1502 == 0) -{ -lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; -x_1503 = lean_ctor_get(x_1492, 0); -x_1504 = lean_io_error_to_string(x_1503); -x_1505 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1505, 0, x_1504); -x_1506 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1506, 0, x_1505); -x_1507 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1507, 0, x_1491); -lean_ctor_set(x_1507, 1, x_1506); -lean_ctor_set(x_1492, 0, x_1507); -return x_1492; -} -else -{ -lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; -x_1508 = lean_ctor_get(x_1492, 0); -x_1509 = lean_ctor_get(x_1492, 1); -lean_inc(x_1509); -lean_inc(x_1508); -lean_dec(x_1492); -x_1510 = lean_io_error_to_string(x_1508); -x_1511 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1511, 0, x_1510); -x_1512 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1512, 0, x_1511); -x_1513 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1513, 0, x_1491); -lean_ctor_set(x_1513, 1, x_1512); -x_1514 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1514, 0, x_1513); -lean_ctor_set(x_1514, 1, x_1509); -return x_1514; -} -} -} -else -{ -lean_object* x_1515; -x_1515 = lean_ctor_get(x_1488, 0); -lean_inc(x_1515); -lean_dec(x_1488); -x_1456 = x_1515; -x_1457 = x_1486; -goto block_1472; -} -} -else -{ -uint8_t x_1516; -lean_dec(x_1454); -lean_dec(x_1428); -lean_dec(x_1426); -lean_dec(x_1420); -lean_dec(x_1413); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1516 = !lean_is_exclusive(x_1475); -if (x_1516 == 0) -{ -return x_1475; -} -else -{ -lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; -x_1517 = lean_ctor_get(x_1475, 0); -x_1518 = lean_ctor_get(x_1475, 1); -lean_inc(x_1518); -lean_inc(x_1517); -lean_dec(x_1475); -x_1519 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1519, 0, x_1517); -lean_ctor_set(x_1519, 1, x_1518); -return x_1519; -} -} -block_1472: -{ -lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; -lean_inc(x_1428); -x_1458 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1426, x_1456, x_1413, x_1428); -x_1459 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1458, x_3, x_4, x_5, x_6, x_1457); -x_1460 = lean_ctor_get(x_1459, 1); -lean_inc(x_1460); -lean_dec(x_1459); -x_1461 = lean_box(0); -x_1462 = l_Lean_mkConst(x_1428, x_1461); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1462); -x_1463 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1462, x_3, x_4, x_5, x_6, x_1460); -if (lean_obj_tag(x_1463) == 0) -{ -lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; -x_1464 = lean_ctor_get(x_1463, 0); -lean_inc(x_1464); -x_1465 = lean_ctor_get(x_1463, 1); -lean_inc(x_1465); -lean_dec(x_1463); -x_1466 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__26___boxed), 11, 4); -lean_closure_set(x_1466, 0, x_1); -lean_closure_set(x_1466, 1, x_1433); -lean_closure_set(x_1466, 2, x_1420); -lean_closure_set(x_1466, 3, x_1462); -x_1467 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1464, x_1466, x_3, x_4, x_5, x_6, x_1465); -return x_1467; -} -else -{ -uint8_t x_1468; -lean_dec(x_1462); -lean_dec(x_1420); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1468 = !lean_is_exclusive(x_1463); -if (x_1468 == 0) -{ -return x_1463; -} -else -{ -lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; -x_1469 = lean_ctor_get(x_1463, 0); -x_1470 = lean_ctor_get(x_1463, 1); -lean_inc(x_1470); -lean_inc(x_1469); -lean_dec(x_1463); -x_1471 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1471, 0, x_1469); -lean_ctor_set(x_1471, 1, x_1470); -return x_1471; -} -} -} -} -else -{ -uint8_t x_1520; -lean_dec(x_1432); -lean_dec(x_1428); -lean_dec(x_1426); -lean_dec(x_1420); -lean_dec(x_1413); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1520 = !lean_is_exclusive(x_1453); -if (x_1520 == 0) -{ -return x_1453; -} -else -{ -lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; -x_1521 = lean_ctor_get(x_1453, 0); -x_1522 = lean_ctor_get(x_1453, 1); -lean_inc(x_1522); -lean_inc(x_1521); -lean_dec(x_1453); -x_1523 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1523, 0, x_1521); -lean_ctor_set(x_1523, 1, x_1522); -return x_1523; -} -} -} -} -} -else -{ -uint8_t x_1553; -lean_dec(x_1432); -lean_dec(x_1430); -lean_dec(x_1428); -lean_dec(x_1426); -lean_dec(x_1425); -lean_dec(x_1420); -lean_dec(x_1413); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1553 = !lean_is_exclusive(x_1434); -if (x_1553 == 0) -{ -return x_1434; -} -else -{ -lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; -x_1554 = lean_ctor_get(x_1434, 0); -x_1555 = lean_ctor_get(x_1434, 1); -lean_inc(x_1555); -lean_inc(x_1554); -lean_dec(x_1434); -x_1556 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1556, 0, x_1554); -lean_ctor_set(x_1556, 1, x_1555); -return x_1556; -} -} -} -else -{ -uint8_t x_1557; -lean_dec(x_1428); -lean_dec(x_1426); -lean_dec(x_1425); -lean_dec(x_1420); -lean_dec(x_1413); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1557 = !lean_is_exclusive(x_1429); -if (x_1557 == 0) -{ -return x_1429; -} -else -{ -lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; -x_1558 = lean_ctor_get(x_1429, 0); -x_1559 = lean_ctor_get(x_1429, 1); -lean_inc(x_1559); -lean_inc(x_1558); -lean_dec(x_1429); -x_1560 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1560, 0, x_1558); -lean_ctor_set(x_1560, 1, x_1559); -return x_1560; -} -} -} -else -{ -lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; -lean_dec(x_1426); -lean_dec(x_1425); -lean_dec(x_1413); -lean_dec(x_9); -x_1561 = lean_ctor_get(x_1427, 0); -lean_inc(x_1561); -lean_dec(x_1427); -x_1562 = lean_box(0); -x_1563 = l_Lean_mkConst(x_1561, x_1562); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1563); -x_1564 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1563, x_3, x_4, x_5, x_6, x_1423); -if (lean_obj_tag(x_1564) == 0) -{ -lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; -x_1565 = lean_ctor_get(x_1564, 0); -lean_inc(x_1565); -x_1566 = lean_ctor_get(x_1564, 1); -lean_inc(x_1566); -lean_dec(x_1564); -x_1567 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__28___boxed), 10, 3); -lean_closure_set(x_1567, 0, x_1); -lean_closure_set(x_1567, 1, x_1420); -lean_closure_set(x_1567, 2, x_1563); -x_1568 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1565, x_1567, x_3, x_4, x_5, x_6, x_1566); -return x_1568; -} -else -{ -uint8_t x_1569; -lean_dec(x_1563); -lean_dec(x_1420); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1569 = !lean_is_exclusive(x_1564); -if (x_1569 == 0) -{ -return x_1564; -} -else -{ -lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; -x_1570 = lean_ctor_get(x_1564, 0); -x_1571 = lean_ctor_get(x_1564, 1); -lean_inc(x_1571); -lean_inc(x_1570); -lean_dec(x_1564); -x_1572 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1572, 0, x_1570); -lean_ctor_set(x_1572, 1, x_1571); -return x_1572; -} -} -} -} -else -{ -lean_object* x_1573; -lean_dec(x_1402); -lean_dec(x_1); -x_1573 = lean_box(0); -x_1403 = x_1573; -goto block_1412; -} -block_1412: -{ -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_dec(x_1403); -x_1404 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1405 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1405, 0, x_1404); -x_1406 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1406, 0, x_1405); -x_1407 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_1408 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1408, 0, x_1407); -lean_ctor_set(x_1408, 1, x_1406); -x_1409 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1410 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1410, 0, x_1408); -lean_ctor_set(x_1410, 1, x_1409); -x_1411 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1410, x_3, x_4, x_5, x_6, x_1401); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1411; -} -} -case 11: -{ -lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; -x_1574 = lean_ctor_get(x_8, 1); +lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; +x_1572 = lean_ctor_get(x_1561, 0); +lean_inc(x_1572); +lean_dec(x_1561); +x_1573 = lean_unsigned_to_nat(0u); +x_1574 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_1573); +x_1575 = l_Lean_Expr_getAppArgs___closed__1; lean_inc(x_1574); -lean_dec(x_8); -x_1575 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_1575) == 4) +x_1576 = lean_mk_array(x_1574, x_1575); +x_1577 = lean_unsigned_to_nat(1u); +x_1578 = lean_nat_sub(x_1574, x_1577); +lean_dec(x_1574); +lean_inc(x_10); +x_1579 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_1576, x_1578); +x_1580 = lean_st_ref_get(x_7, x_1560); +x_1581 = lean_ctor_get(x_1580, 0); +lean_inc(x_1581); +x_1582 = lean_ctor_get(x_1580, 1); +lean_inc(x_1582); +lean_dec(x_1580); +x_1583 = lean_ctor_get(x_1581, 0); +lean_inc(x_1583); +lean_dec(x_1581); +x_1584 = lean_ctor_get(x_1, 0); +lean_inc(x_1584); +x_1585 = lean_ctor_get(x_1, 2); +lean_inc(x_1585); +x_1586 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1585, x_1583, x_1572); +if (lean_obj_tag(x_1586) == 0) { -lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; -x_1586 = lean_ctor_get(x_1575, 0); -lean_inc(x_1586); -lean_dec(x_1575); -x_1587 = lean_unsigned_to_nat(0u); -x_1588 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_1587); -x_1589 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_1588); -x_1590 = lean_mk_array(x_1588, x_1589); -x_1591 = lean_unsigned_to_nat(1u); -x_1592 = lean_nat_sub(x_1588, x_1591); +lean_object* x_1587; lean_object* x_1588; +lean_inc(x_1584); +x_1587 = l_Lean_Name_append___main(x_1572, x_1584); +lean_inc(x_1572); +x_1588 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1572, x_4, x_5, x_6, x_7, x_1582); +if (lean_obj_tag(x_1588) == 0) +{ +lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; +x_1589 = lean_ctor_get(x_1588, 0); +lean_inc(x_1589); +x_1590 = lean_ctor_get(x_1588, 1); +lean_inc(x_1590); lean_dec(x_1588); -lean_inc(x_9); -x_1593 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_1590, x_1592); -x_1594 = lean_st_ref_get(x_6, x_1574); -x_1595 = lean_ctor_get(x_1594, 0); +x_1591 = l_Lean_ConstantInfo_type(x_1589); +x_1592 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1591); +x_1593 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1591, x_1592, x_4, x_5, x_6, x_7, x_1590); +if (lean_obj_tag(x_1593) == 0) +{ +lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1767; uint8_t x_1768; +x_1594 = lean_ctor_get(x_1593, 0); +lean_inc(x_1594); +x_1595 = lean_ctor_get(x_1593, 1); lean_inc(x_1595); -x_1596 = lean_ctor_get(x_1594, 1); -lean_inc(x_1596); -lean_dec(x_1594); -x_1597 = lean_ctor_get(x_1595, 0); -lean_inc(x_1597); -lean_dec(x_1595); -x_1598 = lean_ctor_get(x_1, 0); -lean_inc(x_1598); -x_1599 = lean_ctor_get(x_1, 2); -lean_inc(x_1599); -x_1600 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1599, x_1597, x_1586); -lean_dec(x_1597); -if (lean_obj_tag(x_1600) == 0) -{ -lean_object* x_1601; lean_object* x_1602; -lean_inc(x_1598); -x_1601 = l_Lean_Name_append___main(x_1586, x_1598); -lean_inc(x_1586); -x_1602 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1586, x_3, x_4, x_5, x_6, x_1596); -if (lean_obj_tag(x_1602) == 0) -{ -lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; -x_1603 = lean_ctor_get(x_1602, 0); -lean_inc(x_1603); -x_1604 = lean_ctor_get(x_1602, 1); -lean_inc(x_1604); -lean_dec(x_1602); -x_1605 = l_Lean_ConstantInfo_type(x_1603); -x_1606 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1605); -x_1607 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1605, x_1606, x_3, x_4, x_5, x_6, x_1604); -if (lean_obj_tag(x_1607) == 0) -{ -lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1698; uint8_t x_1699; -x_1608 = lean_ctor_get(x_1607, 0); -lean_inc(x_1608); -x_1609 = lean_ctor_get(x_1607, 1); -lean_inc(x_1609); -lean_dec(x_1607); -x_1698 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_1699 = l_Lean_Expr_isConstOf(x_1608, x_1698); -if (x_1699 == 0) -{ -lean_object* x_1700; uint8_t x_1701; -x_1700 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_1701 = l_Lean_Expr_isConstOf(x_1608, x_1700); -lean_dec(x_1608); -if (x_1701 == 0) -{ -lean_object* x_1702; -lean_dec(x_1605); -lean_dec(x_1603); -lean_dec(x_1601); -lean_dec(x_1599); lean_dec(x_1593); -lean_dec(x_1586); +x_1767 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_1768 = l_Lean_Expr_isConstOf(x_1594, x_1767); +if (x_1768 == 0) +{ +lean_object* x_1769; uint8_t x_1770; +x_1769 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_1770 = l_Lean_Expr_isConstOf(x_1594, x_1769); +lean_dec(x_1594); +if (x_1770 == 0) +{ +lean_object* x_1771; +lean_dec(x_1591); +lean_dec(x_1589); +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1583); +lean_dec(x_1579); +lean_dec(x_1572); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_1702 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_1609); -if (lean_obj_tag(x_1702) == 0) +lean_inc(x_10); +x_1771 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_1595); +if (lean_obj_tag(x_1771) == 0) { -lean_object* x_1703; -x_1703 = lean_ctor_get(x_1702, 0); -lean_inc(x_1703); -if (lean_obj_tag(x_1703) == 0) +lean_object* x_1772; +x_1772 = lean_ctor_get(x_1771, 0); +lean_inc(x_1772); +if (lean_obj_tag(x_1772) == 0) { -lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; +lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_dec(x_1); -x_1704 = lean_ctor_get(x_1702, 1); -lean_inc(x_1704); -lean_dec(x_1702); -x_1705 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1705, 0, x_1598); -x_1706 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1707 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1707, 0, x_1706); -lean_ctor_set(x_1707, 1, x_1705); -x_1708 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_1709 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1709, 0, x_1707); -lean_ctor_set(x_1709, 1, x_1708); -x_1710 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1711 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1711, 0, x_1710); -x_1712 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1712, 0, x_1711); -x_1713 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1713, 0, x_1709); -lean_ctor_set(x_1713, 1, x_1712); -x_1714 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1715 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1715, 0, x_1713); -lean_ctor_set(x_1715, 1, x_1714); -x_1716 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1715, x_3, x_4, x_5, x_6, x_1704); +x_1773 = lean_ctor_get(x_1771, 1); +lean_inc(x_1773); +lean_dec(x_1771); +x_1774 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1774, 0, x_1584); +x_1775 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_1776 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1776, 0, x_1775); +lean_ctor_set(x_1776, 1, x_1774); +x_1777 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_1778 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1778, 0, x_1776); +lean_ctor_set(x_1778, 1, x_1777); +x_1779 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1780 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1780, 0, x_1779); +x_1781 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1781, 0, x_1780); +x_1782 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1782, 0, x_1778); +lean_ctor_set(x_1782, 1, x_1781); +x_1783 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1784 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1784, 0, x_1782); +lean_ctor_set(x_1784, 1, x_1783); +x_1785 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1784, x_4, x_5, x_6, x_7, x_1773); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_1716; +return x_1785; } else { -lean_object* x_1717; lean_object* x_1718; -lean_dec(x_1598); -lean_dec(x_9); -x_1717 = lean_ctor_get(x_1702, 1); -lean_inc(x_1717); -lean_dec(x_1702); -x_1718 = lean_ctor_get(x_1703, 0); -lean_inc(x_1718); -lean_dec(x_1703); -x_2 = x_1718; -x_7 = x_1717; +lean_object* x_1786; lean_object* x_1787; uint8_t x_1788; +lean_dec(x_1584); +lean_dec(x_10); +x_1786 = lean_ctor_get(x_1771, 1); +lean_inc(x_1786); +lean_dec(x_1771); +x_1787 = lean_ctor_get(x_1772, 0); +lean_inc(x_1787); +lean_dec(x_1772); +x_1788 = 0; +x_2 = x_1787; +x_3 = x_1788; +x_8 = x_1786; goto _start; } } else { -uint8_t x_1720; -lean_dec(x_1598); -lean_dec(x_9); +uint8_t x_1790; +lean_dec(x_1584); +lean_dec(x_10); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1720 = !lean_is_exclusive(x_1702); -if (x_1720 == 0) +x_1790 = !lean_is_exclusive(x_1771); +if (x_1790 == 0) { -return x_1702; +return x_1771; } else { -lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; -x_1721 = lean_ctor_get(x_1702, 0); -x_1722 = lean_ctor_get(x_1702, 1); -lean_inc(x_1722); -lean_inc(x_1721); -lean_dec(x_1702); -x_1723 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1723, 0, x_1721); -lean_ctor_set(x_1723, 1, x_1722); -return x_1723; +lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; +x_1791 = lean_ctor_get(x_1771, 0); +x_1792 = lean_ctor_get(x_1771, 1); +lean_inc(x_1792); +lean_inc(x_1791); +lean_dec(x_1771); +x_1793 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1793, 0, x_1791); +lean_ctor_set(x_1793, 1, x_1792); +return x_1793; } } } else { -lean_object* x_1724; -x_1724 = lean_box(0); -x_1610 = x_1724; -goto block_1697; +lean_object* x_1794; +x_1794 = lean_box(0); +x_1596 = x_1794; +goto block_1766; } } else { -lean_object* x_1725; -lean_dec(x_1608); -x_1725 = lean_box(0); -x_1610 = x_1725; -goto block_1697; +lean_object* x_1795; +lean_dec(x_1594); +x_1795 = lean_box(0); +x_1596 = x_1795; +goto block_1766; } -block_1697: +block_1766: { -lean_object* x_1611; -lean_dec(x_1610); -x_1611 = l_Lean_ConstantInfo_value_x3f(x_1603); -lean_dec(x_1603); +lean_object* x_1597; +lean_dec(x_1596); +x_1597 = l_Lean_ConstantInfo_value_x3f(x_1589); +lean_dec(x_1589); +if (lean_obj_tag(x_1597) == 0) +{ +lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; +lean_dec(x_1591); +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1583); +lean_dec(x_1579); +lean_dec(x_1572); +lean_dec(x_1); +x_1598 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1598, 0, x_1584); +x_1599 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_1600 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1600, 0, x_1599); +lean_ctor_set(x_1600, 1, x_1598); +x_1601 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_1602 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1602, 0, x_1600); +lean_ctor_set(x_1602, 1, x_1601); +x_1603 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1604 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1604, 0, x_1603); +x_1605 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1605, 0, x_1604); +x_1606 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1606, 0, x_1602); +lean_ctor_set(x_1606, 1, x_1605); +x_1607 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1608 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1608, 0, x_1606); +lean_ctor_set(x_1608, 1, x_1607); +x_1609 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1608, x_4, x_5, x_6, x_7, x_1595); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1609; +} +else +{ +lean_object* x_1610; lean_object* x_1611; +lean_dec(x_1584); +lean_dec(x_10); +x_1610 = lean_ctor_get(x_1597, 0); +lean_inc(x_1610); +lean_dec(x_1597); +x_1611 = l_Lean_Environment_getModuleIdxFor_x3f(x_1583, x_1572); +lean_dec(x_1583); if (lean_obj_tag(x_1611) == 0) { -lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; -lean_dec(x_1605); -lean_dec(x_1601); -lean_dec(x_1599); -lean_dec(x_1593); -lean_dec(x_1586); -lean_dec(x_1); -x_1612 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1612, 0, x_1598); -x_1613 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1614 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1614, 0, x_1613); -lean_ctor_set(x_1614, 1, x_1612); -x_1615 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_1616 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1616, 0, x_1614); -lean_ctor_set(x_1616, 1, x_1615); -x_1617 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1618 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1618, 0, x_1617); -x_1619 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1619, 0, x_1618); -x_1620 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1620, 0, x_1616); -lean_ctor_set(x_1620, 1, x_1619); -x_1621 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1622 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1622, 0, x_1620); -lean_ctor_set(x_1622, 1, x_1621); -x_1623 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1622, x_3, x_4, x_5, x_6, x_1609); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1623; -} -else -{ -lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; -lean_dec(x_1598); -lean_dec(x_9); -x_1624 = lean_ctor_get(x_1611, 0); -lean_inc(x_1624); -lean_dec(x_1611); -x_1625 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1624); +lean_object* x_1612; lean_object* x_1613; lean_object* x_1629; uint8_t x_1630; lean_object* x_1631; +x_1629 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1610); +x_1630 = 0; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); lean_inc(x_1); -x_1626 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1625, x_3, x_4, x_5, x_6, x_1609); -if (lean_obj_tag(x_1626) == 0) +x_1631 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1629, x_1630, x_4, x_5, x_6, x_7, x_1595); +if (lean_obj_tag(x_1631) == 0) { -lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; -x_1627 = lean_ctor_get(x_1626, 0); -lean_inc(x_1627); -x_1628 = lean_ctor_get(x_1626, 1); -lean_inc(x_1628); -lean_dec(x_1626); -x_1646 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_1647 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__30___boxed), 9, 2); -lean_closure_set(x_1647, 0, x_1); -lean_closure_set(x_1647, 1, x_1646); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_1648 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1605, x_1647, x_3, x_4, x_5, x_6, x_1628); -if (lean_obj_tag(x_1648) == 0) -{ -lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; uint8_t x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; -x_1649 = lean_ctor_get(x_1648, 0); -lean_inc(x_1649); -x_1650 = lean_ctor_get(x_1648, 1); -lean_inc(x_1650); -lean_dec(x_1648); -x_1651 = lean_box(0); -lean_inc(x_1601); -x_1652 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_1652, 0, x_1601); -lean_ctor_set(x_1652, 1, x_1651); -lean_ctor_set(x_1652, 2, x_1649); -x_1653 = lean_box(0); -x_1654 = 0; -x_1655 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_1655, 0, x_1652); -lean_ctor_set(x_1655, 1, x_1627); -lean_ctor_set(x_1655, 2, x_1653); -lean_ctor_set_uint8(x_1655, sizeof(void*)*3, x_1654); -x_1656 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1656, 0, x_1655); -x_1657 = lean_st_ref_get(x_6, x_1650); -x_1658 = lean_ctor_get(x_1657, 0); -lean_inc(x_1658); -x_1659 = lean_ctor_get(x_1657, 1); -lean_inc(x_1659); -lean_dec(x_1657); -x_1660 = lean_ctor_get(x_1658, 0); -lean_inc(x_1660); -lean_dec(x_1658); -x_1661 = l_Lean_Environment_addAndCompile(x_1660, x_1651, x_1656); -lean_dec(x_1656); -if (lean_obj_tag(x_1661) == 0) -{ -lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; -lean_dec(x_1601); -lean_dec(x_1599); -lean_dec(x_1593); -lean_dec(x_1586); -lean_dec(x_1); -x_1662 = lean_ctor_get(x_1661, 0); -lean_inc(x_1662); -lean_dec(x_1661); -x_1663 = l_Lean_KernelException_toMessageData(x_1662, x_1651); -x_1664 = lean_ctor_get(x_5, 3); -lean_inc(x_1664); -x_1665 = l_Lean_MessageData_toString(x_1663, x_1659); -if (lean_obj_tag(x_1665) == 0) -{ -lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; uint8_t x_1671; -lean_dec(x_1664); -x_1666 = lean_ctor_get(x_1665, 0); -lean_inc(x_1666); -x_1667 = lean_ctor_get(x_1665, 1); -lean_inc(x_1667); -lean_dec(x_1665); -x_1668 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1668, 0, x_1666); -x_1669 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1669, 0, x_1668); -x_1670 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1669, x_3, x_4, x_5, x_6, x_1667); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1671 = !lean_is_exclusive(x_1670); -if (x_1671 == 0) -{ -return x_1670; -} -else -{ -lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; -x_1672 = lean_ctor_get(x_1670, 0); -x_1673 = lean_ctor_get(x_1670, 1); -lean_inc(x_1673); -lean_inc(x_1672); -lean_dec(x_1670); -x_1674 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1674, 0, x_1672); -lean_ctor_set(x_1674, 1, x_1673); -return x_1674; -} -} -else -{ -uint8_t x_1675; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1675 = !lean_is_exclusive(x_1665); -if (x_1675 == 0) -{ -lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; -x_1676 = lean_ctor_get(x_1665, 0); -x_1677 = lean_io_error_to_string(x_1676); -x_1678 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1678, 0, x_1677); -x_1679 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1679, 0, x_1678); -x_1680 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1680, 0, x_1664); -lean_ctor_set(x_1680, 1, x_1679); -lean_ctor_set(x_1665, 0, x_1680); -return x_1665; -} -else -{ -lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; -x_1681 = lean_ctor_get(x_1665, 0); -x_1682 = lean_ctor_get(x_1665, 1); -lean_inc(x_1682); -lean_inc(x_1681); -lean_dec(x_1665); -x_1683 = lean_io_error_to_string(x_1681); -x_1684 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1684, 0, x_1683); -x_1685 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1685, 0, x_1684); -x_1686 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1686, 0, x_1664); -lean_ctor_set(x_1686, 1, x_1685); -x_1687 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1687, 0, x_1686); -lean_ctor_set(x_1687, 1, x_1682); -return x_1687; -} -} -} -else -{ -lean_object* x_1688; -x_1688 = lean_ctor_get(x_1661, 0); -lean_inc(x_1688); -lean_dec(x_1661); -x_1629 = x_1688; -x_1630 = x_1659; -goto block_1645; -} -} -else -{ -uint8_t x_1689; -lean_dec(x_1627); -lean_dec(x_1601); -lean_dec(x_1599); -lean_dec(x_1593); -lean_dec(x_1586); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1689 = !lean_is_exclusive(x_1648); -if (x_1689 == 0) -{ -return x_1648; -} -else -{ -lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; -x_1690 = lean_ctor_get(x_1648, 0); -x_1691 = lean_ctor_get(x_1648, 1); -lean_inc(x_1691); -lean_inc(x_1690); -lean_dec(x_1648); -x_1692 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1692, 0, x_1690); -lean_ctor_set(x_1692, 1, x_1691); -return x_1692; -} -} -block_1645: -{ -lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; -lean_inc(x_1601); -x_1631 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1599, x_1629, x_1586, x_1601); -x_1632 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1631, x_3, x_4, x_5, x_6, x_1630); -x_1633 = lean_ctor_get(x_1632, 1); +lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; +x_1632 = lean_ctor_get(x_1631, 0); +lean_inc(x_1632); +x_1633 = lean_ctor_get(x_1631, 1); lean_inc(x_1633); -lean_dec(x_1632); -x_1634 = lean_box(0); -x_1635 = l_Lean_mkConst(x_1601, x_1634); +lean_dec(x_1631); +x_1634 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_1635 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__45___boxed), 9, 2); +lean_closure_set(x_1635, 0, x_1); +lean_closure_set(x_1635, 1, x_1634); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1635); -x_1636 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1635, x_3, x_4, x_5, x_6, x_1633); +x_1636 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1591, x_1635, x_4, x_5, x_6, x_7, x_1633); if (lean_obj_tag(x_1636) == 0) { -lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; +lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; x_1637 = lean_ctor_get(x_1636, 0); lean_inc(x_1637); x_1638 = lean_ctor_get(x_1636, 1); lean_inc(x_1638); lean_dec(x_1636); -x_1639 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__29___boxed), 11, 4); -lean_closure_set(x_1639, 0, x_1); -lean_closure_set(x_1639, 1, x_1606); -lean_closure_set(x_1639, 2, x_1593); -lean_closure_set(x_1639, 3, x_1635); -x_1640 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1637, x_1639, x_3, x_4, x_5, x_6, x_1638); -return x_1640; -} -else +x_1639 = lean_box(0); +lean_inc(x_1587); +x_1640 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_1640, 0, x_1587); +lean_ctor_set(x_1640, 1, x_1639); +lean_ctor_set(x_1640, 2, x_1637); +x_1641 = lean_box(0); +x_1642 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_1642, 0, x_1640); +lean_ctor_set(x_1642, 1, x_1632); +lean_ctor_set(x_1642, 2, x_1641); +lean_ctor_set_uint8(x_1642, sizeof(void*)*3, x_1630); +x_1643 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1643, 0, x_1642); +x_1644 = lean_st_ref_get(x_7, x_1638); +x_1645 = lean_ctor_get(x_1644, 0); +lean_inc(x_1645); +x_1646 = lean_ctor_get(x_1644, 1); +lean_inc(x_1646); +lean_dec(x_1644); +x_1647 = lean_ctor_get(x_1645, 0); +lean_inc(x_1647); +lean_dec(x_1645); +x_1648 = l_Lean_Environment_addAndCompile(x_1647, x_1639, x_1643); +lean_dec(x_1643); +if (lean_obj_tag(x_1648) == 0) { -uint8_t x_1641; -lean_dec(x_1635); -lean_dec(x_1593); +lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1579); +lean_dec(x_1572); +lean_dec(x_1); +x_1649 = lean_ctor_get(x_1648, 0); +lean_inc(x_1649); +lean_dec(x_1648); +x_1650 = l_Lean_KernelException_toMessageData(x_1649, x_1639); +x_1651 = lean_ctor_get(x_6, 3); +lean_inc(x_1651); +x_1652 = l_Lean_MessageData_toString(x_1650, x_1646); +if (lean_obj_tag(x_1652) == 0) +{ +lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; uint8_t x_1658; +lean_dec(x_1651); +x_1653 = lean_ctor_get(x_1652, 0); +lean_inc(x_1653); +x_1654 = lean_ctor_get(x_1652, 1); +lean_inc(x_1654); +lean_dec(x_1652); +x_1655 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1655, 0, x_1653); +x_1656 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1656, 0, x_1655); +x_1657 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1656, x_4, x_5, x_6, x_7, x_1654); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1658 = !lean_is_exclusive(x_1657); +if (x_1658 == 0) +{ +return x_1657; +} +else +{ +lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; +x_1659 = lean_ctor_get(x_1657, 0); +x_1660 = lean_ctor_get(x_1657, 1); +lean_inc(x_1660); +lean_inc(x_1659); +lean_dec(x_1657); +x_1661 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1661, 0, x_1659); +lean_ctor_set(x_1661, 1, x_1660); +return x_1661; +} +} +else +{ +uint8_t x_1662; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1662 = !lean_is_exclusive(x_1652); +if (x_1662 == 0) +{ +lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; +x_1663 = lean_ctor_get(x_1652, 0); +x_1664 = lean_io_error_to_string(x_1663); +x_1665 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1665, 0, x_1664); +x_1666 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1666, 0, x_1665); +x_1667 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1667, 0, x_1651); +lean_ctor_set(x_1667, 1, x_1666); +lean_ctor_set(x_1652, 0, x_1667); +return x_1652; +} +else +{ +lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; +x_1668 = lean_ctor_get(x_1652, 0); +x_1669 = lean_ctor_get(x_1652, 1); +lean_inc(x_1669); +lean_inc(x_1668); +lean_dec(x_1652); +x_1670 = lean_io_error_to_string(x_1668); +x_1671 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1671, 0, x_1670); +x_1672 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1672, 0, x_1671); +x_1673 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1673, 0, x_1651); +lean_ctor_set(x_1673, 1, x_1672); +x_1674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1674, 0, x_1673); +lean_ctor_set(x_1674, 1, x_1669); +return x_1674; +} +} +} +else +{ +lean_object* x_1675; +x_1675 = lean_ctor_get(x_1648, 0); +lean_inc(x_1675); +lean_dec(x_1648); +x_1612 = x_1675; +x_1613 = x_1646; +goto block_1628; +} +} +else +{ +uint8_t x_1676; +lean_dec(x_1632); +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1579); +lean_dec(x_1572); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1641 = !lean_is_exclusive(x_1636); -if (x_1641 == 0) +x_1676 = !lean_is_exclusive(x_1636); +if (x_1676 == 0) { return x_1636; } else { -lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; -x_1642 = lean_ctor_get(x_1636, 0); -x_1643 = lean_ctor_get(x_1636, 1); -lean_inc(x_1643); -lean_inc(x_1642); +lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; +x_1677 = lean_ctor_get(x_1636, 0); +x_1678 = lean_ctor_get(x_1636, 1); +lean_inc(x_1678); +lean_inc(x_1677); lean_dec(x_1636); -x_1644 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1644, 0, x_1642); -lean_ctor_set(x_1644, 1, x_1643); -return x_1644; -} +x_1679 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1679, 0, x_1677); +lean_ctor_set(x_1679, 1, x_1678); +return x_1679; } } } else { -uint8_t x_1693; -lean_dec(x_1605); -lean_dec(x_1601); -lean_dec(x_1599); -lean_dec(x_1593); -lean_dec(x_1586); +uint8_t x_1680; +lean_dec(x_1591); +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1579); +lean_dec(x_1572); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1693 = !lean_is_exclusive(x_1626); -if (x_1693 == 0) +x_1680 = !lean_is_exclusive(x_1631); +if (x_1680 == 0) { -return x_1626; +return x_1631; } else { -lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; -x_1694 = lean_ctor_get(x_1626, 0); -x_1695 = lean_ctor_get(x_1626, 1); -lean_inc(x_1695); -lean_inc(x_1694); -lean_dec(x_1626); -x_1696 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1696, 0, x_1694); -lean_ctor_set(x_1696, 1, x_1695); -return x_1696; -} -} +lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; +x_1681 = lean_ctor_get(x_1631, 0); +x_1682 = lean_ctor_get(x_1631, 1); +lean_inc(x_1682); +lean_inc(x_1681); +lean_dec(x_1631); +x_1683 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1683, 0, x_1681); +lean_ctor_set(x_1683, 1, x_1682); +return x_1683; } } +block_1628: +{ +lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; +lean_inc(x_1587); +x_1614 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1585, x_1612, x_1572, x_1587); +x_1615 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1614, x_4, x_5, x_6, x_7, x_1613); +x_1616 = lean_ctor_get(x_1615, 1); +lean_inc(x_1616); +lean_dec(x_1615); +x_1617 = lean_box(0); +x_1618 = l_Lean_mkConst(x_1587, x_1617); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1618); +x_1619 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1618, x_4, x_5, x_6, x_7, x_1616); +if (lean_obj_tag(x_1619) == 0) +{ +lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; +x_1620 = lean_ctor_get(x_1619, 0); +lean_inc(x_1620); +x_1621 = lean_ctor_get(x_1619, 1); +lean_inc(x_1621); +lean_dec(x_1619); +x_1622 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__44___boxed), 11, 4); +lean_closure_set(x_1622, 0, x_1); +lean_closure_set(x_1622, 1, x_1592); +lean_closure_set(x_1622, 2, x_1579); +lean_closure_set(x_1622, 3, x_1618); +x_1623 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1620, x_1622, x_4, x_5, x_6, x_7, x_1621); +return x_1623; } else { -uint8_t x_1726; -lean_dec(x_1605); -lean_dec(x_1603); -lean_dec(x_1601); -lean_dec(x_1599); -lean_dec(x_1598); -lean_dec(x_1593); -lean_dec(x_1586); -lean_dec(x_9); +uint8_t x_1624; +lean_dec(x_1618); +lean_dec(x_1579); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1726 = !lean_is_exclusive(x_1607); -if (x_1726 == 0) +x_1624 = !lean_is_exclusive(x_1619); +if (x_1624 == 0) { -return x_1607; +return x_1619; } else { -lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; -x_1727 = lean_ctor_get(x_1607, 0); -x_1728 = lean_ctor_get(x_1607, 1); -lean_inc(x_1728); +lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; +x_1625 = lean_ctor_get(x_1619, 0); +x_1626 = lean_ctor_get(x_1619, 1); +lean_inc(x_1626); +lean_inc(x_1625); +lean_dec(x_1619); +x_1627 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1627, 0, x_1625); +lean_ctor_set(x_1627, 1, x_1626); +return x_1627; +} +} +} +} +else +{ +lean_dec(x_1611); +if (x_3 == 0) +{ +lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; uint8_t x_1690; +lean_dec(x_1610); +lean_dec(x_1591); +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1579); +lean_dec(x_1); +x_1684 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1684, 0, x_1572); +x_1685 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_1686 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1686, 0, x_1685); +lean_ctor_set(x_1686, 1, x_1684); +x_1687 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_1688 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1688, 0, x_1686); +lean_ctor_set(x_1688, 1, x_1687); +x_1689 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1688, x_4, x_5, x_6, x_7, x_1595); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1690 = !lean_is_exclusive(x_1689); +if (x_1690 == 0) +{ +return x_1689; +} +else +{ +lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; +x_1691 = lean_ctor_get(x_1689, 0); +x_1692 = lean_ctor_get(x_1689, 1); +lean_inc(x_1692); +lean_inc(x_1691); +lean_dec(x_1689); +x_1693 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1693, 0, x_1691); +lean_ctor_set(x_1693, 1, x_1692); +return x_1693; +} +} +else +{ +lean_object* x_1694; lean_object* x_1695; lean_object* x_1711; uint8_t x_1712; lean_object* x_1713; +x_1711 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1610); +x_1712 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_1713 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1711, x_1712, x_4, x_5, x_6, x_7, x_1595); +if (lean_obj_tag(x_1713) == 0) +{ +lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; +x_1714 = lean_ctor_get(x_1713, 0); +lean_inc(x_1714); +x_1715 = lean_ctor_get(x_1713, 1); +lean_inc(x_1715); +lean_dec(x_1713); +x_1716 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_1717 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__49___boxed), 9, 2); +lean_closure_set(x_1717, 0, x_1); +lean_closure_set(x_1717, 1, x_1716); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_1718 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1591, x_1717, x_4, x_5, x_6, x_7, x_1715); +if (lean_obj_tag(x_1718) == 0) +{ +lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; +x_1719 = lean_ctor_get(x_1718, 0); +lean_inc(x_1719); +x_1720 = lean_ctor_get(x_1718, 1); +lean_inc(x_1720); +lean_dec(x_1718); +x_1721 = lean_box(0); +lean_inc(x_1587); +x_1722 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_1722, 0, x_1587); +lean_ctor_set(x_1722, 1, x_1721); +lean_ctor_set(x_1722, 2, x_1719); +x_1723 = lean_box(0); +x_1724 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_1724, 0, x_1722); +lean_ctor_set(x_1724, 1, x_1714); +lean_ctor_set(x_1724, 2, x_1723); +lean_ctor_set_uint8(x_1724, sizeof(void*)*3, x_1712); +x_1725 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1725, 0, x_1724); +x_1726 = lean_st_ref_get(x_7, x_1720); +x_1727 = lean_ctor_get(x_1726, 0); lean_inc(x_1727); -lean_dec(x_1607); -x_1729 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1729, 0, x_1727); -lean_ctor_set(x_1729, 1, x_1728); -return x_1729; -} -} -} -else +x_1728 = lean_ctor_get(x_1726, 1); +lean_inc(x_1728); +lean_dec(x_1726); +x_1729 = lean_ctor_get(x_1727, 0); +lean_inc(x_1729); +lean_dec(x_1727); +x_1730 = l_Lean_Environment_addAndCompile(x_1729, x_1721, x_1725); +lean_dec(x_1725); +if (lean_obj_tag(x_1730) == 0) { -uint8_t x_1730; -lean_dec(x_1601); -lean_dec(x_1599); -lean_dec(x_1598); -lean_dec(x_1593); -lean_dec(x_1586); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1579); +lean_dec(x_1572); lean_dec(x_1); -x_1730 = !lean_is_exclusive(x_1602); -if (x_1730 == 0) -{ -return x_1602; -} -else -{ -lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; -x_1731 = lean_ctor_get(x_1602, 0); -x_1732 = lean_ctor_get(x_1602, 1); -lean_inc(x_1732); +x_1731 = lean_ctor_get(x_1730, 0); lean_inc(x_1731); -lean_dec(x_1602); -x_1733 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1733, 0, x_1731); -lean_ctor_set(x_1733, 1, x_1732); -return x_1733; -} -} -} -else +lean_dec(x_1730); +x_1732 = l_Lean_KernelException_toMessageData(x_1731, x_1721); +x_1733 = lean_ctor_get(x_6, 3); +lean_inc(x_1733); +x_1734 = l_Lean_MessageData_toString(x_1732, x_1728); +if (lean_obj_tag(x_1734) == 0) { -lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; -lean_dec(x_1599); -lean_dec(x_1598); -lean_dec(x_1586); -lean_dec(x_9); -x_1734 = lean_ctor_get(x_1600, 0); -lean_inc(x_1734); -lean_dec(x_1600); -x_1735 = lean_box(0); -x_1736 = l_Lean_mkConst(x_1734, x_1735); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); +lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; lean_object* x_1739; uint8_t x_1740; +lean_dec(x_1733); +x_1735 = lean_ctor_get(x_1734, 0); +lean_inc(x_1735); +x_1736 = lean_ctor_get(x_1734, 1); lean_inc(x_1736); -x_1737 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1736, x_3, x_4, x_5, x_6, x_1596); -if (lean_obj_tag(x_1737) == 0) +lean_dec(x_1734); +x_1737 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1737, 0, x_1735); +x_1738 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1738, 0, x_1737); +x_1739 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1738, x_4, x_5, x_6, x_7, x_1736); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1740 = !lean_is_exclusive(x_1739); +if (x_1740 == 0) { -lean_object* x_1738; lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; -x_1738 = lean_ctor_get(x_1737, 0); -lean_inc(x_1738); -x_1739 = lean_ctor_get(x_1737, 1); -lean_inc(x_1739); -lean_dec(x_1737); -x_1740 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31___boxed), 10, 3); -lean_closure_set(x_1740, 0, x_1); -lean_closure_set(x_1740, 1, x_1593); -lean_closure_set(x_1740, 2, x_1736); -x_1741 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1738, x_1740, x_3, x_4, x_5, x_6, x_1739); -return x_1741; +return x_1739; } else { -uint8_t x_1742; -lean_dec(x_1736); +lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; +x_1741 = lean_ctor_get(x_1739, 0); +x_1742 = lean_ctor_get(x_1739, 1); +lean_inc(x_1742); +lean_inc(x_1741); +lean_dec(x_1739); +x_1743 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1743, 0, x_1741); +lean_ctor_set(x_1743, 1, x_1742); +return x_1743; +} +} +else +{ +uint8_t x_1744; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1744 = !lean_is_exclusive(x_1734); +if (x_1744 == 0) +{ +lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; +x_1745 = lean_ctor_get(x_1734, 0); +x_1746 = lean_io_error_to_string(x_1745); +x_1747 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1747, 0, x_1746); +x_1748 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1748, 0, x_1747); +x_1749 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1749, 0, x_1733); +lean_ctor_set(x_1749, 1, x_1748); +lean_ctor_set(x_1734, 0, x_1749); +return x_1734; +} +else +{ +lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; +x_1750 = lean_ctor_get(x_1734, 0); +x_1751 = lean_ctor_get(x_1734, 1); +lean_inc(x_1751); +lean_inc(x_1750); +lean_dec(x_1734); +x_1752 = lean_io_error_to_string(x_1750); +x_1753 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1753, 0, x_1752); +x_1754 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1754, 0, x_1753); +x_1755 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1755, 0, x_1733); +lean_ctor_set(x_1755, 1, x_1754); +x_1756 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1756, 0, x_1755); +lean_ctor_set(x_1756, 1, x_1751); +return x_1756; +} +} +} +else +{ +lean_object* x_1757; +x_1757 = lean_ctor_get(x_1730, 0); +lean_inc(x_1757); +lean_dec(x_1730); +x_1694 = x_1757; +x_1695 = x_1728; +goto block_1710; +} +} +else +{ +uint8_t x_1758; +lean_dec(x_1714); +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1579); +lean_dec(x_1572); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1758 = !lean_is_exclusive(x_1718); +if (x_1758 == 0) +{ +return x_1718; +} +else +{ +lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; +x_1759 = lean_ctor_get(x_1718, 0); +x_1760 = lean_ctor_get(x_1718, 1); +lean_inc(x_1760); +lean_inc(x_1759); +lean_dec(x_1718); +x_1761 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1761, 0, x_1759); +lean_ctor_set(x_1761, 1, x_1760); +return x_1761; +} +} +} +else +{ +uint8_t x_1762; +lean_dec(x_1591); +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1579); +lean_dec(x_1572); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1762 = !lean_is_exclusive(x_1713); +if (x_1762 == 0) +{ +return x_1713; +} +else +{ +lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; +x_1763 = lean_ctor_get(x_1713, 0); +x_1764 = lean_ctor_get(x_1713, 1); +lean_inc(x_1764); +lean_inc(x_1763); +lean_dec(x_1713); +x_1765 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1765, 0, x_1763); +lean_ctor_set(x_1765, 1, x_1764); +return x_1765; +} +} +block_1710: +{ +lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; +lean_inc(x_1587); +x_1696 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1585, x_1694, x_1572, x_1587); +x_1697 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1696, x_4, x_5, x_6, x_7, x_1695); +x_1698 = lean_ctor_get(x_1697, 1); +lean_inc(x_1698); +lean_dec(x_1697); +x_1699 = lean_box(0); +x_1700 = l_Lean_mkConst(x_1587, x_1699); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1700); +x_1701 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1700, x_4, x_5, x_6, x_7, x_1698); +if (lean_obj_tag(x_1701) == 0) +{ +lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; +x_1702 = lean_ctor_get(x_1701, 0); +lean_inc(x_1702); +x_1703 = lean_ctor_get(x_1701, 1); +lean_inc(x_1703); +lean_dec(x_1701); +x_1704 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__48___boxed), 11, 4); +lean_closure_set(x_1704, 0, x_1); +lean_closure_set(x_1704, 1, x_1592); +lean_closure_set(x_1704, 2, x_1579); +lean_closure_set(x_1704, 3, x_1700); +x_1705 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1702, x_1704, x_4, x_5, x_6, x_7, x_1703); +return x_1705; +} +else +{ +uint8_t x_1706; +lean_dec(x_1700); +lean_dec(x_1579); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1706 = !lean_is_exclusive(x_1701); +if (x_1706 == 0) +{ +return x_1701; +} +else +{ +lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; +x_1707 = lean_ctor_get(x_1701, 0); +x_1708 = lean_ctor_get(x_1701, 1); +lean_inc(x_1708); +lean_inc(x_1707); +lean_dec(x_1701); +x_1709 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1709, 0, x_1707); +lean_ctor_set(x_1709, 1, x_1708); +return x_1709; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_1796; +lean_dec(x_1591); +lean_dec(x_1589); +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1584); +lean_dec(x_1583); +lean_dec(x_1579); +lean_dec(x_1572); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1796 = !lean_is_exclusive(x_1593); +if (x_1796 == 0) +{ +return x_1593; +} +else +{ +lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; +x_1797 = lean_ctor_get(x_1593, 0); +x_1798 = lean_ctor_get(x_1593, 1); +lean_inc(x_1798); +lean_inc(x_1797); lean_dec(x_1593); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1742 = !lean_is_exclusive(x_1737); -if (x_1742 == 0) -{ -return x_1737; -} -else -{ -lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; -x_1743 = lean_ctor_get(x_1737, 0); -x_1744 = lean_ctor_get(x_1737, 1); -lean_inc(x_1744); -lean_inc(x_1743); -lean_dec(x_1737); -x_1745 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1745, 0, x_1743); -lean_ctor_set(x_1745, 1, x_1744); -return x_1745; -} +x_1799 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1799, 0, x_1797); +lean_ctor_set(x_1799, 1, x_1798); +return x_1799; } } } else { -lean_object* x_1746; -lean_dec(x_1575); -lean_dec(x_1); -x_1746 = lean_box(0); -x_1576 = x_1746; -goto block_1585; -} -block_1585: -{ -lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; -lean_dec(x_1576); -x_1577 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1578 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1578, 0, x_1577); -x_1579 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1579, 0, x_1578); -x_1580 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_1581 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1581, 0, x_1580); -lean_ctor_set(x_1581, 1, x_1579); -x_1582 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1583 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1583, 0, x_1581); -lean_ctor_set(x_1583, 1, x_1582); -x_1584 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1583, x_3, x_4, x_5, x_6, x_1574); +uint8_t x_1800; +lean_dec(x_1587); +lean_dec(x_1585); +lean_dec(x_1584); +lean_dec(x_1583); +lean_dec(x_1579); +lean_dec(x_1572); +lean_dec(x_10); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -return x_1584; +lean_dec(x_1); +x_1800 = !lean_is_exclusive(x_1588); +if (x_1800 == 0) +{ +return x_1588; +} +else +{ +lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; +x_1801 = lean_ctor_get(x_1588, 0); +x_1802 = lean_ctor_get(x_1588, 1); +lean_inc(x_1802); +lean_inc(x_1801); +lean_dec(x_1588); +x_1803 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1803, 0, x_1801); +lean_ctor_set(x_1803, 1, x_1802); +return x_1803; } } -default: +} +else { -lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; -x_1747 = lean_ctor_get(x_8, 1); -lean_inc(x_1747); -lean_dec(x_8); -x_1748 = l_Lean_Expr_getAppFn___main(x_9); -if (lean_obj_tag(x_1748) == 4) -{ -lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; -x_1759 = lean_ctor_get(x_1748, 0); -lean_inc(x_1759); -lean_dec(x_1748); -x_1760 = lean_unsigned_to_nat(0u); -x_1761 = l_Lean_Expr_getAppNumArgsAux___main(x_9, x_1760); -x_1762 = l_Lean_Expr_getAppArgs___closed__1; -lean_inc(x_1761); -x_1763 = lean_mk_array(x_1761, x_1762); -x_1764 = lean_unsigned_to_nat(1u); -x_1765 = lean_nat_sub(x_1761, x_1764); -lean_dec(x_1761); -lean_inc(x_9); -x_1766 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_1763, x_1765); -x_1767 = lean_st_ref_get(x_6, x_1747); -x_1768 = lean_ctor_get(x_1767, 0); -lean_inc(x_1768); -x_1769 = lean_ctor_get(x_1767, 1); -lean_inc(x_1769); -lean_dec(x_1767); -x_1770 = lean_ctor_get(x_1768, 0); -lean_inc(x_1770); -lean_dec(x_1768); -x_1771 = lean_ctor_get(x_1, 0); -lean_inc(x_1771); -x_1772 = lean_ctor_get(x_1, 2); -lean_inc(x_1772); -x_1773 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1772, x_1770, x_1759); -lean_dec(x_1770); -if (lean_obj_tag(x_1773) == 0) -{ -lean_object* x_1774; lean_object* x_1775; -lean_inc(x_1771); -x_1774 = l_Lean_Name_append___main(x_1759, x_1771); -lean_inc(x_1759); -x_1775 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1759, x_3, x_4, x_5, x_6, x_1769); -if (lean_obj_tag(x_1775) == 0) -{ -lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; -x_1776 = lean_ctor_get(x_1775, 0); -lean_inc(x_1776); -x_1777 = lean_ctor_get(x_1775, 1); -lean_inc(x_1777); -lean_dec(x_1775); -x_1778 = l_Lean_ConstantInfo_type(x_1776); -x_1779 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1; +lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; +lean_dec(x_1585); +lean_dec(x_1584); +lean_dec(x_1583); +lean_dec(x_1572); +lean_dec(x_10); +x_1804 = lean_ctor_get(x_1586, 0); +lean_inc(x_1804); +lean_dec(x_1586); +x_1805 = lean_box(0); +x_1806 = l_Lean_mkConst(x_1804, x_1805); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1778); -x_1780 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1778, x_1779, x_3, x_4, x_5, x_6, x_1777); -if (lean_obj_tag(x_1780) == 0) +lean_inc(x_1806); +x_1807 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1806, x_4, x_5, x_6, x_7, x_1582); +if (lean_obj_tag(x_1807) == 0) { -lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; lean_object* x_1871; uint8_t x_1872; -x_1781 = lean_ctor_get(x_1780, 0); -lean_inc(x_1781); -x_1782 = lean_ctor_get(x_1780, 1); -lean_inc(x_1782); -lean_dec(x_1780); -x_1871 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_1872 = l_Lean_Expr_isConstOf(x_1781, x_1871); -if (x_1872 == 0) -{ -lean_object* x_1873; uint8_t x_1874; -x_1873 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_1874 = l_Lean_Expr_isConstOf(x_1781, x_1873); -lean_dec(x_1781); -if (x_1874 == 0) -{ -lean_object* x_1875; -lean_dec(x_1778); -lean_dec(x_1776); -lean_dec(x_1774); -lean_dec(x_1772); -lean_dec(x_1766); -lean_dec(x_1759); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_9); -x_1875 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_9, x_3, x_4, x_5, x_6, x_1782); -if (lean_obj_tag(x_1875) == 0) -{ -lean_object* x_1876; -x_1876 = lean_ctor_get(x_1875, 0); -lean_inc(x_1876); -if (lean_obj_tag(x_1876) == 0) -{ -lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; -lean_dec(x_1); -x_1877 = lean_ctor_get(x_1875, 1); -lean_inc(x_1877); -lean_dec(x_1875); -x_1878 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1878, 0, x_1771); -x_1879 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1880 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1880, 0, x_1879); -lean_ctor_set(x_1880, 1, x_1878); -x_1881 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13; -x_1882 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1882, 0, x_1880); -lean_ctor_set(x_1882, 1, x_1881); -x_1883 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1884 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1884, 0, x_1883); -x_1885 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1885, 0, x_1884); -x_1886 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1886, 0, x_1882); -lean_ctor_set(x_1886, 1, x_1885); -x_1887 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1888 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1888, 0, x_1886); -lean_ctor_set(x_1888, 1, x_1887); -x_1889 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1888, x_3, x_4, x_5, x_6, x_1877); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1889; +lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; +x_1808 = lean_ctor_get(x_1807, 0); +lean_inc(x_1808); +x_1809 = lean_ctor_get(x_1807, 1); +lean_inc(x_1809); +lean_dec(x_1807); +x_1810 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__50___boxed), 10, 3); +lean_closure_set(x_1810, 0, x_1); +lean_closure_set(x_1810, 1, x_1579); +lean_closure_set(x_1810, 2, x_1806); +x_1811 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1808, x_1810, x_4, x_5, x_6, x_7, x_1809); +return x_1811; } else { -lean_object* x_1890; lean_object* x_1891; -lean_dec(x_1771); +uint8_t x_1812; +lean_dec(x_1806); +lean_dec(x_1579); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1812 = !lean_is_exclusive(x_1807); +if (x_1812 == 0) +{ +return x_1807; +} +else +{ +lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; +x_1813 = lean_ctor_get(x_1807, 0); +x_1814 = lean_ctor_get(x_1807, 1); +lean_inc(x_1814); +lean_inc(x_1813); +lean_dec(x_1807); +x_1815 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1815, 0, x_1813); +lean_ctor_set(x_1815, 1, x_1814); +return x_1815; +} +} +} +} +else +{ +lean_object* x_1816; +lean_dec(x_1561); +lean_dec(x_1); +x_1816 = lean_box(0); +x_1562 = x_1816; +goto block_1571; +} +block_1571: +{ +lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; +lean_dec(x_1562); +x_1563 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1564 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1564, 0, x_1563); +x_1565 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1565, 0, x_1564); +x_1566 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_1567 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1567, 0, x_1566); +lean_ctor_set(x_1567, 1, x_1565); +x_1568 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1569 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1569, 0, x_1567); +lean_ctor_set(x_1569, 1, x_1568); +x_1570 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1569, x_4, x_5, x_6, x_7, x_1560); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1570; +} +} +case 9: +{ +lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; +x_1817 = lean_ctor_get(x_9, 1); +lean_inc(x_1817); lean_dec(x_9); -x_1890 = lean_ctor_get(x_1875, 1); -lean_inc(x_1890); -lean_dec(x_1875); -x_1891 = lean_ctor_get(x_1876, 0); -lean_inc(x_1891); -lean_dec(x_1876); -x_2 = x_1891; -x_7 = x_1890; +x_1818 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_1818) == 4) +{ +lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; lean_object* x_1835; lean_object* x_1836; lean_object* x_1837; lean_object* x_1838; lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; lean_object* x_1843; +x_1829 = lean_ctor_get(x_1818, 0); +lean_inc(x_1829); +lean_dec(x_1818); +x_1830 = lean_unsigned_to_nat(0u); +x_1831 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_1830); +x_1832 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_1831); +x_1833 = lean_mk_array(x_1831, x_1832); +x_1834 = lean_unsigned_to_nat(1u); +x_1835 = lean_nat_sub(x_1831, x_1834); +lean_dec(x_1831); +lean_inc(x_10); +x_1836 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_1833, x_1835); +x_1837 = lean_st_ref_get(x_7, x_1817); +x_1838 = lean_ctor_get(x_1837, 0); +lean_inc(x_1838); +x_1839 = lean_ctor_get(x_1837, 1); +lean_inc(x_1839); +lean_dec(x_1837); +x_1840 = lean_ctor_get(x_1838, 0); +lean_inc(x_1840); +lean_dec(x_1838); +x_1841 = lean_ctor_get(x_1, 0); +lean_inc(x_1841); +x_1842 = lean_ctor_get(x_1, 2); +lean_inc(x_1842); +x_1843 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_1842, x_1840, x_1829); +if (lean_obj_tag(x_1843) == 0) +{ +lean_object* x_1844; lean_object* x_1845; +lean_inc(x_1841); +x_1844 = l_Lean_Name_append___main(x_1829, x_1841); +lean_inc(x_1829); +x_1845 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_1829, x_4, x_5, x_6, x_7, x_1839); +if (lean_obj_tag(x_1845) == 0) +{ +lean_object* x_1846; lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; +x_1846 = lean_ctor_get(x_1845, 0); +lean_inc(x_1846); +x_1847 = lean_ctor_get(x_1845, 1); +lean_inc(x_1847); +lean_dec(x_1845); +x_1848 = l_Lean_ConstantInfo_type(x_1846); +x_1849 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1848); +x_1850 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1848, x_1849, x_4, x_5, x_6, x_7, x_1847); +if (lean_obj_tag(x_1850) == 0) +{ +lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; lean_object* x_2024; uint8_t x_2025; +x_1851 = lean_ctor_get(x_1850, 0); +lean_inc(x_1851); +x_1852 = lean_ctor_get(x_1850, 1); +lean_inc(x_1852); +lean_dec(x_1850); +x_2024 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_2025 = l_Lean_Expr_isConstOf(x_1851, x_2024); +if (x_2025 == 0) +{ +lean_object* x_2026; uint8_t x_2027; +x_2026 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_2027 = l_Lean_Expr_isConstOf(x_1851, x_2026); +lean_dec(x_1851); +if (x_2027 == 0) +{ +lean_object* x_2028; +lean_dec(x_1848); +lean_dec(x_1846); +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1840); +lean_dec(x_1836); +lean_dec(x_1829); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_2028 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_1852); +if (lean_obj_tag(x_2028) == 0) +{ +lean_object* x_2029; +x_2029 = lean_ctor_get(x_2028, 0); +lean_inc(x_2029); +if (lean_obj_tag(x_2029) == 0) +{ +lean_object* x_2030; lean_object* x_2031; lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; lean_object* x_2035; lean_object* x_2036; lean_object* x_2037; lean_object* x_2038; lean_object* x_2039; lean_object* x_2040; lean_object* x_2041; lean_object* x_2042; +lean_dec(x_1); +x_2030 = lean_ctor_get(x_2028, 1); +lean_inc(x_2030); +lean_dec(x_2028); +x_2031 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2031, 0, x_1841); +x_2032 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_2033 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2033, 0, x_2032); +lean_ctor_set(x_2033, 1, x_2031); +x_2034 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_2035 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2035, 0, x_2033); +lean_ctor_set(x_2035, 1, x_2034); +x_2036 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2037 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2037, 0, x_2036); +x_2038 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2038, 0, x_2037); +x_2039 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2039, 0, x_2035); +lean_ctor_set(x_2039, 1, x_2038); +x_2040 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2041 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2041, 0, x_2039); +lean_ctor_set(x_2041, 1, x_2040); +x_2042 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2041, x_4, x_5, x_6, x_7, x_2030); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2042; +} +else +{ +lean_object* x_2043; lean_object* x_2044; uint8_t x_2045; +lean_dec(x_1841); +lean_dec(x_10); +x_2043 = lean_ctor_get(x_2028, 1); +lean_inc(x_2043); +lean_dec(x_2028); +x_2044 = lean_ctor_get(x_2029, 0); +lean_inc(x_2044); +lean_dec(x_2029); +x_2045 = 0; +x_2 = x_2044; +x_3 = x_2045; +x_8 = x_2043; goto _start; } } else { -uint8_t x_1893; -lean_dec(x_1771); -lean_dec(x_9); +uint8_t x_2047; +lean_dec(x_1841); +lean_dec(x_10); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_1893 = !lean_is_exclusive(x_1875); -if (x_1893 == 0) +x_2047 = !lean_is_exclusive(x_2028); +if (x_2047 == 0) { -return x_1875; +return x_2028; } else { -lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; -x_1894 = lean_ctor_get(x_1875, 0); -x_1895 = lean_ctor_get(x_1875, 1); -lean_inc(x_1895); -lean_inc(x_1894); -lean_dec(x_1875); -x_1896 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1896, 0, x_1894); -lean_ctor_set(x_1896, 1, x_1895); -return x_1896; +lean_object* x_2048; lean_object* x_2049; lean_object* x_2050; +x_2048 = lean_ctor_get(x_2028, 0); +x_2049 = lean_ctor_get(x_2028, 1); +lean_inc(x_2049); +lean_inc(x_2048); +lean_dec(x_2028); +x_2050 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2050, 0, x_2048); +lean_ctor_set(x_2050, 1, x_2049); +return x_2050; } } } else { -lean_object* x_1897; -x_1897 = lean_box(0); -x_1783 = x_1897; -goto block_1870; +lean_object* x_2051; +x_2051 = lean_box(0); +x_1853 = x_2051; +goto block_2023; } } else { -lean_object* x_1898; -lean_dec(x_1781); -x_1898 = lean_box(0); -x_1783 = x_1898; -goto block_1870; +lean_object* x_2052; +lean_dec(x_1851); +x_2052 = lean_box(0); +x_1853 = x_2052; +goto block_2023; } -block_1870: +block_2023: { -lean_object* x_1784; -lean_dec(x_1783); -x_1784 = l_Lean_ConstantInfo_value_x3f(x_1776); -lean_dec(x_1776); -if (lean_obj_tag(x_1784) == 0) +lean_object* x_1854; +lean_dec(x_1853); +x_1854 = l_Lean_ConstantInfo_value_x3f(x_1846); +lean_dec(x_1846); +if (lean_obj_tag(x_1854) == 0) { -lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; -lean_dec(x_1778); -lean_dec(x_1774); -lean_dec(x_1772); -lean_dec(x_1766); -lean_dec(x_1759); -lean_dec(x_1); -x_1785 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_1785, 0, x_1771); -x_1786 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; -x_1787 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1787, 0, x_1786); -lean_ctor_set(x_1787, 1, x_1785); -x_1788 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; -x_1789 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1789, 0, x_1787); -lean_ctor_set(x_1789, 1, x_1788); -x_1790 = lean_expr_dbg_to_string(x_9); -lean_dec(x_9); -x_1791 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1791, 0, x_1790); -x_1792 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1792, 0, x_1791); -x_1793 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1793, 0, x_1789); -lean_ctor_set(x_1793, 1, x_1792); -x_1794 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1795 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1795, 0, x_1793); -lean_ctor_set(x_1795, 1, x_1794); -x_1796 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1795, x_3, x_4, x_5, x_6, x_1782); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1796; -} -else -{ -lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; -lean_dec(x_1771); -lean_dec(x_9); -x_1797 = lean_ctor_get(x_1784, 0); -lean_inc(x_1797); -lean_dec(x_1784); -x_1798 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1797); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1); -x_1799 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1798, x_3, x_4, x_5, x_6, x_1782); -if (lean_obj_tag(x_1799) == 0) -{ -lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1819; lean_object* x_1820; lean_object* x_1821; -x_1800 = lean_ctor_get(x_1799, 0); -lean_inc(x_1800); -x_1801 = lean_ctor_get(x_1799, 1); -lean_inc(x_1801); -lean_dec(x_1799); -x_1819 = l_Lean_mkAppStx___closed__4; -lean_inc(x_1); -x_1820 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33___boxed), 9, 2); -lean_closure_set(x_1820, 0, x_1); -lean_closure_set(x_1820, 1, x_1819); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_1821 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1778, x_1820, x_3, x_4, x_5, x_6, x_1801); -if (lean_obj_tag(x_1821) == 0) -{ -lean_object* x_1822; lean_object* x_1823; lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; uint8_t x_1827; lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; -x_1822 = lean_ctor_get(x_1821, 0); -lean_inc(x_1822); -x_1823 = lean_ctor_get(x_1821, 1); -lean_inc(x_1823); -lean_dec(x_1821); -x_1824 = lean_box(0); -lean_inc(x_1774); -x_1825 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_1825, 0, x_1774); -lean_ctor_set(x_1825, 1, x_1824); -lean_ctor_set(x_1825, 2, x_1822); -x_1826 = lean_box(0); -x_1827 = 0; -x_1828 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_1828, 0, x_1825); -lean_ctor_set(x_1828, 1, x_1800); -lean_ctor_set(x_1828, 2, x_1826); -lean_ctor_set_uint8(x_1828, sizeof(void*)*3, x_1827); -x_1829 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1829, 0, x_1828); -x_1830 = lean_st_ref_get(x_6, x_1823); -x_1831 = lean_ctor_get(x_1830, 0); -lean_inc(x_1831); -x_1832 = lean_ctor_get(x_1830, 1); -lean_inc(x_1832); -lean_dec(x_1830); -x_1833 = lean_ctor_get(x_1831, 0); -lean_inc(x_1833); -lean_dec(x_1831); -x_1834 = l_Lean_Environment_addAndCompile(x_1833, x_1824, x_1829); +lean_object* x_1855; lean_object* x_1856; lean_object* x_1857; lean_object* x_1858; lean_object* x_1859; lean_object* x_1860; lean_object* x_1861; lean_object* x_1862; lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; lean_object* x_1866; +lean_dec(x_1848); +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1840); +lean_dec(x_1836); lean_dec(x_1829); -if (lean_obj_tag(x_1834) == 0) -{ -lean_object* x_1835; lean_object* x_1836; lean_object* x_1837; lean_object* x_1838; -lean_dec(x_1774); -lean_dec(x_1772); -lean_dec(x_1766); -lean_dec(x_1759); lean_dec(x_1); -x_1835 = lean_ctor_get(x_1834, 0); -lean_inc(x_1835); -lean_dec(x_1834); -x_1836 = l_Lean_KernelException_toMessageData(x_1835, x_1824); -x_1837 = lean_ctor_get(x_5, 3); -lean_inc(x_1837); -x_1838 = l_Lean_MessageData_toString(x_1836, x_1832); -if (lean_obj_tag(x_1838) == 0) -{ -lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; lean_object* x_1843; uint8_t x_1844; -lean_dec(x_1837); -x_1839 = lean_ctor_get(x_1838, 0); -lean_inc(x_1839); -x_1840 = lean_ctor_get(x_1838, 1); -lean_inc(x_1840); -lean_dec(x_1838); -x_1841 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1841, 0, x_1839); -x_1842 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1842, 0, x_1841); -x_1843 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1842, x_3, x_4, x_5, x_6, x_1840); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1844 = !lean_is_exclusive(x_1843); -if (x_1844 == 0) -{ -return x_1843; -} -else -{ -lean_object* x_1845; lean_object* x_1846; lean_object* x_1847; -x_1845 = lean_ctor_get(x_1843, 0); -x_1846 = lean_ctor_get(x_1843, 1); -lean_inc(x_1846); -lean_inc(x_1845); -lean_dec(x_1843); -x_1847 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1847, 0, x_1845); -lean_ctor_set(x_1847, 1, x_1846); -return x_1847; -} -} -else -{ -uint8_t x_1848; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_1848 = !lean_is_exclusive(x_1838); -if (x_1848 == 0) -{ -lean_object* x_1849; lean_object* x_1850; lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; -x_1849 = lean_ctor_get(x_1838, 0); -x_1850 = lean_io_error_to_string(x_1849); -x_1851 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1851, 0, x_1850); -x_1852 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1852, 0, x_1851); -x_1853 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1853, 0, x_1837); -lean_ctor_set(x_1853, 1, x_1852); -lean_ctor_set(x_1838, 0, x_1853); -return x_1838; -} -else -{ -lean_object* x_1854; lean_object* x_1855; lean_object* x_1856; lean_object* x_1857; lean_object* x_1858; lean_object* x_1859; lean_object* x_1860; -x_1854 = lean_ctor_get(x_1838, 0); -x_1855 = lean_ctor_get(x_1838, 1); -lean_inc(x_1855); -lean_inc(x_1854); -lean_dec(x_1838); -x_1856 = lean_io_error_to_string(x_1854); -x_1857 = lean_alloc_ctor(2, 1, 0); +x_1855 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1855, 0, x_1841); +x_1856 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_1857 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1857, 0, x_1856); -x_1858 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1858, 0, x_1857); -x_1859 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1859, 0, x_1837); +lean_ctor_set(x_1857, 1, x_1855); +x_1858 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_1859 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1859, 0, x_1857); lean_ctor_set(x_1859, 1, x_1858); -x_1860 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1860, 0, x_1859); -lean_ctor_set(x_1860, 1, x_1855); -return x_1860; -} -} -} -else -{ -lean_object* x_1861; -x_1861 = lean_ctor_get(x_1834, 0); -lean_inc(x_1861); -lean_dec(x_1834); -x_1802 = x_1861; -x_1803 = x_1832; -goto block_1818; -} -} -else -{ -uint8_t x_1862; -lean_dec(x_1800); -lean_dec(x_1774); -lean_dec(x_1772); -lean_dec(x_1766); -lean_dec(x_1759); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1862 = !lean_is_exclusive(x_1821); -if (x_1862 == 0) -{ -return x_1821; -} -else -{ -lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; -x_1863 = lean_ctor_get(x_1821, 0); -x_1864 = lean_ctor_get(x_1821, 1); -lean_inc(x_1864); -lean_inc(x_1863); -lean_dec(x_1821); -x_1865 = lean_alloc_ctor(1, 2, 0); +x_1860 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1861 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1861, 0, x_1860); +x_1862 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1862, 0, x_1861); +x_1863 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1863, 0, x_1859); +lean_ctor_set(x_1863, 1, x_1862); +x_1864 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1865 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1865, 0, x_1863); lean_ctor_set(x_1865, 1, x_1864); -return x_1865; -} -} -block_1818: -{ -lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; -lean_inc(x_1774); -x_1804 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1772, x_1802, x_1759, x_1774); -x_1805 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1804, x_3, x_4, x_5, x_6, x_1803); -x_1806 = lean_ctor_get(x_1805, 1); -lean_inc(x_1806); -lean_dec(x_1805); -x_1807 = lean_box(0); -x_1808 = l_Lean_mkConst(x_1774, x_1807); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1808); -x_1809 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1808, x_3, x_4, x_5, x_6, x_1806); -if (lean_obj_tag(x_1809) == 0) -{ -lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; -x_1810 = lean_ctor_get(x_1809, 0); -lean_inc(x_1810); -x_1811 = lean_ctor_get(x_1809, 1); -lean_inc(x_1811); -lean_dec(x_1809); -x_1812 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32___boxed), 11, 4); -lean_closure_set(x_1812, 0, x_1); -lean_closure_set(x_1812, 1, x_1779); -lean_closure_set(x_1812, 2, x_1766); -lean_closure_set(x_1812, 3, x_1808); -x_1813 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1810, x_1812, x_3, x_4, x_5, x_6, x_1811); -return x_1813; -} -else -{ -uint8_t x_1814; -lean_dec(x_1808); -lean_dec(x_1766); +x_1866 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1865, x_4, x_5, x_6, x_7, x_1852); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1814 = !lean_is_exclusive(x_1809); -if (x_1814 == 0) -{ -return x_1809; +return x_1866; } else { -lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; -x_1815 = lean_ctor_get(x_1809, 0); -x_1816 = lean_ctor_get(x_1809, 1); -lean_inc(x_1816); -lean_inc(x_1815); -lean_dec(x_1809); -x_1817 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1817, 0, x_1815); -lean_ctor_set(x_1817, 1, x_1816); -return x_1817; -} -} -} -} -else -{ -uint8_t x_1866; -lean_dec(x_1778); -lean_dec(x_1774); -lean_dec(x_1772); -lean_dec(x_1766); -lean_dec(x_1759); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1866 = !lean_is_exclusive(x_1799); -if (x_1866 == 0) -{ -return x_1799; -} -else -{ -lean_object* x_1867; lean_object* x_1868; lean_object* x_1869; -x_1867 = lean_ctor_get(x_1799, 0); -x_1868 = lean_ctor_get(x_1799, 1); -lean_inc(x_1868); +lean_object* x_1867; lean_object* x_1868; +lean_dec(x_1841); +lean_dec(x_10); +x_1867 = lean_ctor_get(x_1854, 0); lean_inc(x_1867); -lean_dec(x_1799); -x_1869 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1869, 0, x_1867); -lean_ctor_set(x_1869, 1, x_1868); -return x_1869; -} -} -} -} -} -else +lean_dec(x_1854); +x_1868 = l_Lean_Environment_getModuleIdxFor_x3f(x_1840, x_1829); +lean_dec(x_1840); +if (lean_obj_tag(x_1868) == 0) { -uint8_t x_1899; -lean_dec(x_1778); -lean_dec(x_1776); -lean_dec(x_1774); -lean_dec(x_1772); -lean_dec(x_1771); -lean_dec(x_1766); -lean_dec(x_1759); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1899 = !lean_is_exclusive(x_1780); -if (x_1899 == 0) -{ -return x_1780; -} -else -{ -lean_object* x_1900; lean_object* x_1901; lean_object* x_1902; -x_1900 = lean_ctor_get(x_1780, 0); -x_1901 = lean_ctor_get(x_1780, 1); -lean_inc(x_1901); -lean_inc(x_1900); -lean_dec(x_1780); -x_1902 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1902, 0, x_1900); -lean_ctor_set(x_1902, 1, x_1901); -return x_1902; -} -} -} -else -{ -uint8_t x_1903; -lean_dec(x_1774); -lean_dec(x_1772); -lean_dec(x_1771); -lean_dec(x_1766); -lean_dec(x_1759); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1903 = !lean_is_exclusive(x_1775); -if (x_1903 == 0) -{ -return x_1775; -} -else -{ -lean_object* x_1904; lean_object* x_1905; lean_object* x_1906; -x_1904 = lean_ctor_get(x_1775, 0); -x_1905 = lean_ctor_get(x_1775, 1); -lean_inc(x_1905); -lean_inc(x_1904); -lean_dec(x_1775); -x_1906 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1906, 0, x_1904); -lean_ctor_set(x_1906, 1, x_1905); -return x_1906; -} -} -} -else -{ -lean_object* x_1907; lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; -lean_dec(x_1772); -lean_dec(x_1771); -lean_dec(x_1759); -lean_dec(x_9); -x_1907 = lean_ctor_get(x_1773, 0); -lean_inc(x_1907); -lean_dec(x_1773); -x_1908 = lean_box(0); -x_1909 = l_Lean_mkConst(x_1907, x_1908); +lean_object* x_1869; lean_object* x_1870; lean_object* x_1886; uint8_t x_1887; lean_object* x_1888; +x_1886 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1867); +x_1887 = 0; +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_1909); -x_1910 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1909, x_3, x_4, x_5, x_6, x_1769); -if (lean_obj_tag(x_1910) == 0) +lean_inc(x_1); +x_1888 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1886, x_1887, x_4, x_5, x_6, x_7, x_1852); +if (lean_obj_tag(x_1888) == 0) { -lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; -x_1911 = lean_ctor_get(x_1910, 0); +lean_object* x_1889; lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; +x_1889 = lean_ctor_get(x_1888, 0); +lean_inc(x_1889); +x_1890 = lean_ctor_get(x_1888, 1); +lean_inc(x_1890); +lean_dec(x_1888); +x_1891 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_1892 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__52___boxed), 9, 2); +lean_closure_set(x_1892, 0, x_1); +lean_closure_set(x_1892, 1, x_1891); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_1893 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1848, x_1892, x_4, x_5, x_6, x_7, x_1890); +if (lean_obj_tag(x_1893) == 0) +{ +lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; lean_object* x_1900; lean_object* x_1901; lean_object* x_1902; lean_object* x_1903; lean_object* x_1904; lean_object* x_1905; +x_1894 = lean_ctor_get(x_1893, 0); +lean_inc(x_1894); +x_1895 = lean_ctor_get(x_1893, 1); +lean_inc(x_1895); +lean_dec(x_1893); +x_1896 = lean_box(0); +lean_inc(x_1844); +x_1897 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_1897, 0, x_1844); +lean_ctor_set(x_1897, 1, x_1896); +lean_ctor_set(x_1897, 2, x_1894); +x_1898 = lean_box(0); +x_1899 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_1899, 0, x_1897); +lean_ctor_set(x_1899, 1, x_1889); +lean_ctor_set(x_1899, 2, x_1898); +lean_ctor_set_uint8(x_1899, sizeof(void*)*3, x_1887); +x_1900 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1900, 0, x_1899); +x_1901 = lean_st_ref_get(x_7, x_1895); +x_1902 = lean_ctor_get(x_1901, 0); +lean_inc(x_1902); +x_1903 = lean_ctor_get(x_1901, 1); +lean_inc(x_1903); +lean_dec(x_1901); +x_1904 = lean_ctor_get(x_1902, 0); +lean_inc(x_1904); +lean_dec(x_1902); +x_1905 = l_Lean_Environment_addAndCompile(x_1904, x_1896, x_1900); +lean_dec(x_1900); +if (lean_obj_tag(x_1905) == 0) +{ +lean_object* x_1906; lean_object* x_1907; lean_object* x_1908; lean_object* x_1909; +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1836); +lean_dec(x_1829); +lean_dec(x_1); +x_1906 = lean_ctor_get(x_1905, 0); +lean_inc(x_1906); +lean_dec(x_1905); +x_1907 = l_Lean_KernelException_toMessageData(x_1906, x_1896); +x_1908 = lean_ctor_get(x_6, 3); +lean_inc(x_1908); +x_1909 = l_Lean_MessageData_toString(x_1907, x_1903); +if (lean_obj_tag(x_1909) == 0) +{ +lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; uint8_t x_1915; +lean_dec(x_1908); +x_1910 = lean_ctor_get(x_1909, 0); +lean_inc(x_1910); +x_1911 = lean_ctor_get(x_1909, 1); lean_inc(x_1911); -x_1912 = lean_ctor_get(x_1910, 1); -lean_inc(x_1912); -lean_dec(x_1910); -x_1913 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34___boxed), 10, 3); -lean_closure_set(x_1913, 0, x_1); -lean_closure_set(x_1913, 1, x_1766); -lean_closure_set(x_1913, 2, x_1909); -x_1914 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1911, x_1913, x_3, x_4, x_5, x_6, x_1912); +lean_dec(x_1909); +x_1912 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1912, 0, x_1910); +x_1913 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1913, 0, x_1912); +x_1914 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1913, x_4, x_5, x_6, x_7, x_1911); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1915 = !lean_is_exclusive(x_1914); +if (x_1915 == 0) +{ return x_1914; } else { -uint8_t x_1915; -lean_dec(x_1909); -lean_dec(x_1766); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_1915 = !lean_is_exclusive(x_1910); -if (x_1915 == 0) -{ -return x_1910; -} -else -{ lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; -x_1916 = lean_ctor_get(x_1910, 0); -x_1917 = lean_ctor_get(x_1910, 1); +x_1916 = lean_ctor_get(x_1914, 0); +x_1917 = lean_ctor_get(x_1914, 1); lean_inc(x_1917); lean_inc(x_1916); -lean_dec(x_1910); +lean_dec(x_1914); x_1918 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1918, 0, x_1916); lean_ctor_set(x_1918, 1, x_1917); return x_1918; } } +else +{ +uint8_t x_1919; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1919 = !lean_is_exclusive(x_1909); +if (x_1919 == 0) +{ +lean_object* x_1920; lean_object* x_1921; lean_object* x_1922; lean_object* x_1923; lean_object* x_1924; +x_1920 = lean_ctor_get(x_1909, 0); +x_1921 = lean_io_error_to_string(x_1920); +x_1922 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1922, 0, x_1921); +x_1923 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1923, 0, x_1922); +x_1924 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1924, 0, x_1908); +lean_ctor_set(x_1924, 1, x_1923); +lean_ctor_set(x_1909, 0, x_1924); +return x_1909; +} +else +{ +lean_object* x_1925; lean_object* x_1926; lean_object* x_1927; lean_object* x_1928; lean_object* x_1929; lean_object* x_1930; lean_object* x_1931; +x_1925 = lean_ctor_get(x_1909, 0); +x_1926 = lean_ctor_get(x_1909, 1); +lean_inc(x_1926); +lean_inc(x_1925); +lean_dec(x_1909); +x_1927 = lean_io_error_to_string(x_1925); +x_1928 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1928, 0, x_1927); +x_1929 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1929, 0, x_1928); +x_1930 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1930, 0, x_1908); +lean_ctor_set(x_1930, 1, x_1929); +x_1931 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1931, 0, x_1930); +lean_ctor_set(x_1931, 1, x_1926); +return x_1931; +} } } else { -lean_object* x_1919; -lean_dec(x_1748); -lean_dec(x_1); -x_1919 = lean_box(0); -x_1749 = x_1919; -goto block_1758; +lean_object* x_1932; +x_1932 = lean_ctor_get(x_1905, 0); +lean_inc(x_1932); +lean_dec(x_1905); +x_1869 = x_1932; +x_1870 = x_1903; +goto block_1885; } -block_1758: +} +else { -lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; -lean_dec(x_1749); -x_1750 = lean_expr_dbg_to_string(x_9); +uint8_t x_1933; +lean_dec(x_1889); +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1836); +lean_dec(x_1829); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1933 = !lean_is_exclusive(x_1893); +if (x_1933 == 0) +{ +return x_1893; +} +else +{ +lean_object* x_1934; lean_object* x_1935; lean_object* x_1936; +x_1934 = lean_ctor_get(x_1893, 0); +x_1935 = lean_ctor_get(x_1893, 1); +lean_inc(x_1935); +lean_inc(x_1934); +lean_dec(x_1893); +x_1936 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1936, 0, x_1934); +lean_ctor_set(x_1936, 1, x_1935); +return x_1936; +} +} +} +else +{ +uint8_t x_1937; +lean_dec(x_1848); +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1836); +lean_dec(x_1829); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1937 = !lean_is_exclusive(x_1888); +if (x_1937 == 0) +{ +return x_1888; +} +else +{ +lean_object* x_1938; lean_object* x_1939; lean_object* x_1940; +x_1938 = lean_ctor_get(x_1888, 0); +x_1939 = lean_ctor_get(x_1888, 1); +lean_inc(x_1939); +lean_inc(x_1938); +lean_dec(x_1888); +x_1940 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1940, 0, x_1938); +lean_ctor_set(x_1940, 1, x_1939); +return x_1940; +} +} +block_1885: +{ +lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; +lean_inc(x_1844); +x_1871 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1842, x_1869, x_1829, x_1844); +x_1872 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1871, x_4, x_5, x_6, x_7, x_1870); +x_1873 = lean_ctor_get(x_1872, 1); +lean_inc(x_1873); +lean_dec(x_1872); +x_1874 = lean_box(0); +x_1875 = l_Lean_mkConst(x_1844, x_1874); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1875); +x_1876 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1875, x_4, x_5, x_6, x_7, x_1873); +if (lean_obj_tag(x_1876) == 0) +{ +lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; +x_1877 = lean_ctor_get(x_1876, 0); +lean_inc(x_1877); +x_1878 = lean_ctor_get(x_1876, 1); +lean_inc(x_1878); +lean_dec(x_1876); +x_1879 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__51___boxed), 11, 4); +lean_closure_set(x_1879, 0, x_1); +lean_closure_set(x_1879, 1, x_1849); +lean_closure_set(x_1879, 2, x_1836); +lean_closure_set(x_1879, 3, x_1875); +x_1880 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1877, x_1879, x_4, x_5, x_6, x_7, x_1878); +return x_1880; +} +else +{ +uint8_t x_1881; +lean_dec(x_1875); +lean_dec(x_1836); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1881 = !lean_is_exclusive(x_1876); +if (x_1881 == 0) +{ +return x_1876; +} +else +{ +lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; +x_1882 = lean_ctor_get(x_1876, 0); +x_1883 = lean_ctor_get(x_1876, 1); +lean_inc(x_1883); +lean_inc(x_1882); +lean_dec(x_1876); +x_1884 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1884, 0, x_1882); +lean_ctor_set(x_1884, 1, x_1883); +return x_1884; +} +} +} +} +else +{ +lean_dec(x_1868); +if (x_3 == 0) +{ +lean_object* x_1941; lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; uint8_t x_1947; +lean_dec(x_1867); +lean_dec(x_1848); +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1836); +lean_dec(x_1); +x_1941 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1941, 0, x_1829); +x_1942 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_1943 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1943, 0, x_1942); +lean_ctor_set(x_1943, 1, x_1941); +x_1944 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_1945 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1945, 0, x_1943); +lean_ctor_set(x_1945, 1, x_1944); +x_1946 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1945, x_4, x_5, x_6, x_7, x_1852); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1947 = !lean_is_exclusive(x_1946); +if (x_1947 == 0) +{ +return x_1946; +} +else +{ +lean_object* x_1948; lean_object* x_1949; lean_object* x_1950; +x_1948 = lean_ctor_get(x_1946, 0); +x_1949 = lean_ctor_get(x_1946, 1); +lean_inc(x_1949); +lean_inc(x_1948); +lean_dec(x_1946); +x_1950 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1950, 0, x_1948); +lean_ctor_set(x_1950, 1, x_1949); +return x_1950; +} +} +else +{ +lean_object* x_1951; lean_object* x_1952; lean_object* x_1968; uint8_t x_1969; lean_object* x_1970; +x_1968 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_1867); +x_1969 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_1970 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_1968, x_1969, x_4, x_5, x_6, x_7, x_1852); +if (lean_obj_tag(x_1970) == 0) +{ +lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; +x_1971 = lean_ctor_get(x_1970, 0); +lean_inc(x_1971); +x_1972 = lean_ctor_get(x_1970, 1); +lean_inc(x_1972); +lean_dec(x_1970); +x_1973 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_1974 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__56___boxed), 9, 2); +lean_closure_set(x_1974, 0, x_1); +lean_closure_set(x_1974, 1, x_1973); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_1975 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1848, x_1974, x_4, x_5, x_6, x_7, x_1972); +if (lean_obj_tag(x_1975) == 0) +{ +lean_object* x_1976; lean_object* x_1977; lean_object* x_1978; lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; lean_object* x_1982; lean_object* x_1983; lean_object* x_1984; lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; +x_1976 = lean_ctor_get(x_1975, 0); +lean_inc(x_1976); +x_1977 = lean_ctor_get(x_1975, 1); +lean_inc(x_1977); +lean_dec(x_1975); +x_1978 = lean_box(0); +lean_inc(x_1844); +x_1979 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_1979, 0, x_1844); +lean_ctor_set(x_1979, 1, x_1978); +lean_ctor_set(x_1979, 2, x_1976); +x_1980 = lean_box(0); +x_1981 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_1981, 0, x_1979); +lean_ctor_set(x_1981, 1, x_1971); +lean_ctor_set(x_1981, 2, x_1980); +lean_ctor_set_uint8(x_1981, sizeof(void*)*3, x_1969); +x_1982 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1982, 0, x_1981); +x_1983 = lean_st_ref_get(x_7, x_1977); +x_1984 = lean_ctor_get(x_1983, 0); +lean_inc(x_1984); +x_1985 = lean_ctor_get(x_1983, 1); +lean_inc(x_1985); +lean_dec(x_1983); +x_1986 = lean_ctor_get(x_1984, 0); +lean_inc(x_1986); +lean_dec(x_1984); +x_1987 = l_Lean_Environment_addAndCompile(x_1986, x_1978, x_1982); +lean_dec(x_1982); +if (lean_obj_tag(x_1987) == 0) +{ +lean_object* x_1988; lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1836); +lean_dec(x_1829); +lean_dec(x_1); +x_1988 = lean_ctor_get(x_1987, 0); +lean_inc(x_1988); +lean_dec(x_1987); +x_1989 = l_Lean_KernelException_toMessageData(x_1988, x_1978); +x_1990 = lean_ctor_get(x_6, 3); +lean_inc(x_1990); +x_1991 = l_Lean_MessageData_toString(x_1989, x_1985); +if (lean_obj_tag(x_1991) == 0) +{ +lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; lean_object* x_1996; uint8_t x_1997; +lean_dec(x_1990); +x_1992 = lean_ctor_get(x_1991, 0); +lean_inc(x_1992); +x_1993 = lean_ctor_get(x_1991, 1); +lean_inc(x_1993); +lean_dec(x_1991); +x_1994 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1994, 0, x_1992); +x_1995 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1995, 0, x_1994); +x_1996 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1995, x_4, x_5, x_6, x_7, x_1993); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_1997 = !lean_is_exclusive(x_1996); +if (x_1997 == 0) +{ +return x_1996; +} +else +{ +lean_object* x_1998; lean_object* x_1999; lean_object* x_2000; +x_1998 = lean_ctor_get(x_1996, 0); +x_1999 = lean_ctor_get(x_1996, 1); +lean_inc(x_1999); +lean_inc(x_1998); +lean_dec(x_1996); +x_2000 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2000, 0, x_1998); +lean_ctor_set(x_2000, 1, x_1999); +return x_2000; +} +} +else +{ +uint8_t x_2001; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2001 = !lean_is_exclusive(x_1991); +if (x_2001 == 0) +{ +lean_object* x_2002; lean_object* x_2003; lean_object* x_2004; lean_object* x_2005; lean_object* x_2006; +x_2002 = lean_ctor_get(x_1991, 0); +x_2003 = lean_io_error_to_string(x_2002); +x_2004 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2004, 0, x_2003); +x_2005 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2005, 0, x_2004); +x_2006 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2006, 0, x_1990); +lean_ctor_set(x_2006, 1, x_2005); +lean_ctor_set(x_1991, 0, x_2006); +return x_1991; +} +else +{ +lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; lean_object* x_2010; lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; +x_2007 = lean_ctor_get(x_1991, 0); +x_2008 = lean_ctor_get(x_1991, 1); +lean_inc(x_2008); +lean_inc(x_2007); +lean_dec(x_1991); +x_2009 = lean_io_error_to_string(x_2007); +x_2010 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2010, 0, x_2009); +x_2011 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2011, 0, x_2010); +x_2012 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2012, 0, x_1990); +lean_ctor_set(x_2012, 1, x_2011); +x_2013 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2013, 0, x_2012); +lean_ctor_set(x_2013, 1, x_2008); +return x_2013; +} +} +} +else +{ +lean_object* x_2014; +x_2014 = lean_ctor_get(x_1987, 0); +lean_inc(x_2014); +lean_dec(x_1987); +x_1951 = x_2014; +x_1952 = x_1985; +goto block_1967; +} +} +else +{ +uint8_t x_2015; +lean_dec(x_1971); +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1836); +lean_dec(x_1829); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2015 = !lean_is_exclusive(x_1975); +if (x_2015 == 0) +{ +return x_1975; +} +else +{ +lean_object* x_2016; lean_object* x_2017; lean_object* x_2018; +x_2016 = lean_ctor_get(x_1975, 0); +x_2017 = lean_ctor_get(x_1975, 1); +lean_inc(x_2017); +lean_inc(x_2016); +lean_dec(x_1975); +x_2018 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2018, 0, x_2016); +lean_ctor_set(x_2018, 1, x_2017); +return x_2018; +} +} +} +else +{ +uint8_t x_2019; +lean_dec(x_1848); +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1836); +lean_dec(x_1829); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2019 = !lean_is_exclusive(x_1970); +if (x_2019 == 0) +{ +return x_1970; +} +else +{ +lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; +x_2020 = lean_ctor_get(x_1970, 0); +x_2021 = lean_ctor_get(x_1970, 1); +lean_inc(x_2021); +lean_inc(x_2020); +lean_dec(x_1970); +x_2022 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2022, 0, x_2020); +lean_ctor_set(x_2022, 1, x_2021); +return x_2022; +} +} +block_1967: +{ +lean_object* x_1953; lean_object* x_1954; lean_object* x_1955; lean_object* x_1956; lean_object* x_1957; lean_object* x_1958; +lean_inc(x_1844); +x_1953 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_1842, x_1951, x_1829, x_1844); +x_1954 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_1953, x_4, x_5, x_6, x_7, x_1952); +x_1955 = lean_ctor_get(x_1954, 1); +lean_inc(x_1955); +lean_dec(x_1954); +x_1956 = lean_box(0); +x_1957 = l_Lean_mkConst(x_1844, x_1956); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1957); +x_1958 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_1957, x_4, x_5, x_6, x_7, x_1955); +if (lean_obj_tag(x_1958) == 0) +{ +lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; +x_1959 = lean_ctor_get(x_1958, 0); +lean_inc(x_1959); +x_1960 = lean_ctor_get(x_1958, 1); +lean_inc(x_1960); +lean_dec(x_1958); +x_1961 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__55___boxed), 11, 4); +lean_closure_set(x_1961, 0, x_1); +lean_closure_set(x_1961, 1, x_1849); +lean_closure_set(x_1961, 2, x_1836); +lean_closure_set(x_1961, 3, x_1957); +x_1962 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_1959, x_1961, x_4, x_5, x_6, x_7, x_1960); +return x_1962; +} +else +{ +uint8_t x_1963; +lean_dec(x_1957); +lean_dec(x_1836); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_1963 = !lean_is_exclusive(x_1958); +if (x_1963 == 0) +{ +return x_1958; +} +else +{ +lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; +x_1964 = lean_ctor_get(x_1958, 0); +x_1965 = lean_ctor_get(x_1958, 1); +lean_inc(x_1965); +lean_inc(x_1964); +lean_dec(x_1958); +x_1966 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1966, 0, x_1964); +lean_ctor_set(x_1966, 1, x_1965); +return x_1966; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_2053; +lean_dec(x_1848); +lean_dec(x_1846); +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1841); +lean_dec(x_1840); +lean_dec(x_1836); +lean_dec(x_1829); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2053 = !lean_is_exclusive(x_1850); +if (x_2053 == 0) +{ +return x_1850; +} +else +{ +lean_object* x_2054; lean_object* x_2055; lean_object* x_2056; +x_2054 = lean_ctor_get(x_1850, 0); +x_2055 = lean_ctor_get(x_1850, 1); +lean_inc(x_2055); +lean_inc(x_2054); +lean_dec(x_1850); +x_2056 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2056, 0, x_2054); +lean_ctor_set(x_2056, 1, x_2055); +return x_2056; +} +} +} +else +{ +uint8_t x_2057; +lean_dec(x_1844); +lean_dec(x_1842); +lean_dec(x_1841); +lean_dec(x_1840); +lean_dec(x_1836); +lean_dec(x_1829); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2057 = !lean_is_exclusive(x_1845); +if (x_2057 == 0) +{ +return x_1845; +} +else +{ +lean_object* x_2058; lean_object* x_2059; lean_object* x_2060; +x_2058 = lean_ctor_get(x_1845, 0); +x_2059 = lean_ctor_get(x_1845, 1); +lean_inc(x_2059); +lean_inc(x_2058); +lean_dec(x_1845); +x_2060 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2060, 0, x_2058); +lean_ctor_set(x_2060, 1, x_2059); +return x_2060; +} +} +} +else +{ +lean_object* x_2061; lean_object* x_2062; lean_object* x_2063; lean_object* x_2064; +lean_dec(x_1842); +lean_dec(x_1841); +lean_dec(x_1840); +lean_dec(x_1829); +lean_dec(x_10); +x_2061 = lean_ctor_get(x_1843, 0); +lean_inc(x_2061); +lean_dec(x_1843); +x_2062 = lean_box(0); +x_2063 = l_Lean_mkConst(x_2061, x_2062); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2063); +x_2064 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2063, x_4, x_5, x_6, x_7, x_1839); +if (lean_obj_tag(x_2064) == 0) +{ +lean_object* x_2065; lean_object* x_2066; lean_object* x_2067; lean_object* x_2068; +x_2065 = lean_ctor_get(x_2064, 0); +lean_inc(x_2065); +x_2066 = lean_ctor_get(x_2064, 1); +lean_inc(x_2066); +lean_dec(x_2064); +x_2067 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__57___boxed), 10, 3); +lean_closure_set(x_2067, 0, x_1); +lean_closure_set(x_2067, 1, x_1836); +lean_closure_set(x_2067, 2, x_2063); +x_2068 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2065, x_2067, x_4, x_5, x_6, x_7, x_2066); +return x_2068; +} +else +{ +uint8_t x_2069; +lean_dec(x_2063); +lean_dec(x_1836); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2069 = !lean_is_exclusive(x_2064); +if (x_2069 == 0) +{ +return x_2064; +} +else +{ +lean_object* x_2070; lean_object* x_2071; lean_object* x_2072; +x_2070 = lean_ctor_get(x_2064, 0); +x_2071 = lean_ctor_get(x_2064, 1); +lean_inc(x_2071); +lean_inc(x_2070); +lean_dec(x_2064); +x_2072 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2072, 0, x_2070); +lean_ctor_set(x_2072, 1, x_2071); +return x_2072; +} +} +} +} +else +{ +lean_object* x_2073; +lean_dec(x_1818); +lean_dec(x_1); +x_2073 = lean_box(0); +x_1819 = x_2073; +goto block_1828; +} +block_1828: +{ +lean_object* x_1820; lean_object* x_1821; lean_object* x_1822; lean_object* x_1823; lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; +lean_dec(x_1819); +x_1820 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_1821 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1821, 0, x_1820); +x_1822 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1822, 0, x_1821); +x_1823 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_1824 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1824, 0, x_1823); +lean_ctor_set(x_1824, 1, x_1822); +x_1825 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_1826 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1826, 0, x_1824); +lean_ctor_set(x_1826, 1, x_1825); +x_1827 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1826, x_4, x_5, x_6, x_7, x_1817); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_1827; +} +} +case 10: +{ +lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; +x_2074 = lean_ctor_get(x_9, 1); +lean_inc(x_2074); lean_dec(x_9); -x_1751 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1751, 0, x_1750); -x_1752 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1752, 0, x_1751); -x_1753 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; -x_1754 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1754, 0, x_1753); -lean_ctor_set(x_1754, 1, x_1752); -x_1755 = l_Lean_throwUnknownConstant___rarg___closed__5; -x_1756 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_1756, 0, x_1754); -lean_ctor_set(x_1756, 1, x_1755); -x_1757 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_1756, x_3, x_4, x_5, x_6, x_1747); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_1757; -} -} -} -} -else +x_2075 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_2075) == 4) { -uint8_t x_1920; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +lean_object* x_2086; lean_object* x_2087; lean_object* x_2088; lean_object* x_2089; lean_object* x_2090; lean_object* x_2091; lean_object* x_2092; lean_object* x_2093; lean_object* x_2094; lean_object* x_2095; lean_object* x_2096; lean_object* x_2097; lean_object* x_2098; lean_object* x_2099; lean_object* x_2100; +x_2086 = lean_ctor_get(x_2075, 0); +lean_inc(x_2086); +lean_dec(x_2075); +x_2087 = lean_unsigned_to_nat(0u); +x_2088 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_2087); +x_2089 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_2088); +x_2090 = lean_mk_array(x_2088, x_2089); +x_2091 = lean_unsigned_to_nat(1u); +x_2092 = lean_nat_sub(x_2088, x_2091); +lean_dec(x_2088); +lean_inc(x_10); +x_2093 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_2090, x_2092); +x_2094 = lean_st_ref_get(x_7, x_2074); +x_2095 = lean_ctor_get(x_2094, 0); +lean_inc(x_2095); +x_2096 = lean_ctor_get(x_2094, 1); +lean_inc(x_2096); +lean_dec(x_2094); +x_2097 = lean_ctor_get(x_2095, 0); +lean_inc(x_2097); +lean_dec(x_2095); +x_2098 = lean_ctor_get(x_1, 0); +lean_inc(x_2098); +x_2099 = lean_ctor_get(x_1, 2); +lean_inc(x_2099); +x_2100 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_2099, x_2097, x_2086); +if (lean_obj_tag(x_2100) == 0) +{ +lean_object* x_2101; lean_object* x_2102; +lean_inc(x_2098); +x_2101 = l_Lean_Name_append___main(x_2086, x_2098); +lean_inc(x_2086); +x_2102 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_2086, x_4, x_5, x_6, x_7, x_2096); +if (lean_obj_tag(x_2102) == 0) +{ +lean_object* x_2103; lean_object* x_2104; lean_object* x_2105; lean_object* x_2106; lean_object* x_2107; +x_2103 = lean_ctor_get(x_2102, 0); +lean_inc(x_2103); +x_2104 = lean_ctor_get(x_2102, 1); +lean_inc(x_2104); +lean_dec(x_2102); +x_2105 = l_Lean_ConstantInfo_type(x_2103); +x_2106 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2105); +x_2107 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2105, x_2106, x_4, x_5, x_6, x_7, x_2104); +if (lean_obj_tag(x_2107) == 0) +{ +lean_object* x_2108; lean_object* x_2109; lean_object* x_2110; lean_object* x_2281; uint8_t x_2282; +x_2108 = lean_ctor_get(x_2107, 0); +lean_inc(x_2108); +x_2109 = lean_ctor_get(x_2107, 1); +lean_inc(x_2109); +lean_dec(x_2107); +x_2281 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_2282 = l_Lean_Expr_isConstOf(x_2108, x_2281); +if (x_2282 == 0) +{ +lean_object* x_2283; uint8_t x_2284; +x_2283 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_2284 = l_Lean_Expr_isConstOf(x_2108, x_2283); +lean_dec(x_2108); +if (x_2284 == 0) +{ +lean_object* x_2285; +lean_dec(x_2105); +lean_dec(x_2103); +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2097); +lean_dec(x_2093); +lean_dec(x_2086); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_2285 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_2109); +if (lean_obj_tag(x_2285) == 0) +{ +lean_object* x_2286; +x_2286 = lean_ctor_get(x_2285, 0); +lean_inc(x_2286); +if (lean_obj_tag(x_2286) == 0) +{ +lean_object* x_2287; lean_object* x_2288; lean_object* x_2289; lean_object* x_2290; lean_object* x_2291; lean_object* x_2292; lean_object* x_2293; lean_object* x_2294; lean_object* x_2295; lean_object* x_2296; lean_object* x_2297; lean_object* x_2298; lean_object* x_2299; lean_dec(x_1); -x_1920 = !lean_is_exclusive(x_8); -if (x_1920 == 0) -{ -return x_8; +x_2287 = lean_ctor_get(x_2285, 1); +lean_inc(x_2287); +lean_dec(x_2285); +x_2288 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2288, 0, x_2098); +x_2289 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_2290 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2290, 0, x_2289); +lean_ctor_set(x_2290, 1, x_2288); +x_2291 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_2292 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2292, 0, x_2290); +lean_ctor_set(x_2292, 1, x_2291); +x_2293 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2294 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2294, 0, x_2293); +x_2295 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2295, 0, x_2294); +x_2296 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2296, 0, x_2292); +lean_ctor_set(x_2296, 1, x_2295); +x_2297 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2298 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2298, 0, x_2296); +lean_ctor_set(x_2298, 1, x_2297); +x_2299 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2298, x_4, x_5, x_6, x_7, x_2287); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2299; } else { -lean_object* x_1921; lean_object* x_1922; lean_object* x_1923; -x_1921 = lean_ctor_get(x_8, 0); -x_1922 = lean_ctor_get(x_8, 1); -lean_inc(x_1922); -lean_inc(x_1921); -lean_dec(x_8); -x_1923 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1923, 0, x_1921); -lean_ctor_set(x_1923, 1, x_1922); -return x_1923; +lean_object* x_2300; lean_object* x_2301; uint8_t x_2302; +lean_dec(x_2098); +lean_dec(x_10); +x_2300 = lean_ctor_get(x_2285, 1); +lean_inc(x_2300); +lean_dec(x_2285); +x_2301 = lean_ctor_get(x_2286, 0); +lean_inc(x_2301); +lean_dec(x_2286); +x_2302 = 0; +x_2 = x_2301; +x_3 = x_2302; +x_8 = x_2300; +goto _start; +} +} +else +{ +uint8_t x_2304; +lean_dec(x_2098); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2304 = !lean_is_exclusive(x_2285); +if (x_2304 == 0) +{ +return x_2285; +} +else +{ +lean_object* x_2305; lean_object* x_2306; lean_object* x_2307; +x_2305 = lean_ctor_get(x_2285, 0); +x_2306 = lean_ctor_get(x_2285, 1); +lean_inc(x_2306); +lean_inc(x_2305); +lean_dec(x_2285); +x_2307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2307, 0, x_2305); +lean_ctor_set(x_2307, 1, x_2306); +return x_2307; +} +} +} +else +{ +lean_object* x_2308; +x_2308 = lean_box(0); +x_2110 = x_2308; +goto block_2280; +} +} +else +{ +lean_object* x_2309; +lean_dec(x_2108); +x_2309 = lean_box(0); +x_2110 = x_2309; +goto block_2280; +} +block_2280: +{ +lean_object* x_2111; +lean_dec(x_2110); +x_2111 = l_Lean_ConstantInfo_value_x3f(x_2103); +lean_dec(x_2103); +if (lean_obj_tag(x_2111) == 0) +{ +lean_object* x_2112; lean_object* x_2113; lean_object* x_2114; lean_object* x_2115; lean_object* x_2116; lean_object* x_2117; lean_object* x_2118; lean_object* x_2119; lean_object* x_2120; lean_object* x_2121; lean_object* x_2122; lean_object* x_2123; +lean_dec(x_2105); +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2097); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_1); +x_2112 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2112, 0, x_2098); +x_2113 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_2114 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2114, 0, x_2113); +lean_ctor_set(x_2114, 1, x_2112); +x_2115 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_2116 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2116, 0, x_2114); +lean_ctor_set(x_2116, 1, x_2115); +x_2117 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2118 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2118, 0, x_2117); +x_2119 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2119, 0, x_2118); +x_2120 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2120, 0, x_2116); +lean_ctor_set(x_2120, 1, x_2119); +x_2121 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2122 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2122, 0, x_2120); +lean_ctor_set(x_2122, 1, x_2121); +x_2123 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2122, x_4, x_5, x_6, x_7, x_2109); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2123; +} +else +{ +lean_object* x_2124; lean_object* x_2125; +lean_dec(x_2098); +lean_dec(x_10); +x_2124 = lean_ctor_get(x_2111, 0); +lean_inc(x_2124); +lean_dec(x_2111); +x_2125 = l_Lean_Environment_getModuleIdxFor_x3f(x_2097, x_2086); +lean_dec(x_2097); +if (lean_obj_tag(x_2125) == 0) +{ +lean_object* x_2126; lean_object* x_2127; lean_object* x_2143; uint8_t x_2144; lean_object* x_2145; +x_2143 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_2124); +x_2144 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_2145 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2143, x_2144, x_4, x_5, x_6, x_7, x_2109); +if (lean_obj_tag(x_2145) == 0) +{ +lean_object* x_2146; lean_object* x_2147; lean_object* x_2148; lean_object* x_2149; lean_object* x_2150; +x_2146 = lean_ctor_get(x_2145, 0); +lean_inc(x_2146); +x_2147 = lean_ctor_get(x_2145, 1); +lean_inc(x_2147); +lean_dec(x_2145); +x_2148 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_2149 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__59___boxed), 9, 2); +lean_closure_set(x_2149, 0, x_1); +lean_closure_set(x_2149, 1, x_2148); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_2150 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2105, x_2149, x_4, x_5, x_6, x_7, x_2147); +if (lean_obj_tag(x_2150) == 0) +{ +lean_object* x_2151; lean_object* x_2152; lean_object* x_2153; lean_object* x_2154; lean_object* x_2155; lean_object* x_2156; lean_object* x_2157; lean_object* x_2158; lean_object* x_2159; lean_object* x_2160; lean_object* x_2161; lean_object* x_2162; +x_2151 = lean_ctor_get(x_2150, 0); +lean_inc(x_2151); +x_2152 = lean_ctor_get(x_2150, 1); +lean_inc(x_2152); +lean_dec(x_2150); +x_2153 = lean_box(0); +lean_inc(x_2101); +x_2154 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_2154, 0, x_2101); +lean_ctor_set(x_2154, 1, x_2153); +lean_ctor_set(x_2154, 2, x_2151); +x_2155 = lean_box(0); +x_2156 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_2156, 0, x_2154); +lean_ctor_set(x_2156, 1, x_2146); +lean_ctor_set(x_2156, 2, x_2155); +lean_ctor_set_uint8(x_2156, sizeof(void*)*3, x_2144); +x_2157 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2157, 0, x_2156); +x_2158 = lean_st_ref_get(x_7, x_2152); +x_2159 = lean_ctor_get(x_2158, 0); +lean_inc(x_2159); +x_2160 = lean_ctor_get(x_2158, 1); +lean_inc(x_2160); +lean_dec(x_2158); +x_2161 = lean_ctor_get(x_2159, 0); +lean_inc(x_2161); +lean_dec(x_2159); +x_2162 = l_Lean_Environment_addAndCompile(x_2161, x_2153, x_2157); +lean_dec(x_2157); +if (lean_obj_tag(x_2162) == 0) +{ +lean_object* x_2163; lean_object* x_2164; lean_object* x_2165; lean_object* x_2166; +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_1); +x_2163 = lean_ctor_get(x_2162, 0); +lean_inc(x_2163); +lean_dec(x_2162); +x_2164 = l_Lean_KernelException_toMessageData(x_2163, x_2153); +x_2165 = lean_ctor_get(x_6, 3); +lean_inc(x_2165); +x_2166 = l_Lean_MessageData_toString(x_2164, x_2160); +if (lean_obj_tag(x_2166) == 0) +{ +lean_object* x_2167; lean_object* x_2168; lean_object* x_2169; lean_object* x_2170; lean_object* x_2171; uint8_t x_2172; +lean_dec(x_2165); +x_2167 = lean_ctor_get(x_2166, 0); +lean_inc(x_2167); +x_2168 = lean_ctor_get(x_2166, 1); +lean_inc(x_2168); +lean_dec(x_2166); +x_2169 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2169, 0, x_2167); +x_2170 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2170, 0, x_2169); +x_2171 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2170, x_4, x_5, x_6, x_7, x_2168); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2172 = !lean_is_exclusive(x_2171); +if (x_2172 == 0) +{ +return x_2171; +} +else +{ +lean_object* x_2173; lean_object* x_2174; lean_object* x_2175; +x_2173 = lean_ctor_get(x_2171, 0); +x_2174 = lean_ctor_get(x_2171, 1); +lean_inc(x_2174); +lean_inc(x_2173); +lean_dec(x_2171); +x_2175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2175, 0, x_2173); +lean_ctor_set(x_2175, 1, x_2174); +return x_2175; +} +} +else +{ +uint8_t x_2176; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2176 = !lean_is_exclusive(x_2166); +if (x_2176 == 0) +{ +lean_object* x_2177; lean_object* x_2178; lean_object* x_2179; lean_object* x_2180; lean_object* x_2181; +x_2177 = lean_ctor_get(x_2166, 0); +x_2178 = lean_io_error_to_string(x_2177); +x_2179 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2179, 0, x_2178); +x_2180 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2180, 0, x_2179); +x_2181 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2181, 0, x_2165); +lean_ctor_set(x_2181, 1, x_2180); +lean_ctor_set(x_2166, 0, x_2181); +return x_2166; +} +else +{ +lean_object* x_2182; lean_object* x_2183; lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; lean_object* x_2187; lean_object* x_2188; +x_2182 = lean_ctor_get(x_2166, 0); +x_2183 = lean_ctor_get(x_2166, 1); +lean_inc(x_2183); +lean_inc(x_2182); +lean_dec(x_2166); +x_2184 = lean_io_error_to_string(x_2182); +x_2185 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2185, 0, x_2184); +x_2186 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2186, 0, x_2185); +x_2187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2187, 0, x_2165); +lean_ctor_set(x_2187, 1, x_2186); +x_2188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2188, 0, x_2187); +lean_ctor_set(x_2188, 1, x_2183); +return x_2188; +} +} +} +else +{ +lean_object* x_2189; +x_2189 = lean_ctor_get(x_2162, 0); +lean_inc(x_2189); +lean_dec(x_2162); +x_2126 = x_2189; +x_2127 = x_2160; +goto block_2142; +} +} +else +{ +uint8_t x_2190; +lean_dec(x_2146); +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2190 = !lean_is_exclusive(x_2150); +if (x_2190 == 0) +{ +return x_2150; +} +else +{ +lean_object* x_2191; lean_object* x_2192; lean_object* x_2193; +x_2191 = lean_ctor_get(x_2150, 0); +x_2192 = lean_ctor_get(x_2150, 1); +lean_inc(x_2192); +lean_inc(x_2191); +lean_dec(x_2150); +x_2193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2193, 0, x_2191); +lean_ctor_set(x_2193, 1, x_2192); +return x_2193; +} +} +} +else +{ +uint8_t x_2194; +lean_dec(x_2105); +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2194 = !lean_is_exclusive(x_2145); +if (x_2194 == 0) +{ +return x_2145; +} +else +{ +lean_object* x_2195; lean_object* x_2196; lean_object* x_2197; +x_2195 = lean_ctor_get(x_2145, 0); +x_2196 = lean_ctor_get(x_2145, 1); +lean_inc(x_2196); +lean_inc(x_2195); +lean_dec(x_2145); +x_2197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2197, 0, x_2195); +lean_ctor_set(x_2197, 1, x_2196); +return x_2197; +} +} +block_2142: +{ +lean_object* x_2128; lean_object* x_2129; lean_object* x_2130; lean_object* x_2131; lean_object* x_2132; lean_object* x_2133; +lean_inc(x_2101); +x_2128 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_2099, x_2126, x_2086, x_2101); +x_2129 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_2128, x_4, x_5, x_6, x_7, x_2127); +x_2130 = lean_ctor_get(x_2129, 1); +lean_inc(x_2130); +lean_dec(x_2129); +x_2131 = lean_box(0); +x_2132 = l_Lean_mkConst(x_2101, x_2131); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2132); +x_2133 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2132, x_4, x_5, x_6, x_7, x_2130); +if (lean_obj_tag(x_2133) == 0) +{ +lean_object* x_2134; lean_object* x_2135; lean_object* x_2136; lean_object* x_2137; +x_2134 = lean_ctor_get(x_2133, 0); +lean_inc(x_2134); +x_2135 = lean_ctor_get(x_2133, 1); +lean_inc(x_2135); +lean_dec(x_2133); +x_2136 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__58___boxed), 11, 4); +lean_closure_set(x_2136, 0, x_1); +lean_closure_set(x_2136, 1, x_2106); +lean_closure_set(x_2136, 2, x_2093); +lean_closure_set(x_2136, 3, x_2132); +x_2137 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2134, x_2136, x_4, x_5, x_6, x_7, x_2135); +return x_2137; +} +else +{ +uint8_t x_2138; +lean_dec(x_2132); +lean_dec(x_2093); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2138 = !lean_is_exclusive(x_2133); +if (x_2138 == 0) +{ +return x_2133; +} +else +{ +lean_object* x_2139; lean_object* x_2140; lean_object* x_2141; +x_2139 = lean_ctor_get(x_2133, 0); +x_2140 = lean_ctor_get(x_2133, 1); +lean_inc(x_2140); +lean_inc(x_2139); +lean_dec(x_2133); +x_2141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2141, 0, x_2139); +lean_ctor_set(x_2141, 1, x_2140); +return x_2141; +} +} +} +} +else +{ +lean_dec(x_2125); +if (x_3 == 0) +{ +lean_object* x_2198; lean_object* x_2199; lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; lean_object* x_2203; uint8_t x_2204; +lean_dec(x_2124); +lean_dec(x_2105); +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2093); +lean_dec(x_1); +x_2198 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2198, 0, x_2086); +x_2199 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_2200 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2200, 0, x_2199); +lean_ctor_set(x_2200, 1, x_2198); +x_2201 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_2202 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2202, 0, x_2200); +lean_ctor_set(x_2202, 1, x_2201); +x_2203 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2202, x_4, x_5, x_6, x_7, x_2109); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2204 = !lean_is_exclusive(x_2203); +if (x_2204 == 0) +{ +return x_2203; +} +else +{ +lean_object* x_2205; lean_object* x_2206; lean_object* x_2207; +x_2205 = lean_ctor_get(x_2203, 0); +x_2206 = lean_ctor_get(x_2203, 1); +lean_inc(x_2206); +lean_inc(x_2205); +lean_dec(x_2203); +x_2207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2207, 0, x_2205); +lean_ctor_set(x_2207, 1, x_2206); +return x_2207; +} +} +else +{ +lean_object* x_2208; lean_object* x_2209; lean_object* x_2225; uint8_t x_2226; lean_object* x_2227; +x_2225 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_2124); +x_2226 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_2227 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2225, x_2226, x_4, x_5, x_6, x_7, x_2109); +if (lean_obj_tag(x_2227) == 0) +{ +lean_object* x_2228; lean_object* x_2229; lean_object* x_2230; lean_object* x_2231; lean_object* x_2232; +x_2228 = lean_ctor_get(x_2227, 0); +lean_inc(x_2228); +x_2229 = lean_ctor_get(x_2227, 1); +lean_inc(x_2229); +lean_dec(x_2227); +x_2230 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_2231 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__63___boxed), 9, 2); +lean_closure_set(x_2231, 0, x_1); +lean_closure_set(x_2231, 1, x_2230); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_2232 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2105, x_2231, x_4, x_5, x_6, x_7, x_2229); +if (lean_obj_tag(x_2232) == 0) +{ +lean_object* x_2233; lean_object* x_2234; lean_object* x_2235; lean_object* x_2236; lean_object* x_2237; lean_object* x_2238; lean_object* x_2239; lean_object* x_2240; lean_object* x_2241; lean_object* x_2242; lean_object* x_2243; lean_object* x_2244; +x_2233 = lean_ctor_get(x_2232, 0); +lean_inc(x_2233); +x_2234 = lean_ctor_get(x_2232, 1); +lean_inc(x_2234); +lean_dec(x_2232); +x_2235 = lean_box(0); +lean_inc(x_2101); +x_2236 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_2236, 0, x_2101); +lean_ctor_set(x_2236, 1, x_2235); +lean_ctor_set(x_2236, 2, x_2233); +x_2237 = lean_box(0); +x_2238 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_2238, 0, x_2236); +lean_ctor_set(x_2238, 1, x_2228); +lean_ctor_set(x_2238, 2, x_2237); +lean_ctor_set_uint8(x_2238, sizeof(void*)*3, x_2226); +x_2239 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2239, 0, x_2238); +x_2240 = lean_st_ref_get(x_7, x_2234); +x_2241 = lean_ctor_get(x_2240, 0); +lean_inc(x_2241); +x_2242 = lean_ctor_get(x_2240, 1); +lean_inc(x_2242); +lean_dec(x_2240); +x_2243 = lean_ctor_get(x_2241, 0); +lean_inc(x_2243); +lean_dec(x_2241); +x_2244 = l_Lean_Environment_addAndCompile(x_2243, x_2235, x_2239); +lean_dec(x_2239); +if (lean_obj_tag(x_2244) == 0) +{ +lean_object* x_2245; lean_object* x_2246; lean_object* x_2247; lean_object* x_2248; +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_1); +x_2245 = lean_ctor_get(x_2244, 0); +lean_inc(x_2245); +lean_dec(x_2244); +x_2246 = l_Lean_KernelException_toMessageData(x_2245, x_2235); +x_2247 = lean_ctor_get(x_6, 3); +lean_inc(x_2247); +x_2248 = l_Lean_MessageData_toString(x_2246, x_2242); +if (lean_obj_tag(x_2248) == 0) +{ +lean_object* x_2249; lean_object* x_2250; lean_object* x_2251; lean_object* x_2252; lean_object* x_2253; uint8_t x_2254; +lean_dec(x_2247); +x_2249 = lean_ctor_get(x_2248, 0); +lean_inc(x_2249); +x_2250 = lean_ctor_get(x_2248, 1); +lean_inc(x_2250); +lean_dec(x_2248); +x_2251 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2251, 0, x_2249); +x_2252 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2252, 0, x_2251); +x_2253 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2252, x_4, x_5, x_6, x_7, x_2250); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2254 = !lean_is_exclusive(x_2253); +if (x_2254 == 0) +{ +return x_2253; +} +else +{ +lean_object* x_2255; lean_object* x_2256; lean_object* x_2257; +x_2255 = lean_ctor_get(x_2253, 0); +x_2256 = lean_ctor_get(x_2253, 1); +lean_inc(x_2256); +lean_inc(x_2255); +lean_dec(x_2253); +x_2257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2257, 0, x_2255); +lean_ctor_set(x_2257, 1, x_2256); +return x_2257; +} +} +else +{ +uint8_t x_2258; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2258 = !lean_is_exclusive(x_2248); +if (x_2258 == 0) +{ +lean_object* x_2259; lean_object* x_2260; lean_object* x_2261; lean_object* x_2262; lean_object* x_2263; +x_2259 = lean_ctor_get(x_2248, 0); +x_2260 = lean_io_error_to_string(x_2259); +x_2261 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2261, 0, x_2260); +x_2262 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2262, 0, x_2261); +x_2263 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2263, 0, x_2247); +lean_ctor_set(x_2263, 1, x_2262); +lean_ctor_set(x_2248, 0, x_2263); +return x_2248; +} +else +{ +lean_object* x_2264; lean_object* x_2265; lean_object* x_2266; lean_object* x_2267; lean_object* x_2268; lean_object* x_2269; lean_object* x_2270; +x_2264 = lean_ctor_get(x_2248, 0); +x_2265 = lean_ctor_get(x_2248, 1); +lean_inc(x_2265); +lean_inc(x_2264); +lean_dec(x_2248); +x_2266 = lean_io_error_to_string(x_2264); +x_2267 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2267, 0, x_2266); +x_2268 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2268, 0, x_2267); +x_2269 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2269, 0, x_2247); +lean_ctor_set(x_2269, 1, x_2268); +x_2270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2270, 0, x_2269); +lean_ctor_set(x_2270, 1, x_2265); +return x_2270; +} +} +} +else +{ +lean_object* x_2271; +x_2271 = lean_ctor_get(x_2244, 0); +lean_inc(x_2271); +lean_dec(x_2244); +x_2208 = x_2271; +x_2209 = x_2242; +goto block_2224; +} +} +else +{ +uint8_t x_2272; +lean_dec(x_2228); +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2272 = !lean_is_exclusive(x_2232); +if (x_2272 == 0) +{ +return x_2232; +} +else +{ +lean_object* x_2273; lean_object* x_2274; lean_object* x_2275; +x_2273 = lean_ctor_get(x_2232, 0); +x_2274 = lean_ctor_get(x_2232, 1); +lean_inc(x_2274); +lean_inc(x_2273); +lean_dec(x_2232); +x_2275 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2275, 0, x_2273); +lean_ctor_set(x_2275, 1, x_2274); +return x_2275; +} +} +} +else +{ +uint8_t x_2276; +lean_dec(x_2105); +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2276 = !lean_is_exclusive(x_2227); +if (x_2276 == 0) +{ +return x_2227; +} +else +{ +lean_object* x_2277; lean_object* x_2278; lean_object* x_2279; +x_2277 = lean_ctor_get(x_2227, 0); +x_2278 = lean_ctor_get(x_2227, 1); +lean_inc(x_2278); +lean_inc(x_2277); +lean_dec(x_2227); +x_2279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2279, 0, x_2277); +lean_ctor_set(x_2279, 1, x_2278); +return x_2279; +} +} +block_2224: +{ +lean_object* x_2210; lean_object* x_2211; lean_object* x_2212; lean_object* x_2213; lean_object* x_2214; lean_object* x_2215; +lean_inc(x_2101); +x_2210 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_2099, x_2208, x_2086, x_2101); +x_2211 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_2210, x_4, x_5, x_6, x_7, x_2209); +x_2212 = lean_ctor_get(x_2211, 1); +lean_inc(x_2212); +lean_dec(x_2211); +x_2213 = lean_box(0); +x_2214 = l_Lean_mkConst(x_2101, x_2213); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2214); +x_2215 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2214, x_4, x_5, x_6, x_7, x_2212); +if (lean_obj_tag(x_2215) == 0) +{ +lean_object* x_2216; lean_object* x_2217; lean_object* x_2218; lean_object* x_2219; +x_2216 = lean_ctor_get(x_2215, 0); +lean_inc(x_2216); +x_2217 = lean_ctor_get(x_2215, 1); +lean_inc(x_2217); +lean_dec(x_2215); +x_2218 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__62___boxed), 11, 4); +lean_closure_set(x_2218, 0, x_1); +lean_closure_set(x_2218, 1, x_2106); +lean_closure_set(x_2218, 2, x_2093); +lean_closure_set(x_2218, 3, x_2214); +x_2219 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2216, x_2218, x_4, x_5, x_6, x_7, x_2217); +return x_2219; +} +else +{ +uint8_t x_2220; +lean_dec(x_2214); +lean_dec(x_2093); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2220 = !lean_is_exclusive(x_2215); +if (x_2220 == 0) +{ +return x_2215; +} +else +{ +lean_object* x_2221; lean_object* x_2222; lean_object* x_2223; +x_2221 = lean_ctor_get(x_2215, 0); +x_2222 = lean_ctor_get(x_2215, 1); +lean_inc(x_2222); +lean_inc(x_2221); +lean_dec(x_2215); +x_2223 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2223, 0, x_2221); +lean_ctor_set(x_2223, 1, x_2222); +return x_2223; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_2310; +lean_dec(x_2105); +lean_dec(x_2103); +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2098); +lean_dec(x_2097); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2310 = !lean_is_exclusive(x_2107); +if (x_2310 == 0) +{ +return x_2107; +} +else +{ +lean_object* x_2311; lean_object* x_2312; lean_object* x_2313; +x_2311 = lean_ctor_get(x_2107, 0); +x_2312 = lean_ctor_get(x_2107, 1); +lean_inc(x_2312); +lean_inc(x_2311); +lean_dec(x_2107); +x_2313 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2313, 0, x_2311); +lean_ctor_set(x_2313, 1, x_2312); +return x_2313; +} +} +} +else +{ +uint8_t x_2314; +lean_dec(x_2101); +lean_dec(x_2099); +lean_dec(x_2098); +lean_dec(x_2097); +lean_dec(x_2093); +lean_dec(x_2086); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2314 = !lean_is_exclusive(x_2102); +if (x_2314 == 0) +{ +return x_2102; +} +else +{ +lean_object* x_2315; lean_object* x_2316; lean_object* x_2317; +x_2315 = lean_ctor_get(x_2102, 0); +x_2316 = lean_ctor_get(x_2102, 1); +lean_inc(x_2316); +lean_inc(x_2315); +lean_dec(x_2102); +x_2317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2317, 0, x_2315); +lean_ctor_set(x_2317, 1, x_2316); +return x_2317; +} +} +} +else +{ +lean_object* x_2318; lean_object* x_2319; lean_object* x_2320; lean_object* x_2321; +lean_dec(x_2099); +lean_dec(x_2098); +lean_dec(x_2097); +lean_dec(x_2086); +lean_dec(x_10); +x_2318 = lean_ctor_get(x_2100, 0); +lean_inc(x_2318); +lean_dec(x_2100); +x_2319 = lean_box(0); +x_2320 = l_Lean_mkConst(x_2318, x_2319); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2320); +x_2321 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2320, x_4, x_5, x_6, x_7, x_2096); +if (lean_obj_tag(x_2321) == 0) +{ +lean_object* x_2322; lean_object* x_2323; lean_object* x_2324; lean_object* x_2325; +x_2322 = lean_ctor_get(x_2321, 0); +lean_inc(x_2322); +x_2323 = lean_ctor_get(x_2321, 1); +lean_inc(x_2323); +lean_dec(x_2321); +x_2324 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__64___boxed), 10, 3); +lean_closure_set(x_2324, 0, x_1); +lean_closure_set(x_2324, 1, x_2093); +lean_closure_set(x_2324, 2, x_2320); +x_2325 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2322, x_2324, x_4, x_5, x_6, x_7, x_2323); +return x_2325; +} +else +{ +uint8_t x_2326; +lean_dec(x_2320); +lean_dec(x_2093); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2326 = !lean_is_exclusive(x_2321); +if (x_2326 == 0) +{ +return x_2321; +} +else +{ +lean_object* x_2327; lean_object* x_2328; lean_object* x_2329; +x_2327 = lean_ctor_get(x_2321, 0); +x_2328 = lean_ctor_get(x_2321, 1); +lean_inc(x_2328); +lean_inc(x_2327); +lean_dec(x_2321); +x_2329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2329, 0, x_2327); +lean_ctor_set(x_2329, 1, x_2328); +return x_2329; +} +} +} +} +else +{ +lean_object* x_2330; +lean_dec(x_2075); +lean_dec(x_1); +x_2330 = lean_box(0); +x_2076 = x_2330; +goto block_2085; +} +block_2085: +{ +lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; lean_object* x_2081; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; +lean_dec(x_2076); +x_2077 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2078 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2078, 0, x_2077); +x_2079 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2079, 0, x_2078); +x_2080 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_2081 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2081, 0, x_2080); +lean_ctor_set(x_2081, 1, x_2079); +x_2082 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2083 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2083, 0, x_2081); +lean_ctor_set(x_2083, 1, x_2082); +x_2084 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2083, x_4, x_5, x_6, x_7, x_2074); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2084; +} +} +case 11: +{ +lean_object* x_2331; lean_object* x_2332; lean_object* x_2333; +x_2331 = lean_ctor_get(x_9, 1); +lean_inc(x_2331); +lean_dec(x_9); +x_2332 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_2332) == 4) +{ +lean_object* x_2343; lean_object* x_2344; lean_object* x_2345; lean_object* x_2346; lean_object* x_2347; lean_object* x_2348; lean_object* x_2349; lean_object* x_2350; lean_object* x_2351; lean_object* x_2352; lean_object* x_2353; lean_object* x_2354; lean_object* x_2355; lean_object* x_2356; lean_object* x_2357; +x_2343 = lean_ctor_get(x_2332, 0); +lean_inc(x_2343); +lean_dec(x_2332); +x_2344 = lean_unsigned_to_nat(0u); +x_2345 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_2344); +x_2346 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_2345); +x_2347 = lean_mk_array(x_2345, x_2346); +x_2348 = lean_unsigned_to_nat(1u); +x_2349 = lean_nat_sub(x_2345, x_2348); +lean_dec(x_2345); +lean_inc(x_10); +x_2350 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_2347, x_2349); +x_2351 = lean_st_ref_get(x_7, x_2331); +x_2352 = lean_ctor_get(x_2351, 0); +lean_inc(x_2352); +x_2353 = lean_ctor_get(x_2351, 1); +lean_inc(x_2353); +lean_dec(x_2351); +x_2354 = lean_ctor_get(x_2352, 0); +lean_inc(x_2354); +lean_dec(x_2352); +x_2355 = lean_ctor_get(x_1, 0); +lean_inc(x_2355); +x_2356 = lean_ctor_get(x_1, 2); +lean_inc(x_2356); +x_2357 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_2356, x_2354, x_2343); +if (lean_obj_tag(x_2357) == 0) +{ +lean_object* x_2358; lean_object* x_2359; +lean_inc(x_2355); +x_2358 = l_Lean_Name_append___main(x_2343, x_2355); +lean_inc(x_2343); +x_2359 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_2343, x_4, x_5, x_6, x_7, x_2353); +if (lean_obj_tag(x_2359) == 0) +{ +lean_object* x_2360; lean_object* x_2361; lean_object* x_2362; lean_object* x_2363; lean_object* x_2364; +x_2360 = lean_ctor_get(x_2359, 0); +lean_inc(x_2360); +x_2361 = lean_ctor_get(x_2359, 1); +lean_inc(x_2361); +lean_dec(x_2359); +x_2362 = l_Lean_ConstantInfo_type(x_2360); +x_2363 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2362); +x_2364 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2362, x_2363, x_4, x_5, x_6, x_7, x_2361); +if (lean_obj_tag(x_2364) == 0) +{ +lean_object* x_2365; lean_object* x_2366; lean_object* x_2367; lean_object* x_2538; uint8_t x_2539; +x_2365 = lean_ctor_get(x_2364, 0); +lean_inc(x_2365); +x_2366 = lean_ctor_get(x_2364, 1); +lean_inc(x_2366); +lean_dec(x_2364); +x_2538 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_2539 = l_Lean_Expr_isConstOf(x_2365, x_2538); +if (x_2539 == 0) +{ +lean_object* x_2540; uint8_t x_2541; +x_2540 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_2541 = l_Lean_Expr_isConstOf(x_2365, x_2540); +lean_dec(x_2365); +if (x_2541 == 0) +{ +lean_object* x_2542; +lean_dec(x_2362); +lean_dec(x_2360); +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2354); +lean_dec(x_2350); +lean_dec(x_2343); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_2542 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_2366); +if (lean_obj_tag(x_2542) == 0) +{ +lean_object* x_2543; +x_2543 = lean_ctor_get(x_2542, 0); +lean_inc(x_2543); +if (lean_obj_tag(x_2543) == 0) +{ +lean_object* x_2544; lean_object* x_2545; lean_object* x_2546; lean_object* x_2547; lean_object* x_2548; lean_object* x_2549; lean_object* x_2550; lean_object* x_2551; lean_object* x_2552; lean_object* x_2553; lean_object* x_2554; lean_object* x_2555; lean_object* x_2556; +lean_dec(x_1); +x_2544 = lean_ctor_get(x_2542, 1); +lean_inc(x_2544); +lean_dec(x_2542); +x_2545 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2545, 0, x_2355); +x_2546 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_2547 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2547, 0, x_2546); +lean_ctor_set(x_2547, 1, x_2545); +x_2548 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_2549 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2549, 0, x_2547); +lean_ctor_set(x_2549, 1, x_2548); +x_2550 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2551 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2551, 0, x_2550); +x_2552 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2552, 0, x_2551); +x_2553 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2553, 0, x_2549); +lean_ctor_set(x_2553, 1, x_2552); +x_2554 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2555 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2555, 0, x_2553); +lean_ctor_set(x_2555, 1, x_2554); +x_2556 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2555, x_4, x_5, x_6, x_7, x_2544); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2556; +} +else +{ +lean_object* x_2557; lean_object* x_2558; uint8_t x_2559; +lean_dec(x_2355); +lean_dec(x_10); +x_2557 = lean_ctor_get(x_2542, 1); +lean_inc(x_2557); +lean_dec(x_2542); +x_2558 = lean_ctor_get(x_2543, 0); +lean_inc(x_2558); +lean_dec(x_2543); +x_2559 = 0; +x_2 = x_2558; +x_3 = x_2559; +x_8 = x_2557; +goto _start; +} +} +else +{ +uint8_t x_2561; +lean_dec(x_2355); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2561 = !lean_is_exclusive(x_2542); +if (x_2561 == 0) +{ +return x_2542; +} +else +{ +lean_object* x_2562; lean_object* x_2563; lean_object* x_2564; +x_2562 = lean_ctor_get(x_2542, 0); +x_2563 = lean_ctor_get(x_2542, 1); +lean_inc(x_2563); +lean_inc(x_2562); +lean_dec(x_2542); +x_2564 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2564, 0, x_2562); +lean_ctor_set(x_2564, 1, x_2563); +return x_2564; +} +} +} +else +{ +lean_object* x_2565; +x_2565 = lean_box(0); +x_2367 = x_2565; +goto block_2537; +} +} +else +{ +lean_object* x_2566; +lean_dec(x_2365); +x_2566 = lean_box(0); +x_2367 = x_2566; +goto block_2537; +} +block_2537: +{ +lean_object* x_2368; +lean_dec(x_2367); +x_2368 = l_Lean_ConstantInfo_value_x3f(x_2360); +lean_dec(x_2360); +if (lean_obj_tag(x_2368) == 0) +{ +lean_object* x_2369; lean_object* x_2370; lean_object* x_2371; lean_object* x_2372; lean_object* x_2373; lean_object* x_2374; lean_object* x_2375; lean_object* x_2376; lean_object* x_2377; lean_object* x_2378; lean_object* x_2379; lean_object* x_2380; +lean_dec(x_2362); +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2354); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_1); +x_2369 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2369, 0, x_2355); +x_2370 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_2371 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2371, 0, x_2370); +lean_ctor_set(x_2371, 1, x_2369); +x_2372 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_2373 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2373, 0, x_2371); +lean_ctor_set(x_2373, 1, x_2372); +x_2374 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2375 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2375, 0, x_2374); +x_2376 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2376, 0, x_2375); +x_2377 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2377, 0, x_2373); +lean_ctor_set(x_2377, 1, x_2376); +x_2378 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2379 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2379, 0, x_2377); +lean_ctor_set(x_2379, 1, x_2378); +x_2380 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2379, x_4, x_5, x_6, x_7, x_2366); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2380; +} +else +{ +lean_object* x_2381; lean_object* x_2382; +lean_dec(x_2355); +lean_dec(x_10); +x_2381 = lean_ctor_get(x_2368, 0); +lean_inc(x_2381); +lean_dec(x_2368); +x_2382 = l_Lean_Environment_getModuleIdxFor_x3f(x_2354, x_2343); +lean_dec(x_2354); +if (lean_obj_tag(x_2382) == 0) +{ +lean_object* x_2383; lean_object* x_2384; lean_object* x_2400; uint8_t x_2401; lean_object* x_2402; +x_2400 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_2381); +x_2401 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_2402 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2400, x_2401, x_4, x_5, x_6, x_7, x_2366); +if (lean_obj_tag(x_2402) == 0) +{ +lean_object* x_2403; lean_object* x_2404; lean_object* x_2405; lean_object* x_2406; lean_object* x_2407; +x_2403 = lean_ctor_get(x_2402, 0); +lean_inc(x_2403); +x_2404 = lean_ctor_get(x_2402, 1); +lean_inc(x_2404); +lean_dec(x_2402); +x_2405 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_2406 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__66___boxed), 9, 2); +lean_closure_set(x_2406, 0, x_1); +lean_closure_set(x_2406, 1, x_2405); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_2407 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2362, x_2406, x_4, x_5, x_6, x_7, x_2404); +if (lean_obj_tag(x_2407) == 0) +{ +lean_object* x_2408; lean_object* x_2409; lean_object* x_2410; lean_object* x_2411; lean_object* x_2412; lean_object* x_2413; lean_object* x_2414; lean_object* x_2415; lean_object* x_2416; lean_object* x_2417; lean_object* x_2418; lean_object* x_2419; +x_2408 = lean_ctor_get(x_2407, 0); +lean_inc(x_2408); +x_2409 = lean_ctor_get(x_2407, 1); +lean_inc(x_2409); +lean_dec(x_2407); +x_2410 = lean_box(0); +lean_inc(x_2358); +x_2411 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_2411, 0, x_2358); +lean_ctor_set(x_2411, 1, x_2410); +lean_ctor_set(x_2411, 2, x_2408); +x_2412 = lean_box(0); +x_2413 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_2413, 0, x_2411); +lean_ctor_set(x_2413, 1, x_2403); +lean_ctor_set(x_2413, 2, x_2412); +lean_ctor_set_uint8(x_2413, sizeof(void*)*3, x_2401); +x_2414 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2414, 0, x_2413); +x_2415 = lean_st_ref_get(x_7, x_2409); +x_2416 = lean_ctor_get(x_2415, 0); +lean_inc(x_2416); +x_2417 = lean_ctor_get(x_2415, 1); +lean_inc(x_2417); +lean_dec(x_2415); +x_2418 = lean_ctor_get(x_2416, 0); +lean_inc(x_2418); +lean_dec(x_2416); +x_2419 = l_Lean_Environment_addAndCompile(x_2418, x_2410, x_2414); +lean_dec(x_2414); +if (lean_obj_tag(x_2419) == 0) +{ +lean_object* x_2420; lean_object* x_2421; lean_object* x_2422; lean_object* x_2423; +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_1); +x_2420 = lean_ctor_get(x_2419, 0); +lean_inc(x_2420); +lean_dec(x_2419); +x_2421 = l_Lean_KernelException_toMessageData(x_2420, x_2410); +x_2422 = lean_ctor_get(x_6, 3); +lean_inc(x_2422); +x_2423 = l_Lean_MessageData_toString(x_2421, x_2417); +if (lean_obj_tag(x_2423) == 0) +{ +lean_object* x_2424; lean_object* x_2425; lean_object* x_2426; lean_object* x_2427; lean_object* x_2428; uint8_t x_2429; +lean_dec(x_2422); +x_2424 = lean_ctor_get(x_2423, 0); +lean_inc(x_2424); +x_2425 = lean_ctor_get(x_2423, 1); +lean_inc(x_2425); +lean_dec(x_2423); +x_2426 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2426, 0, x_2424); +x_2427 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2427, 0, x_2426); +x_2428 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2427, x_4, x_5, x_6, x_7, x_2425); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2429 = !lean_is_exclusive(x_2428); +if (x_2429 == 0) +{ +return x_2428; +} +else +{ +lean_object* x_2430; lean_object* x_2431; lean_object* x_2432; +x_2430 = lean_ctor_get(x_2428, 0); +x_2431 = lean_ctor_get(x_2428, 1); +lean_inc(x_2431); +lean_inc(x_2430); +lean_dec(x_2428); +x_2432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2432, 0, x_2430); +lean_ctor_set(x_2432, 1, x_2431); +return x_2432; +} +} +else +{ +uint8_t x_2433; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2433 = !lean_is_exclusive(x_2423); +if (x_2433 == 0) +{ +lean_object* x_2434; lean_object* x_2435; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; +x_2434 = lean_ctor_get(x_2423, 0); +x_2435 = lean_io_error_to_string(x_2434); +x_2436 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2436, 0, x_2435); +x_2437 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2437, 0, x_2436); +x_2438 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2438, 0, x_2422); +lean_ctor_set(x_2438, 1, x_2437); +lean_ctor_set(x_2423, 0, x_2438); +return x_2423; +} +else +{ +lean_object* x_2439; lean_object* x_2440; lean_object* x_2441; lean_object* x_2442; lean_object* x_2443; lean_object* x_2444; lean_object* x_2445; +x_2439 = lean_ctor_get(x_2423, 0); +x_2440 = lean_ctor_get(x_2423, 1); +lean_inc(x_2440); +lean_inc(x_2439); +lean_dec(x_2423); +x_2441 = lean_io_error_to_string(x_2439); +x_2442 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2442, 0, x_2441); +x_2443 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2443, 0, x_2442); +x_2444 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2444, 0, x_2422); +lean_ctor_set(x_2444, 1, x_2443); +x_2445 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2445, 0, x_2444); +lean_ctor_set(x_2445, 1, x_2440); +return x_2445; +} +} +} +else +{ +lean_object* x_2446; +x_2446 = lean_ctor_get(x_2419, 0); +lean_inc(x_2446); +lean_dec(x_2419); +x_2383 = x_2446; +x_2384 = x_2417; +goto block_2399; +} +} +else +{ +uint8_t x_2447; +lean_dec(x_2403); +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2447 = !lean_is_exclusive(x_2407); +if (x_2447 == 0) +{ +return x_2407; +} +else +{ +lean_object* x_2448; lean_object* x_2449; lean_object* x_2450; +x_2448 = lean_ctor_get(x_2407, 0); +x_2449 = lean_ctor_get(x_2407, 1); +lean_inc(x_2449); +lean_inc(x_2448); +lean_dec(x_2407); +x_2450 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2450, 0, x_2448); +lean_ctor_set(x_2450, 1, x_2449); +return x_2450; +} +} +} +else +{ +uint8_t x_2451; +lean_dec(x_2362); +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2451 = !lean_is_exclusive(x_2402); +if (x_2451 == 0) +{ +return x_2402; +} +else +{ +lean_object* x_2452; lean_object* x_2453; lean_object* x_2454; +x_2452 = lean_ctor_get(x_2402, 0); +x_2453 = lean_ctor_get(x_2402, 1); +lean_inc(x_2453); +lean_inc(x_2452); +lean_dec(x_2402); +x_2454 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2454, 0, x_2452); +lean_ctor_set(x_2454, 1, x_2453); +return x_2454; +} +} +block_2399: +{ +lean_object* x_2385; lean_object* x_2386; lean_object* x_2387; lean_object* x_2388; lean_object* x_2389; lean_object* x_2390; +lean_inc(x_2358); +x_2385 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_2356, x_2383, x_2343, x_2358); +x_2386 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_2385, x_4, x_5, x_6, x_7, x_2384); +x_2387 = lean_ctor_get(x_2386, 1); +lean_inc(x_2387); +lean_dec(x_2386); +x_2388 = lean_box(0); +x_2389 = l_Lean_mkConst(x_2358, x_2388); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2389); +x_2390 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2389, x_4, x_5, x_6, x_7, x_2387); +if (lean_obj_tag(x_2390) == 0) +{ +lean_object* x_2391; lean_object* x_2392; lean_object* x_2393; lean_object* x_2394; +x_2391 = lean_ctor_get(x_2390, 0); +lean_inc(x_2391); +x_2392 = lean_ctor_get(x_2390, 1); +lean_inc(x_2392); +lean_dec(x_2390); +x_2393 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__65___boxed), 11, 4); +lean_closure_set(x_2393, 0, x_1); +lean_closure_set(x_2393, 1, x_2363); +lean_closure_set(x_2393, 2, x_2350); +lean_closure_set(x_2393, 3, x_2389); +x_2394 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2391, x_2393, x_4, x_5, x_6, x_7, x_2392); +return x_2394; +} +else +{ +uint8_t x_2395; +lean_dec(x_2389); +lean_dec(x_2350); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2395 = !lean_is_exclusive(x_2390); +if (x_2395 == 0) +{ +return x_2390; +} +else +{ +lean_object* x_2396; lean_object* x_2397; lean_object* x_2398; +x_2396 = lean_ctor_get(x_2390, 0); +x_2397 = lean_ctor_get(x_2390, 1); +lean_inc(x_2397); +lean_inc(x_2396); +lean_dec(x_2390); +x_2398 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2398, 0, x_2396); +lean_ctor_set(x_2398, 1, x_2397); +return x_2398; +} +} +} +} +else +{ +lean_dec(x_2382); +if (x_3 == 0) +{ +lean_object* x_2455; lean_object* x_2456; lean_object* x_2457; lean_object* x_2458; lean_object* x_2459; lean_object* x_2460; uint8_t x_2461; +lean_dec(x_2381); +lean_dec(x_2362); +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2350); +lean_dec(x_1); +x_2455 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2455, 0, x_2343); +x_2456 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_2457 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2457, 0, x_2456); +lean_ctor_set(x_2457, 1, x_2455); +x_2458 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_2459 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2459, 0, x_2457); +lean_ctor_set(x_2459, 1, x_2458); +x_2460 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2459, x_4, x_5, x_6, x_7, x_2366); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2461 = !lean_is_exclusive(x_2460); +if (x_2461 == 0) +{ +return x_2460; +} +else +{ +lean_object* x_2462; lean_object* x_2463; lean_object* x_2464; +x_2462 = lean_ctor_get(x_2460, 0); +x_2463 = lean_ctor_get(x_2460, 1); +lean_inc(x_2463); +lean_inc(x_2462); +lean_dec(x_2460); +x_2464 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2464, 0, x_2462); +lean_ctor_set(x_2464, 1, x_2463); +return x_2464; +} +} +else +{ +lean_object* x_2465; lean_object* x_2466; lean_object* x_2482; uint8_t x_2483; lean_object* x_2484; +x_2482 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_2381); +x_2483 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_2484 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2482, x_2483, x_4, x_5, x_6, x_7, x_2366); +if (lean_obj_tag(x_2484) == 0) +{ +lean_object* x_2485; lean_object* x_2486; lean_object* x_2487; lean_object* x_2488; lean_object* x_2489; +x_2485 = lean_ctor_get(x_2484, 0); +lean_inc(x_2485); +x_2486 = lean_ctor_get(x_2484, 1); +lean_inc(x_2486); +lean_dec(x_2484); +x_2487 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_2488 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__70___boxed), 9, 2); +lean_closure_set(x_2488, 0, x_1); +lean_closure_set(x_2488, 1, x_2487); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_2489 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2362, x_2488, x_4, x_5, x_6, x_7, x_2486); +if (lean_obj_tag(x_2489) == 0) +{ +lean_object* x_2490; lean_object* x_2491; lean_object* x_2492; lean_object* x_2493; lean_object* x_2494; lean_object* x_2495; lean_object* x_2496; lean_object* x_2497; lean_object* x_2498; lean_object* x_2499; lean_object* x_2500; lean_object* x_2501; +x_2490 = lean_ctor_get(x_2489, 0); +lean_inc(x_2490); +x_2491 = lean_ctor_get(x_2489, 1); +lean_inc(x_2491); +lean_dec(x_2489); +x_2492 = lean_box(0); +lean_inc(x_2358); +x_2493 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_2493, 0, x_2358); +lean_ctor_set(x_2493, 1, x_2492); +lean_ctor_set(x_2493, 2, x_2490); +x_2494 = lean_box(0); +x_2495 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_2495, 0, x_2493); +lean_ctor_set(x_2495, 1, x_2485); +lean_ctor_set(x_2495, 2, x_2494); +lean_ctor_set_uint8(x_2495, sizeof(void*)*3, x_2483); +x_2496 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2496, 0, x_2495); +x_2497 = lean_st_ref_get(x_7, x_2491); +x_2498 = lean_ctor_get(x_2497, 0); +lean_inc(x_2498); +x_2499 = lean_ctor_get(x_2497, 1); +lean_inc(x_2499); +lean_dec(x_2497); +x_2500 = lean_ctor_get(x_2498, 0); +lean_inc(x_2500); +lean_dec(x_2498); +x_2501 = l_Lean_Environment_addAndCompile(x_2500, x_2492, x_2496); +lean_dec(x_2496); +if (lean_obj_tag(x_2501) == 0) +{ +lean_object* x_2502; lean_object* x_2503; lean_object* x_2504; lean_object* x_2505; +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_1); +x_2502 = lean_ctor_get(x_2501, 0); +lean_inc(x_2502); +lean_dec(x_2501); +x_2503 = l_Lean_KernelException_toMessageData(x_2502, x_2492); +x_2504 = lean_ctor_get(x_6, 3); +lean_inc(x_2504); +x_2505 = l_Lean_MessageData_toString(x_2503, x_2499); +if (lean_obj_tag(x_2505) == 0) +{ +lean_object* x_2506; lean_object* x_2507; lean_object* x_2508; lean_object* x_2509; lean_object* x_2510; uint8_t x_2511; +lean_dec(x_2504); +x_2506 = lean_ctor_get(x_2505, 0); +lean_inc(x_2506); +x_2507 = lean_ctor_get(x_2505, 1); +lean_inc(x_2507); +lean_dec(x_2505); +x_2508 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2508, 0, x_2506); +x_2509 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2509, 0, x_2508); +x_2510 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2509, x_4, x_5, x_6, x_7, x_2507); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2511 = !lean_is_exclusive(x_2510); +if (x_2511 == 0) +{ +return x_2510; +} +else +{ +lean_object* x_2512; lean_object* x_2513; lean_object* x_2514; +x_2512 = lean_ctor_get(x_2510, 0); +x_2513 = lean_ctor_get(x_2510, 1); +lean_inc(x_2513); +lean_inc(x_2512); +lean_dec(x_2510); +x_2514 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2514, 0, x_2512); +lean_ctor_set(x_2514, 1, x_2513); +return x_2514; +} +} +else +{ +uint8_t x_2515; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2515 = !lean_is_exclusive(x_2505); +if (x_2515 == 0) +{ +lean_object* x_2516; lean_object* x_2517; lean_object* x_2518; lean_object* x_2519; lean_object* x_2520; +x_2516 = lean_ctor_get(x_2505, 0); +x_2517 = lean_io_error_to_string(x_2516); +x_2518 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2518, 0, x_2517); +x_2519 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2519, 0, x_2518); +x_2520 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2520, 0, x_2504); +lean_ctor_set(x_2520, 1, x_2519); +lean_ctor_set(x_2505, 0, x_2520); +return x_2505; +} +else +{ +lean_object* x_2521; lean_object* x_2522; lean_object* x_2523; lean_object* x_2524; lean_object* x_2525; lean_object* x_2526; lean_object* x_2527; +x_2521 = lean_ctor_get(x_2505, 0); +x_2522 = lean_ctor_get(x_2505, 1); +lean_inc(x_2522); +lean_inc(x_2521); +lean_dec(x_2505); +x_2523 = lean_io_error_to_string(x_2521); +x_2524 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2524, 0, x_2523); +x_2525 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2525, 0, x_2524); +x_2526 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2526, 0, x_2504); +lean_ctor_set(x_2526, 1, x_2525); +x_2527 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2527, 0, x_2526); +lean_ctor_set(x_2527, 1, x_2522); +return x_2527; +} +} +} +else +{ +lean_object* x_2528; +x_2528 = lean_ctor_get(x_2501, 0); +lean_inc(x_2528); +lean_dec(x_2501); +x_2465 = x_2528; +x_2466 = x_2499; +goto block_2481; +} +} +else +{ +uint8_t x_2529; +lean_dec(x_2485); +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2529 = !lean_is_exclusive(x_2489); +if (x_2529 == 0) +{ +return x_2489; +} +else +{ +lean_object* x_2530; lean_object* x_2531; lean_object* x_2532; +x_2530 = lean_ctor_get(x_2489, 0); +x_2531 = lean_ctor_get(x_2489, 1); +lean_inc(x_2531); +lean_inc(x_2530); +lean_dec(x_2489); +x_2532 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2532, 0, x_2530); +lean_ctor_set(x_2532, 1, x_2531); +return x_2532; +} +} +} +else +{ +uint8_t x_2533; +lean_dec(x_2362); +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2533 = !lean_is_exclusive(x_2484); +if (x_2533 == 0) +{ +return x_2484; +} +else +{ +lean_object* x_2534; lean_object* x_2535; lean_object* x_2536; +x_2534 = lean_ctor_get(x_2484, 0); +x_2535 = lean_ctor_get(x_2484, 1); +lean_inc(x_2535); +lean_inc(x_2534); +lean_dec(x_2484); +x_2536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2536, 0, x_2534); +lean_ctor_set(x_2536, 1, x_2535); +return x_2536; +} +} +block_2481: +{ +lean_object* x_2467; lean_object* x_2468; lean_object* x_2469; lean_object* x_2470; lean_object* x_2471; lean_object* x_2472; +lean_inc(x_2358); +x_2467 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_2356, x_2465, x_2343, x_2358); +x_2468 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_2467, x_4, x_5, x_6, x_7, x_2466); +x_2469 = lean_ctor_get(x_2468, 1); +lean_inc(x_2469); +lean_dec(x_2468); +x_2470 = lean_box(0); +x_2471 = l_Lean_mkConst(x_2358, x_2470); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2471); +x_2472 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2471, x_4, x_5, x_6, x_7, x_2469); +if (lean_obj_tag(x_2472) == 0) +{ +lean_object* x_2473; lean_object* x_2474; lean_object* x_2475; lean_object* x_2476; +x_2473 = lean_ctor_get(x_2472, 0); +lean_inc(x_2473); +x_2474 = lean_ctor_get(x_2472, 1); +lean_inc(x_2474); +lean_dec(x_2472); +x_2475 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__69___boxed), 11, 4); +lean_closure_set(x_2475, 0, x_1); +lean_closure_set(x_2475, 1, x_2363); +lean_closure_set(x_2475, 2, x_2350); +lean_closure_set(x_2475, 3, x_2471); +x_2476 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2473, x_2475, x_4, x_5, x_6, x_7, x_2474); +return x_2476; +} +else +{ +uint8_t x_2477; +lean_dec(x_2471); +lean_dec(x_2350); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2477 = !lean_is_exclusive(x_2472); +if (x_2477 == 0) +{ +return x_2472; +} +else +{ +lean_object* x_2478; lean_object* x_2479; lean_object* x_2480; +x_2478 = lean_ctor_get(x_2472, 0); +x_2479 = lean_ctor_get(x_2472, 1); +lean_inc(x_2479); +lean_inc(x_2478); +lean_dec(x_2472); +x_2480 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2480, 0, x_2478); +lean_ctor_set(x_2480, 1, x_2479); +return x_2480; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_2567; +lean_dec(x_2362); +lean_dec(x_2360); +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2355); +lean_dec(x_2354); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2567 = !lean_is_exclusive(x_2364); +if (x_2567 == 0) +{ +return x_2364; +} +else +{ +lean_object* x_2568; lean_object* x_2569; lean_object* x_2570; +x_2568 = lean_ctor_get(x_2364, 0); +x_2569 = lean_ctor_get(x_2364, 1); +lean_inc(x_2569); +lean_inc(x_2568); +lean_dec(x_2364); +x_2570 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2570, 0, x_2568); +lean_ctor_set(x_2570, 1, x_2569); +return x_2570; +} +} +} +else +{ +uint8_t x_2571; +lean_dec(x_2358); +lean_dec(x_2356); +lean_dec(x_2355); +lean_dec(x_2354); +lean_dec(x_2350); +lean_dec(x_2343); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2571 = !lean_is_exclusive(x_2359); +if (x_2571 == 0) +{ +return x_2359; +} +else +{ +lean_object* x_2572; lean_object* x_2573; lean_object* x_2574; +x_2572 = lean_ctor_get(x_2359, 0); +x_2573 = lean_ctor_get(x_2359, 1); +lean_inc(x_2573); +lean_inc(x_2572); +lean_dec(x_2359); +x_2574 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2574, 0, x_2572); +lean_ctor_set(x_2574, 1, x_2573); +return x_2574; +} +} +} +else +{ +lean_object* x_2575; lean_object* x_2576; lean_object* x_2577; lean_object* x_2578; +lean_dec(x_2356); +lean_dec(x_2355); +lean_dec(x_2354); +lean_dec(x_2343); +lean_dec(x_10); +x_2575 = lean_ctor_get(x_2357, 0); +lean_inc(x_2575); +lean_dec(x_2357); +x_2576 = lean_box(0); +x_2577 = l_Lean_mkConst(x_2575, x_2576); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2577); +x_2578 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2577, x_4, x_5, x_6, x_7, x_2353); +if (lean_obj_tag(x_2578) == 0) +{ +lean_object* x_2579; lean_object* x_2580; lean_object* x_2581; lean_object* x_2582; +x_2579 = lean_ctor_get(x_2578, 0); +lean_inc(x_2579); +x_2580 = lean_ctor_get(x_2578, 1); +lean_inc(x_2580); +lean_dec(x_2578); +x_2581 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__71___boxed), 10, 3); +lean_closure_set(x_2581, 0, x_1); +lean_closure_set(x_2581, 1, x_2350); +lean_closure_set(x_2581, 2, x_2577); +x_2582 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2579, x_2581, x_4, x_5, x_6, x_7, x_2580); +return x_2582; +} +else +{ +uint8_t x_2583; +lean_dec(x_2577); +lean_dec(x_2350); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2583 = !lean_is_exclusive(x_2578); +if (x_2583 == 0) +{ +return x_2578; +} +else +{ +lean_object* x_2584; lean_object* x_2585; lean_object* x_2586; +x_2584 = lean_ctor_get(x_2578, 0); +x_2585 = lean_ctor_get(x_2578, 1); +lean_inc(x_2585); +lean_inc(x_2584); +lean_dec(x_2578); +x_2586 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2586, 0, x_2584); +lean_ctor_set(x_2586, 1, x_2585); +return x_2586; +} +} +} +} +else +{ +lean_object* x_2587; +lean_dec(x_2332); +lean_dec(x_1); +x_2587 = lean_box(0); +x_2333 = x_2587; +goto block_2342; +} +block_2342: +{ +lean_object* x_2334; lean_object* x_2335; lean_object* x_2336; lean_object* x_2337; lean_object* x_2338; lean_object* x_2339; lean_object* x_2340; lean_object* x_2341; +lean_dec(x_2333); +x_2334 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2335 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2335, 0, x_2334); +x_2336 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2336, 0, x_2335); +x_2337 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_2338 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2338, 0, x_2337); +lean_ctor_set(x_2338, 1, x_2336); +x_2339 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2340 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2340, 0, x_2338); +lean_ctor_set(x_2340, 1, x_2339); +x_2341 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2340, x_4, x_5, x_6, x_7, x_2331); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2341; +} +} +default: +{ +lean_object* x_2588; lean_object* x_2589; lean_object* x_2590; +x_2588 = lean_ctor_get(x_9, 1); +lean_inc(x_2588); +lean_dec(x_9); +x_2589 = l_Lean_Expr_getAppFn___main(x_10); +if (lean_obj_tag(x_2589) == 4) +{ +lean_object* x_2600; lean_object* x_2601; lean_object* x_2602; lean_object* x_2603; lean_object* x_2604; lean_object* x_2605; lean_object* x_2606; lean_object* x_2607; lean_object* x_2608; lean_object* x_2609; lean_object* x_2610; lean_object* x_2611; lean_object* x_2612; lean_object* x_2613; lean_object* x_2614; +x_2600 = lean_ctor_get(x_2589, 0); +lean_inc(x_2600); +lean_dec(x_2589); +x_2601 = lean_unsigned_to_nat(0u); +x_2602 = l_Lean_Expr_getAppNumArgsAux___main(x_10, x_2601); +x_2603 = l_Lean_Expr_getAppArgs___closed__1; +lean_inc(x_2602); +x_2604 = lean_mk_array(x_2602, x_2603); +x_2605 = lean_unsigned_to_nat(1u); +x_2606 = lean_nat_sub(x_2602, x_2605); +lean_dec(x_2602); +lean_inc(x_10); +x_2607 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_2604, x_2606); +x_2608 = lean_st_ref_get(x_7, x_2588); +x_2609 = lean_ctor_get(x_2608, 0); +lean_inc(x_2609); +x_2610 = lean_ctor_get(x_2608, 1); +lean_inc(x_2610); +lean_dec(x_2608); +x_2611 = lean_ctor_get(x_2609, 0); +lean_inc(x_2611); +lean_dec(x_2609); +x_2612 = lean_ctor_get(x_1, 0); +lean_inc(x_2612); +x_2613 = lean_ctor_get(x_1, 2); +lean_inc(x_2613); +x_2614 = l_Lean_ParserCompiler_CombinatorAttribute_getDeclFor(x_2613, x_2611, x_2600); +if (lean_obj_tag(x_2614) == 0) +{ +lean_object* x_2615; lean_object* x_2616; +lean_inc(x_2612); +x_2615 = l_Lean_Name_append___main(x_2600, x_2612); +lean_inc(x_2600); +x_2616 = l_Lean_getConstInfo___at_Lean_Meta_getParamNamesImp___spec__1(x_2600, x_4, x_5, x_6, x_7, x_2610); +if (lean_obj_tag(x_2616) == 0) +{ +lean_object* x_2617; lean_object* x_2618; lean_object* x_2619; lean_object* x_2620; lean_object* x_2621; +x_2617 = lean_ctor_get(x_2616, 0); +lean_inc(x_2617); +x_2618 = lean_ctor_get(x_2616, 1); +lean_inc(x_2618); +lean_dec(x_2616); +x_2619 = l_Lean_ConstantInfo_type(x_2617); +x_2620 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2619); +x_2621 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2619, x_2620, x_4, x_5, x_6, x_7, x_2618); +if (lean_obj_tag(x_2621) == 0) +{ +lean_object* x_2622; lean_object* x_2623; lean_object* x_2624; lean_object* x_2795; uint8_t x_2796; +x_2622 = lean_ctor_get(x_2621, 0); +lean_inc(x_2622); +x_2623 = lean_ctor_get(x_2621, 1); +lean_inc(x_2623); +lean_dec(x_2621); +x_2795 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_2796 = l_Lean_Expr_isConstOf(x_2622, x_2795); +if (x_2796 == 0) +{ +lean_object* x_2797; uint8_t x_2798; +x_2797 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_2798 = l_Lean_Expr_isConstOf(x_2622, x_2797); +lean_dec(x_2622); +if (x_2798 == 0) +{ +lean_object* x_2799; +lean_dec(x_2619); +lean_dec(x_2617); +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2611); +lean_dec(x_2607); +lean_dec(x_2600); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_2799 = l___private_Lean_Meta_WHNF_0__Lean_Meta_unfoldDefinitionImp_x3f(x_10, x_4, x_5, x_6, x_7, x_2623); +if (lean_obj_tag(x_2799) == 0) +{ +lean_object* x_2800; +x_2800 = lean_ctor_get(x_2799, 0); +lean_inc(x_2800); +if (lean_obj_tag(x_2800) == 0) +{ +lean_object* x_2801; lean_object* x_2802; lean_object* x_2803; lean_object* x_2804; lean_object* x_2805; lean_object* x_2806; lean_object* x_2807; lean_object* x_2808; lean_object* x_2809; lean_object* x_2810; lean_object* x_2811; lean_object* x_2812; lean_object* x_2813; +lean_dec(x_1); +x_2801 = lean_ctor_get(x_2799, 1); +lean_inc(x_2801); +lean_dec(x_2799); +x_2802 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2802, 0, x_2612); +x_2803 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_2804 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2804, 0, x_2803); +lean_ctor_set(x_2804, 1, x_2802); +x_2805 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19; +x_2806 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2806, 0, x_2804); +lean_ctor_set(x_2806, 1, x_2805); +x_2807 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2808 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2808, 0, x_2807); +x_2809 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2809, 0, x_2808); +x_2810 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2810, 0, x_2806); +lean_ctor_set(x_2810, 1, x_2809); +x_2811 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2812 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2812, 0, x_2810); +lean_ctor_set(x_2812, 1, x_2811); +x_2813 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2812, x_4, x_5, x_6, x_7, x_2801); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2813; +} +else +{ +lean_object* x_2814; lean_object* x_2815; uint8_t x_2816; +lean_dec(x_2612); +lean_dec(x_10); +x_2814 = lean_ctor_get(x_2799, 1); +lean_inc(x_2814); +lean_dec(x_2799); +x_2815 = lean_ctor_get(x_2800, 0); +lean_inc(x_2815); +lean_dec(x_2800); +x_2816 = 0; +x_2 = x_2815; +x_3 = x_2816; +x_8 = x_2814; +goto _start; +} +} +else +{ +uint8_t x_2818; +lean_dec(x_2612); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2818 = !lean_is_exclusive(x_2799); +if (x_2818 == 0) +{ +return x_2799; +} +else +{ +lean_object* x_2819; lean_object* x_2820; lean_object* x_2821; +x_2819 = lean_ctor_get(x_2799, 0); +x_2820 = lean_ctor_get(x_2799, 1); +lean_inc(x_2820); +lean_inc(x_2819); +lean_dec(x_2799); +x_2821 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2821, 0, x_2819); +lean_ctor_set(x_2821, 1, x_2820); +return x_2821; +} +} +} +else +{ +lean_object* x_2822; +x_2822 = lean_box(0); +x_2624 = x_2822; +goto block_2794; +} +} +else +{ +lean_object* x_2823; +lean_dec(x_2622); +x_2823 = lean_box(0); +x_2624 = x_2823; +goto block_2794; +} +block_2794: +{ +lean_object* x_2625; +lean_dec(x_2624); +x_2625 = l_Lean_ConstantInfo_value_x3f(x_2617); +lean_dec(x_2617); +if (lean_obj_tag(x_2625) == 0) +{ +lean_object* x_2626; lean_object* x_2627; lean_object* x_2628; lean_object* x_2629; lean_object* x_2630; lean_object* x_2631; lean_object* x_2632; lean_object* x_2633; lean_object* x_2634; lean_object* x_2635; lean_object* x_2636; lean_object* x_2637; +lean_dec(x_2619); +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2611); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_1); +x_2626 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2626, 0, x_2612); +x_2627 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__6; +x_2628 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2628, 0, x_2627); +lean_ctor_set(x_2628, 1, x_2626); +x_2629 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__9; +x_2630 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2630, 0, x_2628); +lean_ctor_set(x_2630, 1, x_2629); +x_2631 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2632 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2632, 0, x_2631); +x_2633 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2633, 0, x_2632); +x_2634 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2634, 0, x_2630); +lean_ctor_set(x_2634, 1, x_2633); +x_2635 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2636 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2636, 0, x_2634); +lean_ctor_set(x_2636, 1, x_2635); +x_2637 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2636, x_4, x_5, x_6, x_7, x_2623); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2637; +} +else +{ +lean_object* x_2638; lean_object* x_2639; +lean_dec(x_2612); +lean_dec(x_10); +x_2638 = lean_ctor_get(x_2625, 0); +lean_inc(x_2638); +lean_dec(x_2625); +x_2639 = l_Lean_Environment_getModuleIdxFor_x3f(x_2611, x_2600); +lean_dec(x_2611); +if (lean_obj_tag(x_2639) == 0) +{ +lean_object* x_2640; lean_object* x_2641; lean_object* x_2657; uint8_t x_2658; lean_object* x_2659; +x_2657 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_2638); +x_2658 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_2659 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2657, x_2658, x_4, x_5, x_6, x_7, x_2623); +if (lean_obj_tag(x_2659) == 0) +{ +lean_object* x_2660; lean_object* x_2661; lean_object* x_2662; lean_object* x_2663; lean_object* x_2664; +x_2660 = lean_ctor_get(x_2659, 0); +lean_inc(x_2660); +x_2661 = lean_ctor_get(x_2659, 1); +lean_inc(x_2661); +lean_dec(x_2659); +x_2662 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_2663 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__73___boxed), 9, 2); +lean_closure_set(x_2663, 0, x_1); +lean_closure_set(x_2663, 1, x_2662); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_2664 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2619, x_2663, x_4, x_5, x_6, x_7, x_2661); +if (lean_obj_tag(x_2664) == 0) +{ +lean_object* x_2665; lean_object* x_2666; lean_object* x_2667; lean_object* x_2668; lean_object* x_2669; lean_object* x_2670; lean_object* x_2671; lean_object* x_2672; lean_object* x_2673; lean_object* x_2674; lean_object* x_2675; lean_object* x_2676; +x_2665 = lean_ctor_get(x_2664, 0); +lean_inc(x_2665); +x_2666 = lean_ctor_get(x_2664, 1); +lean_inc(x_2666); +lean_dec(x_2664); +x_2667 = lean_box(0); +lean_inc(x_2615); +x_2668 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_2668, 0, x_2615); +lean_ctor_set(x_2668, 1, x_2667); +lean_ctor_set(x_2668, 2, x_2665); +x_2669 = lean_box(0); +x_2670 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_2670, 0, x_2668); +lean_ctor_set(x_2670, 1, x_2660); +lean_ctor_set(x_2670, 2, x_2669); +lean_ctor_set_uint8(x_2670, sizeof(void*)*3, x_2658); +x_2671 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2671, 0, x_2670); +x_2672 = lean_st_ref_get(x_7, x_2666); +x_2673 = lean_ctor_get(x_2672, 0); +lean_inc(x_2673); +x_2674 = lean_ctor_get(x_2672, 1); +lean_inc(x_2674); +lean_dec(x_2672); +x_2675 = lean_ctor_get(x_2673, 0); +lean_inc(x_2675); +lean_dec(x_2673); +x_2676 = l_Lean_Environment_addAndCompile(x_2675, x_2667, x_2671); +lean_dec(x_2671); +if (lean_obj_tag(x_2676) == 0) +{ +lean_object* x_2677; lean_object* x_2678; lean_object* x_2679; lean_object* x_2680; +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_1); +x_2677 = lean_ctor_get(x_2676, 0); +lean_inc(x_2677); +lean_dec(x_2676); +x_2678 = l_Lean_KernelException_toMessageData(x_2677, x_2667); +x_2679 = lean_ctor_get(x_6, 3); +lean_inc(x_2679); +x_2680 = l_Lean_MessageData_toString(x_2678, x_2674); +if (lean_obj_tag(x_2680) == 0) +{ +lean_object* x_2681; lean_object* x_2682; lean_object* x_2683; lean_object* x_2684; lean_object* x_2685; uint8_t x_2686; +lean_dec(x_2679); +x_2681 = lean_ctor_get(x_2680, 0); +lean_inc(x_2681); +x_2682 = lean_ctor_get(x_2680, 1); +lean_inc(x_2682); +lean_dec(x_2680); +x_2683 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2683, 0, x_2681); +x_2684 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2684, 0, x_2683); +x_2685 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2684, x_4, x_5, x_6, x_7, x_2682); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2686 = !lean_is_exclusive(x_2685); +if (x_2686 == 0) +{ +return x_2685; +} +else +{ +lean_object* x_2687; lean_object* x_2688; lean_object* x_2689; +x_2687 = lean_ctor_get(x_2685, 0); +x_2688 = lean_ctor_get(x_2685, 1); +lean_inc(x_2688); +lean_inc(x_2687); +lean_dec(x_2685); +x_2689 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2689, 0, x_2687); +lean_ctor_set(x_2689, 1, x_2688); +return x_2689; +} +} +else +{ +uint8_t x_2690; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2690 = !lean_is_exclusive(x_2680); +if (x_2690 == 0) +{ +lean_object* x_2691; lean_object* x_2692; lean_object* x_2693; lean_object* x_2694; lean_object* x_2695; +x_2691 = lean_ctor_get(x_2680, 0); +x_2692 = lean_io_error_to_string(x_2691); +x_2693 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2693, 0, x_2692); +x_2694 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2694, 0, x_2693); +x_2695 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2695, 0, x_2679); +lean_ctor_set(x_2695, 1, x_2694); +lean_ctor_set(x_2680, 0, x_2695); +return x_2680; +} +else +{ +lean_object* x_2696; lean_object* x_2697; lean_object* x_2698; lean_object* x_2699; lean_object* x_2700; lean_object* x_2701; lean_object* x_2702; +x_2696 = lean_ctor_get(x_2680, 0); +x_2697 = lean_ctor_get(x_2680, 1); +lean_inc(x_2697); +lean_inc(x_2696); +lean_dec(x_2680); +x_2698 = lean_io_error_to_string(x_2696); +x_2699 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2699, 0, x_2698); +x_2700 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2700, 0, x_2699); +x_2701 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2701, 0, x_2679); +lean_ctor_set(x_2701, 1, x_2700); +x_2702 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2702, 0, x_2701); +lean_ctor_set(x_2702, 1, x_2697); +return x_2702; +} +} +} +else +{ +lean_object* x_2703; +x_2703 = lean_ctor_get(x_2676, 0); +lean_inc(x_2703); +lean_dec(x_2676); +x_2640 = x_2703; +x_2641 = x_2674; +goto block_2656; +} +} +else +{ +uint8_t x_2704; +lean_dec(x_2660); +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2704 = !lean_is_exclusive(x_2664); +if (x_2704 == 0) +{ +return x_2664; +} +else +{ +lean_object* x_2705; lean_object* x_2706; lean_object* x_2707; +x_2705 = lean_ctor_get(x_2664, 0); +x_2706 = lean_ctor_get(x_2664, 1); +lean_inc(x_2706); +lean_inc(x_2705); +lean_dec(x_2664); +x_2707 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2707, 0, x_2705); +lean_ctor_set(x_2707, 1, x_2706); +return x_2707; +} +} +} +else +{ +uint8_t x_2708; +lean_dec(x_2619); +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2708 = !lean_is_exclusive(x_2659); +if (x_2708 == 0) +{ +return x_2659; +} +else +{ +lean_object* x_2709; lean_object* x_2710; lean_object* x_2711; +x_2709 = lean_ctor_get(x_2659, 0); +x_2710 = lean_ctor_get(x_2659, 1); +lean_inc(x_2710); +lean_inc(x_2709); +lean_dec(x_2659); +x_2711 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2711, 0, x_2709); +lean_ctor_set(x_2711, 1, x_2710); +return x_2711; +} +} +block_2656: +{ +lean_object* x_2642; lean_object* x_2643; lean_object* x_2644; lean_object* x_2645; lean_object* x_2646; lean_object* x_2647; +lean_inc(x_2615); +x_2642 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_2613, x_2640, x_2600, x_2615); +x_2643 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_2642, x_4, x_5, x_6, x_7, x_2641); +x_2644 = lean_ctor_get(x_2643, 1); +lean_inc(x_2644); +lean_dec(x_2643); +x_2645 = lean_box(0); +x_2646 = l_Lean_mkConst(x_2615, x_2645); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2646); +x_2647 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2646, x_4, x_5, x_6, x_7, x_2644); +if (lean_obj_tag(x_2647) == 0) +{ +lean_object* x_2648; lean_object* x_2649; lean_object* x_2650; lean_object* x_2651; +x_2648 = lean_ctor_get(x_2647, 0); +lean_inc(x_2648); +x_2649 = lean_ctor_get(x_2647, 1); +lean_inc(x_2649); +lean_dec(x_2647); +x_2650 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__72___boxed), 11, 4); +lean_closure_set(x_2650, 0, x_1); +lean_closure_set(x_2650, 1, x_2620); +lean_closure_set(x_2650, 2, x_2607); +lean_closure_set(x_2650, 3, x_2646); +x_2651 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2648, x_2650, x_4, x_5, x_6, x_7, x_2649); +return x_2651; +} +else +{ +uint8_t x_2652; +lean_dec(x_2646); +lean_dec(x_2607); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2652 = !lean_is_exclusive(x_2647); +if (x_2652 == 0) +{ +return x_2647; +} +else +{ +lean_object* x_2653; lean_object* x_2654; lean_object* x_2655; +x_2653 = lean_ctor_get(x_2647, 0); +x_2654 = lean_ctor_get(x_2647, 1); +lean_inc(x_2654); +lean_inc(x_2653); +lean_dec(x_2647); +x_2655 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2655, 0, x_2653); +lean_ctor_set(x_2655, 1, x_2654); +return x_2655; +} +} +} +} +else +{ +lean_dec(x_2639); +if (x_3 == 0) +{ +lean_object* x_2712; lean_object* x_2713; lean_object* x_2714; lean_object* x_2715; lean_object* x_2716; lean_object* x_2717; uint8_t x_2718; +lean_dec(x_2638); +lean_dec(x_2619); +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2607); +lean_dec(x_1); +x_2712 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_2712, 0, x_2600); +x_2713 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12; +x_2714 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2714, 0, x_2713); +lean_ctor_set(x_2714, 1, x_2712); +x_2715 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15; +x_2716 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2716, 0, x_2714); +lean_ctor_set(x_2716, 1, x_2715); +x_2717 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2716, x_4, x_5, x_6, x_7, x_2623); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2718 = !lean_is_exclusive(x_2717); +if (x_2718 == 0) +{ +return x_2717; +} +else +{ +lean_object* x_2719; lean_object* x_2720; lean_object* x_2721; +x_2719 = lean_ctor_get(x_2717, 0); +x_2720 = lean_ctor_get(x_2717, 1); +lean_inc(x_2720); +lean_inc(x_2719); +lean_dec(x_2717); +x_2721 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2721, 0, x_2719); +lean_ctor_set(x_2721, 1, x_2720); +return x_2721; +} +} +else +{ +lean_object* x_2722; lean_object* x_2723; lean_object* x_2739; uint8_t x_2740; lean_object* x_2741; +x_2739 = l_Lean_ParserCompiler_preprocessParserBody___rarg(x_1, x_2638); +x_2740 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_2741 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2739, x_2740, x_4, x_5, x_6, x_7, x_2623); +if (lean_obj_tag(x_2741) == 0) +{ +lean_object* x_2742; lean_object* x_2743; lean_object* x_2744; lean_object* x_2745; lean_object* x_2746; +x_2742 = lean_ctor_get(x_2741, 0); +lean_inc(x_2742); +x_2743 = lean_ctor_get(x_2741, 1); +lean_inc(x_2743); +lean_dec(x_2741); +x_2744 = l_Lean_mkAppStx___closed__4; +lean_inc(x_1); +x_2745 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__77___boxed), 9, 2); +lean_closure_set(x_2745, 0, x_1); +lean_closure_set(x_2745, 1, x_2744); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_2746 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2619, x_2745, x_4, x_5, x_6, x_7, x_2743); +if (lean_obj_tag(x_2746) == 0) +{ +lean_object* x_2747; lean_object* x_2748; lean_object* x_2749; lean_object* x_2750; lean_object* x_2751; lean_object* x_2752; lean_object* x_2753; lean_object* x_2754; lean_object* x_2755; lean_object* x_2756; lean_object* x_2757; lean_object* x_2758; +x_2747 = lean_ctor_get(x_2746, 0); +lean_inc(x_2747); +x_2748 = lean_ctor_get(x_2746, 1); +lean_inc(x_2748); +lean_dec(x_2746); +x_2749 = lean_box(0); +lean_inc(x_2615); +x_2750 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_2750, 0, x_2615); +lean_ctor_set(x_2750, 1, x_2749); +lean_ctor_set(x_2750, 2, x_2747); +x_2751 = lean_box(0); +x_2752 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_2752, 0, x_2750); +lean_ctor_set(x_2752, 1, x_2742); +lean_ctor_set(x_2752, 2, x_2751); +lean_ctor_set_uint8(x_2752, sizeof(void*)*3, x_2740); +x_2753 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2753, 0, x_2752); +x_2754 = lean_st_ref_get(x_7, x_2748); +x_2755 = lean_ctor_get(x_2754, 0); +lean_inc(x_2755); +x_2756 = lean_ctor_get(x_2754, 1); +lean_inc(x_2756); +lean_dec(x_2754); +x_2757 = lean_ctor_get(x_2755, 0); +lean_inc(x_2757); +lean_dec(x_2755); +x_2758 = l_Lean_Environment_addAndCompile(x_2757, x_2749, x_2753); +lean_dec(x_2753); +if (lean_obj_tag(x_2758) == 0) +{ +lean_object* x_2759; lean_object* x_2760; lean_object* x_2761; lean_object* x_2762; +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_1); +x_2759 = lean_ctor_get(x_2758, 0); +lean_inc(x_2759); +lean_dec(x_2758); +x_2760 = l_Lean_KernelException_toMessageData(x_2759, x_2749); +x_2761 = lean_ctor_get(x_6, 3); +lean_inc(x_2761); +x_2762 = l_Lean_MessageData_toString(x_2760, x_2756); +if (lean_obj_tag(x_2762) == 0) +{ +lean_object* x_2763; lean_object* x_2764; lean_object* x_2765; lean_object* x_2766; lean_object* x_2767; uint8_t x_2768; +lean_dec(x_2761); +x_2763 = lean_ctor_get(x_2762, 0); +lean_inc(x_2763); +x_2764 = lean_ctor_get(x_2762, 1); +lean_inc(x_2764); +lean_dec(x_2762); +x_2765 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2765, 0, x_2763); +x_2766 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2766, 0, x_2765); +x_2767 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2766, x_4, x_5, x_6, x_7, x_2764); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2768 = !lean_is_exclusive(x_2767); +if (x_2768 == 0) +{ +return x_2767; +} +else +{ +lean_object* x_2769; lean_object* x_2770; lean_object* x_2771; +x_2769 = lean_ctor_get(x_2767, 0); +x_2770 = lean_ctor_get(x_2767, 1); +lean_inc(x_2770); +lean_inc(x_2769); +lean_dec(x_2767); +x_2771 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2771, 0, x_2769); +lean_ctor_set(x_2771, 1, x_2770); +return x_2771; +} +} +else +{ +uint8_t x_2772; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_2772 = !lean_is_exclusive(x_2762); +if (x_2772 == 0) +{ +lean_object* x_2773; lean_object* x_2774; lean_object* x_2775; lean_object* x_2776; lean_object* x_2777; +x_2773 = lean_ctor_get(x_2762, 0); +x_2774 = lean_io_error_to_string(x_2773); +x_2775 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2775, 0, x_2774); +x_2776 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2776, 0, x_2775); +x_2777 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2777, 0, x_2761); +lean_ctor_set(x_2777, 1, x_2776); +lean_ctor_set(x_2762, 0, x_2777); +return x_2762; +} +else +{ +lean_object* x_2778; lean_object* x_2779; lean_object* x_2780; lean_object* x_2781; lean_object* x_2782; lean_object* x_2783; lean_object* x_2784; +x_2778 = lean_ctor_get(x_2762, 0); +x_2779 = lean_ctor_get(x_2762, 1); +lean_inc(x_2779); +lean_inc(x_2778); +lean_dec(x_2762); +x_2780 = lean_io_error_to_string(x_2778); +x_2781 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2781, 0, x_2780); +x_2782 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2782, 0, x_2781); +x_2783 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2783, 0, x_2761); +lean_ctor_set(x_2783, 1, x_2782); +x_2784 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2784, 0, x_2783); +lean_ctor_set(x_2784, 1, x_2779); +return x_2784; +} +} +} +else +{ +lean_object* x_2785; +x_2785 = lean_ctor_get(x_2758, 0); +lean_inc(x_2785); +lean_dec(x_2758); +x_2722 = x_2785; +x_2723 = x_2756; +goto block_2738; +} +} +else +{ +uint8_t x_2786; +lean_dec(x_2742); +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2786 = !lean_is_exclusive(x_2746); +if (x_2786 == 0) +{ +return x_2746; +} +else +{ +lean_object* x_2787; lean_object* x_2788; lean_object* x_2789; +x_2787 = lean_ctor_get(x_2746, 0); +x_2788 = lean_ctor_get(x_2746, 1); +lean_inc(x_2788); +lean_inc(x_2787); +lean_dec(x_2746); +x_2789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2789, 0, x_2787); +lean_ctor_set(x_2789, 1, x_2788); +return x_2789; +} +} +} +else +{ +uint8_t x_2790; +lean_dec(x_2619); +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2790 = !lean_is_exclusive(x_2741); +if (x_2790 == 0) +{ +return x_2741; +} +else +{ +lean_object* x_2791; lean_object* x_2792; lean_object* x_2793; +x_2791 = lean_ctor_get(x_2741, 0); +x_2792 = lean_ctor_get(x_2741, 1); +lean_inc(x_2792); +lean_inc(x_2791); +lean_dec(x_2741); +x_2793 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2793, 0, x_2791); +lean_ctor_set(x_2793, 1, x_2792); +return x_2793; +} +} +block_2738: +{ +lean_object* x_2724; lean_object* x_2725; lean_object* x_2726; lean_object* x_2727; lean_object* x_2728; lean_object* x_2729; +lean_inc(x_2615); +x_2724 = l_Lean_ParserCompiler_CombinatorAttribute_setDeclFor(x_2613, x_2722, x_2600, x_2615); +x_2725 = l_Lean_setEnv___at_Lean_Meta_setInlineAttribute___spec__1(x_2724, x_4, x_5, x_6, x_7, x_2723); +x_2726 = lean_ctor_get(x_2725, 1); +lean_inc(x_2726); +lean_dec(x_2725); +x_2727 = lean_box(0); +x_2728 = l_Lean_mkConst(x_2615, x_2727); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2728); +x_2729 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2728, x_4, x_5, x_6, x_7, x_2726); +if (lean_obj_tag(x_2729) == 0) +{ +lean_object* x_2730; lean_object* x_2731; lean_object* x_2732; lean_object* x_2733; +x_2730 = lean_ctor_get(x_2729, 0); +lean_inc(x_2730); +x_2731 = lean_ctor_get(x_2729, 1); +lean_inc(x_2731); +lean_dec(x_2729); +x_2732 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__76___boxed), 11, 4); +lean_closure_set(x_2732, 0, x_1); +lean_closure_set(x_2732, 1, x_2620); +lean_closure_set(x_2732, 2, x_2607); +lean_closure_set(x_2732, 3, x_2728); +x_2733 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2730, x_2732, x_4, x_5, x_6, x_7, x_2731); +return x_2733; +} +else +{ +uint8_t x_2734; +lean_dec(x_2728); +lean_dec(x_2607); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2734 = !lean_is_exclusive(x_2729); +if (x_2734 == 0) +{ +return x_2729; +} +else +{ +lean_object* x_2735; lean_object* x_2736; lean_object* x_2737; +x_2735 = lean_ctor_get(x_2729, 0); +x_2736 = lean_ctor_get(x_2729, 1); +lean_inc(x_2736); +lean_inc(x_2735); +lean_dec(x_2729); +x_2737 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2737, 0, x_2735); +lean_ctor_set(x_2737, 1, x_2736); +return x_2737; +} +} +} +} +} +} +} +} +else +{ +uint8_t x_2824; +lean_dec(x_2619); +lean_dec(x_2617); +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2612); +lean_dec(x_2611); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2824 = !lean_is_exclusive(x_2621); +if (x_2824 == 0) +{ +return x_2621; +} +else +{ +lean_object* x_2825; lean_object* x_2826; lean_object* x_2827; +x_2825 = lean_ctor_get(x_2621, 0); +x_2826 = lean_ctor_get(x_2621, 1); +lean_inc(x_2826); +lean_inc(x_2825); +lean_dec(x_2621); +x_2827 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2827, 0, x_2825); +lean_ctor_set(x_2827, 1, x_2826); +return x_2827; +} +} +} +else +{ +uint8_t x_2828; +lean_dec(x_2615); +lean_dec(x_2613); +lean_dec(x_2612); +lean_dec(x_2611); +lean_dec(x_2607); +lean_dec(x_2600); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2828 = !lean_is_exclusive(x_2616); +if (x_2828 == 0) +{ +return x_2616; +} +else +{ +lean_object* x_2829; lean_object* x_2830; lean_object* x_2831; +x_2829 = lean_ctor_get(x_2616, 0); +x_2830 = lean_ctor_get(x_2616, 1); +lean_inc(x_2830); +lean_inc(x_2829); +lean_dec(x_2616); +x_2831 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2831, 0, x_2829); +lean_ctor_set(x_2831, 1, x_2830); +return x_2831; +} +} +} +else +{ +lean_object* x_2832; lean_object* x_2833; lean_object* x_2834; lean_object* x_2835; +lean_dec(x_2613); +lean_dec(x_2612); +lean_dec(x_2611); +lean_dec(x_2600); +lean_dec(x_10); +x_2832 = lean_ctor_get(x_2614, 0); +lean_inc(x_2832); +lean_dec(x_2614); +x_2833 = lean_box(0); +x_2834 = l_Lean_mkConst(x_2832, x_2833); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2834); +x_2835 = l_Lean_Meta_inferType___at_Lean_ParserCompiler_compileParserBody___main___spec__1(x_2834, x_4, x_5, x_6, x_7, x_2610); +if (lean_obj_tag(x_2835) == 0) +{ +lean_object* x_2836; lean_object* x_2837; lean_object* x_2838; lean_object* x_2839; +x_2836 = lean_ctor_get(x_2835, 0); +lean_inc(x_2836); +x_2837 = lean_ctor_get(x_2835, 1); +lean_inc(x_2837); +lean_dec(x_2835); +x_2838 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__78___boxed), 10, 3); +lean_closure_set(x_2838, 0, x_1); +lean_closure_set(x_2838, 1, x_2607); +lean_closure_set(x_2838, 2, x_2834); +x_2839 = l_Lean_Meta_forallTelescope___at___private_Lean_Meta_InferType_0__Lean_Meta_inferForallType___spec__3___rarg(x_2836, x_2838, x_4, x_5, x_6, x_7, x_2837); +return x_2839; +} +else +{ +uint8_t x_2840; +lean_dec(x_2834); +lean_dec(x_2607); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2840 = !lean_is_exclusive(x_2835); +if (x_2840 == 0) +{ +return x_2835; +} +else +{ +lean_object* x_2841; lean_object* x_2842; lean_object* x_2843; +x_2841 = lean_ctor_get(x_2835, 0); +x_2842 = lean_ctor_get(x_2835, 1); +lean_inc(x_2842); +lean_inc(x_2841); +lean_dec(x_2835); +x_2843 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2843, 0, x_2841); +lean_ctor_set(x_2843, 1, x_2842); +return x_2843; +} +} +} +} +else +{ +lean_object* x_2844; +lean_dec(x_2589); +lean_dec(x_1); +x_2844 = lean_box(0); +x_2590 = x_2844; +goto block_2599; +} +block_2599: +{ +lean_object* x_2591; lean_object* x_2592; lean_object* x_2593; lean_object* x_2594; lean_object* x_2595; lean_object* x_2596; lean_object* x_2597; lean_object* x_2598; +lean_dec(x_2590); +x_2591 = lean_expr_dbg_to_string(x_10); +lean_dec(x_10); +x_2592 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2592, 0, x_2591); +x_2593 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2593, 0, x_2592); +x_2594 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__3; +x_2595 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2595, 0, x_2594); +lean_ctor_set(x_2595, 1, x_2593); +x_2596 = l_Lean_throwUnknownConstant___rarg___closed__5; +x_2597 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_2597, 0, x_2595); +lean_ctor_set(x_2597, 1, x_2596); +x_2598 = l_Lean_throwError___at_Lean_Meta_mkWHNFRef___spec__1___rarg(x_2597, x_4, x_5, x_6, x_7, x_2588); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_2598; +} +} +} +} +else +{ +uint8_t x_2845; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_2845 = !lean_is_exclusive(x_9); +if (x_2845 == 0) +{ +return x_9; +} +else +{ +lean_object* x_2846; lean_object* x_2847; lean_object* x_2848; +x_2846 = lean_ctor_get(x_9, 0); +x_2847 = lean_ctor_get(x_9, 1); +lean_inc(x_2847); +lean_inc(x_2846); +lean_dec(x_9); +x_2848 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2848, 0, x_2846); +lean_ctor_set(x_2848, 1, x_2847); +return x_2848; } } } @@ -15955,7 +28463,7 @@ lean_object* l_Lean_ParserCompiler_compileParserBody___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg), 7, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___main___rarg___boxed), 8, 0); return x_2; } } @@ -15993,11 +28501,53 @@ lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -16006,81 +28556,38 @@ lean_dec(x_1); return x_8; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_12; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__5___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); return x_13; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_4); lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__7___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_12; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_13; -} -} -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_4); -lean_dec(x_2); -return x_13; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__10___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_12; -} -} lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__11___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { @@ -16102,58 +28609,57 @@ lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_12; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__13___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); return x_13; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_4); lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__15___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_12; } } -lean_object* l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_8; -x_8 = l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_6); +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__16___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_5); lean_dec(x_4); -return x_8; +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; } } lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__18___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { @@ -16177,79 +28683,78 @@ lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_12; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__20___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); return x_13; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_4); lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__22___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_12; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__23___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); return x_13; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__24(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_4); lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__25___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__26(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); lean_dec(x_2); -return x_12; +return x_13; } } lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__27___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { @@ -16305,43 +28810,508 @@ lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_12; -} -} -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__32___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); return x_13; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__33(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_4); lean_dec(x_2); return x_13; } } -lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__34___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__35___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__36___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +lean_object* l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__37___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_mkLambdaFVars___at_Lean_ParserCompiler_compileParserBody___main___spec__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_8; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__38___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__39(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__40___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__41___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__41(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__42___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__43___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__43(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__44___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__45___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__46___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__46(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__47___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__48___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__49___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__50___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__50(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__51___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__52___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__53___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__53(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__54___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__55___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__55(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__56___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__57___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__57(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__58___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__59___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__60___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__60(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__61___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__62___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__62(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__63___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__64___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__64(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__65___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__66___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__67___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__67(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__68___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__69___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__69(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__70___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__71___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__71(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__72___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__73___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__74___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__74(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__75___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__76___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__76(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__77___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__78___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__78(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec(x_2); +return x_13; +} +} +lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__79___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -16370,83 +29340,83 @@ lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -return x_11; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); return x_12; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -return x_11; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); return x_12; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); return x_11; } } +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -16469,50 +29439,61 @@ lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -return x_11; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); return x_12; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); return x_11; } } +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -16535,81 +29516,81 @@ lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -return x_11; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__19(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); return x_12; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); return x_11; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); return x_12; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__23(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__24(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); -lean_dec(x_2); -return x_11; +lean_dec(x_3); +lean_dec(x_1); +return x_10; } } lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -16667,66 +29648,559 @@ lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -return x_11; -} -} -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__31(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); return x_12; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_10; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__33(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__35___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__34(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__35(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); return x_11; } } -lean_object* l_Lean_ParserCompiler_compileParserBody___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__37___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_8; -x_8 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_8; +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__38(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__39(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__40___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__40(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__41___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__41(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__42___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__42(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__43___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__43(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +return x_11; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__44___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__44(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__45___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__45(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__46___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__46(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__47___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__47(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__48___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__49___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__49(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__50___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__50(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +return x_11; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__51___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__51(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__52___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__52(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__53___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__53(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__54___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__54(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__55___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__55(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__56___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__56(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__57___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__57(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +return x_11; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__58___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__58(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__59___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__59(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__60___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__60(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__61___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__61(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__62___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__62(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__63___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__63(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__64___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__64(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +return x_11; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__65___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__65(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__66___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__66(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__67___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__67(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__68___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__68(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__69___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__69(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__70___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__70(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__71___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__71(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +return x_11; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__72___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__72(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__73___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__73(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__74___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__74(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__75___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__75(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__76___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__76(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_12; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__77___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__77(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__78___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_ParserCompiler_compileParserBody___main___rarg___lambda__78(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +return x_11; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_3); +lean_dec(x_3); +x_10 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2, x_9, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +lean_object* l_Lean_ParserCompiler_compileParserBody___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; } } lean_object* l_Lean_ParserCompiler_compileParserBody(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___rarg), 7, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParserBody___rarg___boxed), 8, 0); return x_2; } } +lean_object* l_Lean_ParserCompiler_compileParserBody___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_3); +lean_dec(x_3); +x_10 = l_Lean_ParserCompiler_compileParserBody___rarg(x_1, x_2, x_9, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} static lean_object* _init_l_Lean_ParserCompiler_compileParser___rarg___closed__1() { _start: { @@ -16746,186 +30220,186 @@ lean_closure_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_ParserCompiler_compileParser___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_ParserCompiler_compileParser___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_8 = lean_box(0); +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_9 = lean_box(0); lean_inc(x_2); -x_9 = l_Lean_mkConst(x_2, x_8); -x_10 = l_Lean_Meta_State_inhabited___closed__7; -x_11 = lean_st_mk_ref(x_10, x_7); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); +x_10 = l_Lean_mkConst(x_2, x_9); +x_11 = l_Lean_Meta_State_inhabited___closed__7; +x_12 = lean_st_mk_ref(x_11, x_8); +x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); -lean_dec(x_11); -x_14 = l_Lean_Meta_hasEval___rarg___closed__2; -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_12); -lean_inc(x_1); -x_15 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_9, x_14, x_12, x_5, x_6, x_13); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -x_17 = lean_ctor_get(x_15, 1); -lean_inc(x_17); -lean_dec(x_15); -x_18 = lean_st_ref_get(x_12, x_17); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); lean_dec(x_12); -if (lean_obj_tag(x_16) == 4) +x_15 = l_Lean_Meta_hasEval___rarg___closed__2; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_13); +lean_inc(x_1); +x_16 = l_Lean_ParserCompiler_compileParserBody___main___rarg(x_1, x_10, x_4, x_15, x_13, x_6, x_7, x_14); +if (lean_obj_tag(x_16) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_19 = lean_ctor_get(x_18, 1); -lean_inc(x_19); -lean_dec(x_18); -x_20 = lean_ctor_get(x_16, 0); -lean_inc(x_20); +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); lean_dec(x_16); -x_21 = lean_mk_syntax_ident(x_2); -x_22 = l_Lean_mkOptionalNode___closed__2; -x_23 = lean_array_push(x_22, x_21); -x_24 = l_Lean_nullKind; -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_25, 1, x_23); +x_19 = lean_st_ref_get(x_13, x_18); +lean_dec(x_13); +if (lean_obj_tag(x_17) == 4) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +lean_dec(x_19); +x_21 = lean_ctor_get(x_17, 0); +lean_inc(x_21); +lean_dec(x_17); +x_22 = lean_mk_syntax_ident(x_2); +x_23 = l_Lean_mkOptionalNode___closed__2; +x_24 = lean_array_push(x_23, x_22); +x_25 = l_Lean_nullKind; +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); if (x_3 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; lean_object* x_30; -x_26 = lean_ctor_get(x_1, 1); -lean_inc(x_26); -lean_dec(x_1); -x_27 = lean_ctor_get(x_26, 0); +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; +x_27 = lean_ctor_get(x_1, 1); lean_inc(x_27); -lean_dec(x_26); -x_28 = lean_ctor_get(x_27, 1); +lean_dec(x_1); +x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); lean_dec(x_27); -x_29 = 1; -x_30 = l_Lean_addAttribute(x_20, x_28, x_25, x_29, x_4, x_5, x_6, x_19); -if (lean_obj_tag(x_30) == 0) +x_29 = lean_ctor_get(x_28, 1); +lean_inc(x_29); +lean_dec(x_28); +x_30 = 1; +x_31 = l_Lean_addAttribute(x_21, x_29, x_26, x_30, x_5, x_6, x_7, x_20); +if (lean_obj_tag(x_31) == 0) { -return x_30; +return x_31; } else { -uint8_t x_31; -x_31 = !lean_is_exclusive(x_30); -if (x_31 == 0) +uint8_t x_32; +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) { -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_30, 0); -lean_dec(x_32); -x_33 = lean_box(0); -lean_ctor_set_tag(x_30, 0); -lean_ctor_set(x_30, 0, x_33); -return x_30; +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_31, 0); +lean_dec(x_33); +x_34 = lean_box(0); +lean_ctor_set_tag(x_31, 0); +lean_ctor_set(x_31, 0, x_34); +return x_31; } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_30, 1); -lean_inc(x_34); -lean_dec(x_30); -x_35 = lean_box(0); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_34); -return x_36; +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_31, 1); +lean_inc(x_35); +lean_dec(x_31); +x_36 = lean_box(0); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_35); +return x_37; } } } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; -x_37 = lean_ctor_get(x_1, 1); -lean_inc(x_37); -lean_dec(x_1); -x_38 = lean_ctor_get(x_37, 0); +lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; lean_object* x_42; +x_38 = lean_ctor_get(x_1, 1); lean_inc(x_38); -lean_dec(x_37); +lean_dec(x_1); x_39 = lean_ctor_get(x_38, 0); lean_inc(x_39); lean_dec(x_38); -x_40 = 1; -x_41 = l_Lean_addAttribute(x_20, x_39, x_25, x_40, x_4, x_5, x_6, x_19); -if (lean_obj_tag(x_41) == 0) +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +lean_dec(x_39); +x_41 = 1; +x_42 = l_Lean_addAttribute(x_21, x_40, x_26, x_41, x_5, x_6, x_7, x_20); +if (lean_obj_tag(x_42) == 0) { -return x_41; +return x_42; } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_41); -if (x_42 == 0) +uint8_t x_43; +x_43 = !lean_is_exclusive(x_42); +if (x_43 == 0) { -lean_object* x_43; lean_object* x_44; -x_43 = lean_ctor_get(x_41, 0); -lean_dec(x_43); -x_44 = lean_box(0); -lean_ctor_set_tag(x_41, 0); -lean_ctor_set(x_41, 0, x_44); -return x_41; +lean_object* x_44; lean_object* x_45; +x_44 = lean_ctor_get(x_42, 0); +lean_dec(x_44); +x_45 = lean_box(0); +lean_ctor_set_tag(x_42, 0); +lean_ctor_set(x_42, 0, x_45); +return x_42; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_41, 1); -lean_inc(x_45); -lean_dec(x_41); -x_46 = lean_box(0); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_45); -return x_47; +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_42, 1); +lean_inc(x_46); +lean_dec(x_42); +x_47 = lean_box(0); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_46); +return x_48; } } } } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -lean_dec(x_16); +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +lean_dec(x_17); lean_dec(x_2); lean_dec(x_1); -x_48 = lean_ctor_get(x_18, 1); -lean_inc(x_48); -lean_dec(x_18); -x_49 = l_Lean_ParserCompiler_compileParser___rarg___closed__2; -x_50 = l_unreachable_x21___rarg(x_49); -x_51 = lean_apply_4(x_50, x_4, x_5, x_6, x_48); -return x_51; +x_49 = lean_ctor_get(x_19, 1); +lean_inc(x_49); +lean_dec(x_19); +x_50 = l_Lean_ParserCompiler_compileParser___rarg___closed__2; +x_51 = l_unreachable_x21___rarg(x_50); +x_52 = lean_apply_4(x_51, x_5, x_6, x_7, x_49); +return x_52; } } else { -uint8_t x_52; -lean_dec(x_12); +uint8_t x_53; +lean_dec(x_13); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_52 = !lean_is_exclusive(x_15); -if (x_52 == 0) +x_53 = !lean_is_exclusive(x_16); +if (x_53 == 0) { -return x_15; +return x_16; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_15, 0); -x_54 = lean_ctor_get(x_15, 1); +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_16, 0); +x_55 = lean_ctor_get(x_16, 1); +lean_inc(x_55); lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_15); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +lean_dec(x_16); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; } } } @@ -16934,18 +30408,20 @@ lean_object* l_Lean_ParserCompiler_compileParser(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParser___rarg___boxed), 7, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_compileParser___rarg___boxed), 8, 0); return x_2; } } -lean_object* l_Lean_ParserCompiler_compileParser___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_ParserCompiler_compileParser___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -uint8_t x_8; lean_object* x_9; -x_8 = lean_unbox(x_3); +uint8_t x_9; uint8_t x_10; lean_object* x_11; +x_9 = lean_unbox(x_3); lean_dec(x_3); -x_9 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_8, x_4, x_5, x_6, x_7); -return x_9; +x_10 = lean_unbox(x_4); +lean_dec(x_4); +x_11 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_9, x_10, x_5, x_6, x_7, x_8); +return x_11; } } lean_object* l_Lean_ofExcept___at_Lean_ParserCompiler_interpretParser___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -17012,516 +30488,516 @@ x_2 = lean_alloc_closure((void*)(l_Lean_evalConst___at_Lean_ParserCompiler_inter return x_2; } } -lean_object* l_Lean_ParserCompiler_interpretParser___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Lean_ParserCompiler_interpretParser___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_7; +lean_object* x_8; lean_inc(x_2); -x_7 = l_Lean_getConstInfo___at_Lean_KeyedDeclsAttribute_init___spec__5(x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_7) == 0) +x_8 = l_Lean_getConstInfo___at_Lean_KeyedDeclsAttribute_init___spec__5(x_2, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_7, 1); +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_8, 0); lean_inc(x_9); -lean_dec(x_7); -x_10 = lean_st_ref_get(x_5, x_9); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_12 = lean_ctor_get(x_10, 0); -x_13 = lean_ctor_get(x_10, 1); -x_14 = lean_ctor_get(x_12, 0); -lean_inc(x_14); -lean_dec(x_12); -x_15 = l_Lean_ConstantInfo_type(x_8); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); lean_dec(x_8); -x_16 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_17 = l_Lean_Expr_isConstOf(x_15, x_16); -if (x_17 == 0) +x_11 = lean_st_ref_get(x_6, x_10); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) { -lean_object* x_18; uint8_t x_19; -x_18 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_19 = l_Lean_Expr_isConstOf(x_15, x_18); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +lean_dec(x_13); +x_16 = l_Lean_ConstantInfo_type(x_9); +lean_dec(x_9); +x_17 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_18 = l_Lean_Expr_isConstOf(x_16, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_20 = l_Lean_Expr_isConstOf(x_16, x_19); +lean_dec(x_16); +if (x_20 == 0) +{ +lean_object* x_21; lean_dec(x_15); -if (x_19 == 0) -{ -lean_object* x_20; -lean_dec(x_14); -lean_free_object(x_10); -x_20 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_2, x_3, x_4, x_5, x_13); +lean_free_object(x_11); +x_21 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_2, x_4, x_5, x_6, x_14); lean_dec(x_2); -if (lean_obj_tag(x_20) == 0) +if (lean_obj_tag(x_21) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); -lean_dec(x_20); -x_23 = lean_ctor_get(x_1, 3); +x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); +lean_dec(x_21); +x_24 = lean_ctor_get(x_1, 3); +lean_inc(x_24); lean_dec(x_1); -x_24 = lean_apply_5(x_23, x_21, x_3, x_4, x_5, x_22); -return x_24; +x_25 = lean_apply_5(x_24, x_22, x_4, x_5, x_6, x_23); +return x_25; } else { -uint8_t x_25; +uint8_t x_26; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_25 = !lean_is_exclusive(x_20); -if (x_25 == 0) +x_26 = !lean_is_exclusive(x_21); +if (x_26 == 0) { -return x_20; +return x_21; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_20, 0); -x_27 = lean_ctor_get(x_20, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_21, 0); +x_28 = lean_ctor_get(x_21, 1); +lean_inc(x_28); lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_20); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -return x_28; +lean_dec(x_21); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; } } } else { -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_1, 1); -lean_inc(x_29); -x_30 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_29, x_14, x_2); -lean_dec(x_14); -lean_dec(x_29); -if (lean_obj_tag(x_30) == 0) -{ -uint8_t x_31; lean_object* x_32; -lean_free_object(x_10); -x_31 = 0; -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_1); -x_32 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_31, x_3, x_4, x_5, x_13); -if (lean_obj_tag(x_32) == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_33 = lean_ctor_get(x_32, 1); -lean_inc(x_33); -lean_dec(x_32); -x_34 = lean_ctor_get(x_1, 0); -lean_inc(x_34); -lean_dec(x_1); -x_35 = l_Lean_Name_append___main(x_2, x_34); -lean_dec(x_2); -x_36 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_35, x_3, x_4, x_5, x_33); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_35); -return x_36; -} -else -{ -uint8_t x_37; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_37 = !lean_is_exclusive(x_32); -if (x_37 == 0) -{ -return x_32; -} -else -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_38 = lean_ctor_get(x_32, 0); -x_39 = lean_ctor_get(x_32, 1); -lean_inc(x_39); -lean_inc(x_38); -lean_dec(x_32); -x_40 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_39); -return x_40; -} -} -} -else -{ -lean_object* x_41; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_41 = lean_ctor_get(x_30, 0); -lean_inc(x_41); -lean_dec(x_30); -lean_ctor_set(x_10, 0, x_41); -return x_10; -} -} -} -else -{ -lean_object* x_42; lean_object* x_43; +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_1, 1); +lean_inc(x_30); +x_31 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_30, x_15, x_2); lean_dec(x_15); -x_42 = lean_ctor_get(x_1, 1); +lean_dec(x_30); +if (lean_obj_tag(x_31) == 0) +{ +uint8_t x_32; lean_object* x_33; +lean_free_object(x_11); +x_32 = 0; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_33 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_32, x_3, x_4, x_5, x_6, x_14); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +lean_dec(x_33); +x_35 = lean_ctor_get(x_1, 0); +lean_inc(x_35); +lean_dec(x_1); +x_36 = l_Lean_Name_append___main(x_2, x_35); +lean_dec(x_2); +x_37 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_36, x_4, x_5, x_6, x_34); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_36); +return x_37; +} +else +{ +uint8_t x_38; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_38 = !lean_is_exclusive(x_33); +if (x_38 == 0) +{ +return x_33; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_33, 0); +x_40 = lean_ctor_get(x_33, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_33); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} +} +else +{ +lean_object* x_42; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_42 = lean_ctor_get(x_31, 0); lean_inc(x_42); -x_43 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_42, x_14, x_2); -lean_dec(x_14); -lean_dec(x_42); -if (lean_obj_tag(x_43) == 0) -{ -uint8_t x_44; lean_object* x_45; -lean_free_object(x_10); -x_44 = 0; -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_1); -x_45 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_44, x_3, x_4, x_5, x_13); -if (lean_obj_tag(x_45) == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_46 = lean_ctor_get(x_45, 1); -lean_inc(x_46); -lean_dec(x_45); -x_47 = lean_ctor_get(x_1, 0); -lean_inc(x_47); -lean_dec(x_1); -x_48 = l_Lean_Name_append___main(x_2, x_47); -lean_dec(x_2); -x_49 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_48, x_3, x_4, x_5, x_46); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_48); -return x_49; -} -else -{ -uint8_t x_50; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_50 = !lean_is_exclusive(x_45); -if (x_50 == 0) -{ -return x_45; -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_45, 0); -x_52 = lean_ctor_get(x_45, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_45); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -return x_53; +lean_dec(x_31); +lean_ctor_set(x_11, 0, x_42); +return x_11; } } } else { -lean_object* x_54; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_54 = lean_ctor_get(x_43, 0); -lean_inc(x_54); +lean_object* x_43; lean_object* x_44; +lean_dec(x_16); +x_43 = lean_ctor_get(x_1, 1); +lean_inc(x_43); +x_44 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_43, x_15, x_2); +lean_dec(x_15); lean_dec(x_43); -lean_ctor_set(x_10, 0, x_54); -return x_10; +if (lean_obj_tag(x_44) == 0) +{ +uint8_t x_45; lean_object* x_46; +lean_free_object(x_11); +x_45 = 0; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_46 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_45, x_3, x_4, x_5, x_6, x_14); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_47 = lean_ctor_get(x_46, 1); +lean_inc(x_47); +lean_dec(x_46); +x_48 = lean_ctor_get(x_1, 0); +lean_inc(x_48); +lean_dec(x_1); +x_49 = l_Lean_Name_append___main(x_2, x_48); +lean_dec(x_2); +x_50 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_49, x_4, x_5, x_6, x_47); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_49); +return x_50; +} +else +{ +uint8_t x_51; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_51 = !lean_is_exclusive(x_46); +if (x_51 == 0) +{ +return x_46; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_46, 0); +x_53 = lean_ctor_get(x_46, 1); +lean_inc(x_53); +lean_inc(x_52); +lean_dec(x_46); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_52); +lean_ctor_set(x_54, 1, x_53); +return x_54; } } } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_55 = lean_ctor_get(x_10, 0); -x_56 = lean_ctor_get(x_10, 1); -lean_inc(x_56); +lean_object* x_55; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_55 = lean_ctor_get(x_44, 0); lean_inc(x_55); -lean_dec(x_10); -x_57 = lean_ctor_get(x_55, 0); +lean_dec(x_44); +lean_ctor_set(x_11, 0, x_55); +return x_11; +} +} +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; +x_56 = lean_ctor_get(x_11, 0); +x_57 = lean_ctor_get(x_11, 1); lean_inc(x_57); -lean_dec(x_55); -x_58 = l_Lean_ConstantInfo_type(x_8); -lean_dec(x_8); -x_59 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__10; -x_60 = l_Lean_Expr_isConstOf(x_58, x_59); -if (x_60 == 0) +lean_inc(x_56); +lean_dec(x_11); +x_58 = lean_ctor_get(x_56, 0); +lean_inc(x_58); +lean_dec(x_56); +x_59 = l_Lean_ConstantInfo_type(x_9); +lean_dec(x_9); +x_60 = l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16; +x_61 = l_Lean_Expr_isConstOf(x_59, x_60); +if (x_61 == 0) { -lean_object* x_61; uint8_t x_62; -x_61 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; -x_62 = l_Lean_Expr_isConstOf(x_58, x_61); +lean_object* x_62; uint8_t x_63; +x_62 = l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1; +x_63 = l_Lean_Expr_isConstOf(x_59, x_62); +lean_dec(x_59); +if (x_63 == 0) +{ +lean_object* x_64; lean_dec(x_58); -if (x_62 == 0) -{ -lean_object* x_63; -lean_dec(x_57); -x_63 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_2, x_3, x_4, x_5, x_56); +x_64 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_2, x_4, x_5, x_6, x_57); lean_dec(x_2); -if (lean_obj_tag(x_63) == 0) +if (lean_obj_tag(x_64) == 0) { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -x_65 = lean_ctor_get(x_63, 1); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_65 = lean_ctor_get(x_64, 0); lean_inc(x_65); -lean_dec(x_63); -x_66 = lean_ctor_get(x_1, 3); +x_66 = lean_ctor_get(x_64, 1); lean_inc(x_66); +lean_dec(x_64); +x_67 = lean_ctor_get(x_1, 3); +lean_inc(x_67); lean_dec(x_1); -x_67 = lean_apply_5(x_66, x_64, x_3, x_4, x_5, x_65); -return x_67; +x_68 = lean_apply_5(x_67, x_65, x_4, x_5, x_6, x_66); +return x_68; } else { -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); -x_68 = lean_ctor_get(x_63, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_63, 1); +x_69 = lean_ctor_get(x_64, 0); lean_inc(x_69); -if (lean_is_exclusive(x_63)) { - lean_ctor_release(x_63, 0); - lean_ctor_release(x_63, 1); - x_70 = x_63; +x_70 = lean_ctor_get(x_64, 1); +lean_inc(x_70); +if (lean_is_exclusive(x_64)) { + lean_ctor_release(x_64, 0); + lean_ctor_release(x_64, 1); + x_71 = x_64; } else { - lean_dec_ref(x_63); - x_70 = lean_box(0); + lean_dec_ref(x_64); + x_71 = lean_box(0); } -if (lean_is_scalar(x_70)) { - x_71 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_71)) { + x_72 = lean_alloc_ctor(1, 2, 0); } else { - x_71 = x_70; + x_72 = x_71; } -lean_ctor_set(x_71, 0, x_68); -lean_ctor_set(x_71, 1, x_69); -return x_71; +lean_ctor_set(x_72, 0, x_69); +lean_ctor_set(x_72, 1, x_70); +return x_72; } } else { -lean_object* x_72; lean_object* x_73; -x_72 = lean_ctor_get(x_1, 1); -lean_inc(x_72); -x_73 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_72, x_57, x_2); -lean_dec(x_57); -lean_dec(x_72); -if (lean_obj_tag(x_73) == 0) -{ -uint8_t x_74; lean_object* x_75; -x_74 = 0; -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_1); -x_75 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_74, x_3, x_4, x_5, x_56); -if (lean_obj_tag(x_75) == 0) -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_76 = lean_ctor_get(x_75, 1); -lean_inc(x_76); -lean_dec(x_75); -x_77 = lean_ctor_get(x_1, 0); -lean_inc(x_77); -lean_dec(x_1); -x_78 = l_Lean_Name_append___main(x_2, x_77); -lean_dec(x_2); -x_79 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_78, x_3, x_4, x_5, x_76); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_78); -return x_79; -} -else -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_80 = lean_ctor_get(x_75, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_75, 1); -lean_inc(x_81); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_82 = x_75; -} else { - lean_dec_ref(x_75); - x_82 = lean_box(0); -} -if (lean_is_scalar(x_82)) { - x_83 = lean_alloc_ctor(1, 2, 0); -} else { - x_83 = x_82; -} -lean_ctor_set(x_83, 0, x_80); -lean_ctor_set(x_83, 1, x_81); -return x_83; -} -} -else -{ -lean_object* x_84; lean_object* x_85; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_84 = lean_ctor_get(x_73, 0); -lean_inc(x_84); -lean_dec(x_73); -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_56); -return x_85; -} -} -} -else -{ -lean_object* x_86; lean_object* x_87; +lean_object* x_73; lean_object* x_74; +x_73 = lean_ctor_get(x_1, 1); +lean_inc(x_73); +x_74 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_73, x_58, x_2); lean_dec(x_58); -x_86 = lean_ctor_get(x_1, 1); -lean_inc(x_86); -x_87 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_86, x_57, x_2); -lean_dec(x_57); -lean_dec(x_86); -if (lean_obj_tag(x_87) == 0) +lean_dec(x_73); +if (lean_obj_tag(x_74) == 0) { -uint8_t x_88; lean_object* x_89; -x_88 = 0; +uint8_t x_75; lean_object* x_76; +x_75 = 0; +lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_89 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_88, x_3, x_4, x_5, x_56); -if (lean_obj_tag(x_89) == 0) +x_76 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_75, x_3, x_4, x_5, x_6, x_57); +if (lean_obj_tag(x_76) == 0) { -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_90 = lean_ctor_get(x_89, 1); -lean_inc(x_90); -lean_dec(x_89); -x_91 = lean_ctor_get(x_1, 0); -lean_inc(x_91); +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = lean_ctor_get(x_1, 0); +lean_inc(x_78); lean_dec(x_1); -x_92 = l_Lean_Name_append___main(x_2, x_91); +x_79 = l_Lean_Name_append___main(x_2, x_78); lean_dec(x_2); -x_93 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_92, x_3, x_4, x_5, x_90); +x_80 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_79, x_4, x_5, x_6, x_77); +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_92); -return x_93; +lean_dec(x_79); +return x_80; } else { -lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_94 = lean_ctor_get(x_89, 0); -lean_inc(x_94); -x_95 = lean_ctor_get(x_89, 1); -lean_inc(x_95); -if (lean_is_exclusive(x_89)) { - lean_ctor_release(x_89, 0); - lean_ctor_release(x_89, 1); - x_96 = x_89; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_89); - x_96 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_96)) { - x_97 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_97 = x_96; + x_84 = x_83; } -lean_ctor_set(x_97, 0, x_94); -lean_ctor_set(x_97, 1, x_95); -return x_97; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } else { -lean_object* x_98; lean_object* x_99; +lean_object* x_85; lean_object* x_86; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_98 = lean_ctor_get(x_87, 0); -lean_inc(x_98); +x_85 = lean_ctor_get(x_74, 0); +lean_inc(x_85); +lean_dec(x_74); +x_86 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_57); +return x_86; +} +} +} +else +{ +lean_object* x_87; lean_object* x_88; +lean_dec(x_59); +x_87 = lean_ctor_get(x_1, 1); +lean_inc(x_87); +x_88 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_87, x_58, x_2); +lean_dec(x_58); lean_dec(x_87); -x_99 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_56); -return x_99; -} -} -} -} -else +if (lean_obj_tag(x_88) == 0) { -uint8_t x_100; +uint8_t x_89; lean_object* x_90; +x_89 = 0; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_90 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_2, x_89, x_3, x_4, x_5, x_6, x_57); +if (lean_obj_tag(x_90) == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_91 = lean_ctor_get(x_90, 1); +lean_inc(x_91); +lean_dec(x_90); +x_92 = lean_ctor_get(x_1, 0); +lean_inc(x_92); +lean_dec(x_1); +x_93 = l_Lean_Name_append___main(x_2, x_92); +lean_dec(x_2); +x_94 = l_Lean_evalConst___at_Lean_ParserCompiler_interpretParser___spec__1___rarg(x_93, x_4, x_5, x_6, x_91); +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_100 = !lean_is_exclusive(x_7); -if (x_100 == 0) -{ -return x_7; +lean_dec(x_93); +return x_94; } else { -lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_101 = lean_ctor_get(x_7, 0); -x_102 = lean_ctor_get(x_7, 1); +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_95 = lean_ctor_get(x_90, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_90, 1); +lean_inc(x_96); +if (lean_is_exclusive(x_90)) { + lean_ctor_release(x_90, 0); + lean_ctor_release(x_90, 1); + x_97 = x_90; +} else { + lean_dec_ref(x_90); + x_97 = lean_box(0); +} +if (lean_is_scalar(x_97)) { + x_98 = lean_alloc_ctor(1, 2, 0); +} else { + x_98 = x_97; +} +lean_ctor_set(x_98, 0, x_95); +lean_ctor_set(x_98, 1, x_96); +return x_98; +} +} +else +{ +lean_object* x_99; lean_object* x_100; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_99 = lean_ctor_get(x_88, 0); +lean_inc(x_99); +lean_dec(x_88); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_57); +return x_100; +} +} +} +} +else +{ +uint8_t x_101; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_101 = !lean_is_exclusive(x_8); +if (x_101 == 0) +{ +return x_8; +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_8, 0); +x_103 = lean_ctor_get(x_8, 1); +lean_inc(x_103); lean_inc(x_102); -lean_inc(x_101); -lean_dec(x_7); -x_103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_103, 0, x_101); -lean_ctor_set(x_103, 1, x_102); -return x_103; +lean_dec(x_8); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +return x_104; } } } @@ -17530,7 +31006,7 @@ lean_object* l_Lean_ParserCompiler_interpretParser(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_interpretParser___rarg), 6, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_interpretParser___rarg___boxed), 7, 0); return x_2; } } @@ -17558,6 +31034,16 @@ lean_dec(x_1); return x_6; } } +lean_object* l_Lean_ParserCompiler_interpretParser___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_3); +lean_dec(x_3); +x_9 = l_Lean_ParserCompiler_interpretParser___rarg(x_1, x_2, x_8, x_4, x_5, x_6, x_7); +return x_9; +} +} lean_object* l_Lean_ParserCompiler_registerParserCompiler___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -17592,80 +31078,82 @@ _start: { if (x_4 == 0) { -lean_object* x_9; +uint8_t x_9; lean_object* x_10; +x_9 = 1; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_3); lean_inc(x_1); -x_9 = l_Lean_ParserCompiler_interpretParser___rarg(x_1, x_3, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_9) == 0) +x_10 = l_Lean_ParserCompiler_interpretParser___rarg(x_1, x_3, x_9, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_10) == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_9, 1); +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); -lean_dec(x_9); -x_12 = lean_st_ref_get(x_7, x_11); -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_st_ref_get(x_7, x_12); +x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); -lean_dec(x_12); -x_15 = lean_ctor_get(x_13, 0); +x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); lean_dec(x_13); -x_16 = lean_ctor_get(x_1, 1); +x_16 = lean_ctor_get(x_14, 0); lean_inc(x_16); -lean_dec(x_1); -x_17 = lean_ctor_get(x_16, 2); +lean_dec(x_14); +x_17 = lean_ctor_get(x_1, 1); lean_inc(x_17); -lean_dec(x_16); -x_18 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_registerParserCompiler___rarg___lambda__1), 3, 2); -lean_closure_set(x_18, 0, x_3); -lean_closure_set(x_18, 1, x_10); -x_19 = l_Lean_PersistentEnvExtension_modifyState___rarg(x_17, x_15, x_18); +lean_dec(x_1); +x_18 = lean_ctor_get(x_17, 2); +lean_inc(x_18); lean_dec(x_17); -x_20 = l_Lean_setEnv___at_Lean_registerTagAttribute___spec__4(x_19, x_5, x_6, x_7, x_14); +x_19 = lean_alloc_closure((void*)(l_Lean_ParserCompiler_registerParserCompiler___rarg___lambda__1), 3, 2); +lean_closure_set(x_19, 0, x_3); +lean_closure_set(x_19, 1, x_11); +x_20 = l_Lean_PersistentEnvExtension_modifyState___rarg(x_18, x_16, x_19); +lean_dec(x_18); +x_21 = l_Lean_setEnv___at_Lean_registerTagAttribute___spec__4(x_20, x_5, x_6, x_7, x_15); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -return x_20; +return x_21; } else { -uint8_t x_21; +uint8_t x_22; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_1); -x_21 = !lean_is_exclusive(x_9); -if (x_21 == 0) +x_22 = !lean_is_exclusive(x_10); +if (x_22 == 0) { -return x_9; +return x_10; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_9, 0); -x_23 = lean_ctor_get(x_9, 1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_10, 0); +x_24 = lean_ctor_get(x_10, 1); +lean_inc(x_24); lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_9); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); -return x_24; +lean_dec(x_10); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; } } } else { -lean_object* x_25; -x_25 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_3, x_4, x_5, x_6, x_7, x_8); -return x_25; +uint8_t x_26; lean_object* x_27; +x_26 = 1; +x_27 = l_Lean_ParserCompiler_compileParser___rarg(x_1, x_3, x_4, x_26, x_5, x_6, x_7, x_8); +return x_27; } } } @@ -17729,8 +31217,8 @@ if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1 = _init_l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1(); lean_mark_persistent(l_Lean_Expr_ReplaceImpl_replaceUnsafeM___main___at_Lean_ParserCompiler_preprocessParserBody___spec__1___rarg___closed__1); -l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1 = _init_l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1(); -lean_mark_persistent(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__4___rarg___closed__1); +l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1 = _init_l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1(); +lean_mark_persistent(l_Array_iterateM_u2082Aux___main___at_Lean_ParserCompiler_compileParserBody___main___spec__8___rarg___closed__1); l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__1 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__1(); lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__1); l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__2 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__2(); @@ -17757,6 +31245,18 @@ l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12 = _init_l_Lea lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__12); l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13(); lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__13); +l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__14 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__14(); +lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__14); +l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15(); +lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__15); +l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16(); +lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__16); +l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__17 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__17(); +lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__17); +l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__18 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__18(); +lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__18); +l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19 = _init_l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19(); +lean_mark_persistent(l_Lean_ParserCompiler_compileParserBody___main___rarg___closed__19); l_Lean_ParserCompiler_compileParser___rarg___closed__1 = _init_l_Lean_ParserCompiler_compileParser___rarg___closed__1(); lean_mark_persistent(l_Lean_ParserCompiler_compileParser___rarg___closed__1); l_Lean_ParserCompiler_compileParser___rarg___closed__2 = _init_l_Lean_ParserCompiler_compileParser___rarg___closed__2(); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Meta.c b/stage0/stdlib/Lean/PrettyPrinter/Meta.c index 7bcc95dcd4..665912aa65 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Meta.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Meta.c @@ -133,7 +133,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main___elambd lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___elambda__17___closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main___elambda__17___closed__2; extern lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__4; -lean_object* l_Lean_ParserCompiler_interpretParser___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ParserCompiler_interpretParser___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___elambda__12___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___elambda__17___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___elambda__16___rarg(lean_object*, lean_object*, lean_object*); @@ -1659,70 +1659,71 @@ return x_217; } case 21: { -lean_object* x_218; lean_object* x_219; lean_object* x_220; +lean_object* x_218; lean_object* x_219; uint8_t x_220; lean_object* x_221; x_218 = lean_ctor_get(x_1, 0); lean_inc(x_218); lean_dec(x_1); x_219 = l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___closed__10; -x_220 = l_Lean_ParserCompiler_interpretParser___rarg(x_219, x_218, x_2, x_3, x_4, x_5); -return x_220; +x_220 = 0; +x_221 = l_Lean_ParserCompiler_interpretParser___rarg(x_219, x_218, x_220, x_2, x_3, x_4, x_5); +return x_221; } default: { -lean_object* x_221; lean_object* x_222; -x_221 = lean_ctor_get(x_1, 0); -lean_inc(x_221); +lean_object* x_222; lean_object* x_223; +x_222 = lean_ctor_get(x_1, 0); +lean_inc(x_222); lean_dec(x_1); -x_222 = l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main(x_221, x_2, x_3, x_4, x_5); -if (lean_obj_tag(x_222) == 0) +x_223 = l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main(x_222, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_223) == 0) { -uint8_t x_223; -x_223 = !lean_is_exclusive(x_222); -if (x_223 == 0) +uint8_t x_224; +x_224 = !lean_is_exclusive(x_223); +if (x_224 == 0) { -lean_object* x_224; lean_object* x_225; -x_224 = lean_ctor_get(x_222, 0); -x_225 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___elambda__19___boxed), 5, 1); -lean_closure_set(x_225, 0, x_224); -lean_ctor_set(x_222, 0, x_225); -return x_222; +lean_object* x_225; lean_object* x_226; +x_225 = lean_ctor_get(x_223, 0); +x_226 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___elambda__19___boxed), 5, 1); +lean_closure_set(x_226, 0, x_225); +lean_ctor_set(x_223, 0, x_226); +return x_223; } else { -lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_226 = lean_ctor_get(x_222, 0); -x_227 = lean_ctor_get(x_222, 1); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_227 = lean_ctor_get(x_223, 0); +x_228 = lean_ctor_get(x_223, 1); +lean_inc(x_228); lean_inc(x_227); -lean_inc(x_226); -lean_dec(x_222); -x_228 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___elambda__19___boxed), 5, 1); -lean_closure_set(x_228, 0, x_226); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_228); -lean_ctor_set(x_229, 1, x_227); -return x_229; +lean_dec(x_223); +x_229 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___main___elambda__19___boxed), 5, 1); +lean_closure_set(x_229, 0, x_227); +x_230 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_230, 0, x_229); +lean_ctor_set(x_230, 1, x_228); +return x_230; } } else { -uint8_t x_230; -x_230 = !lean_is_exclusive(x_222); -if (x_230 == 0) +uint8_t x_231; +x_231 = !lean_is_exclusive(x_223); +if (x_231 == 0) { -return x_222; +return x_223; } else { -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_222, 0); -x_232 = lean_ctor_get(x_222, 1); +lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_232 = lean_ctor_get(x_223, 0); +x_233 = lean_ctor_get(x_223, 1); +lean_inc(x_233); lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_222); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; +lean_dec(x_223); +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_232); +lean_ctor_set(x_234, 1, x_233); +return x_234; } } } @@ -3244,70 +3245,71 @@ return x_216; } case 21: { -lean_object* x_217; lean_object* x_218; lean_object* x_219; +lean_object* x_217; lean_object* x_218; uint8_t x_219; lean_object* x_220; x_217 = lean_ctor_get(x_1, 0); lean_inc(x_217); lean_dec(x_1); x_218 = l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main___closed__8; -x_219 = l_Lean_ParserCompiler_interpretParser___rarg(x_218, x_217, x_2, x_3, x_4, x_5); -return x_219; +x_219 = 0; +x_220 = l_Lean_ParserCompiler_interpretParser___rarg(x_218, x_217, x_219, x_2, x_3, x_4, x_5); +return x_220; } default: { -lean_object* x_220; lean_object* x_221; -x_220 = lean_ctor_get(x_1, 0); -lean_inc(x_220); +lean_object* x_221; lean_object* x_222; +x_221 = lean_ctor_get(x_1, 0); +lean_inc(x_221); lean_dec(x_1); -x_221 = l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main(x_220, x_2, x_3, x_4, x_5); -if (lean_obj_tag(x_221) == 0) +x_222 = l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main(x_221, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_222) == 0) { -uint8_t x_222; -x_222 = !lean_is_exclusive(x_221); -if (x_222 == 0) +uint8_t x_223; +x_223 = !lean_is_exclusive(x_222); +if (x_223 == 0) { -lean_object* x_223; lean_object* x_224; -x_223 = lean_ctor_get(x_221, 0); -x_224 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main___elambda__21___boxed), 5, 1); -lean_closure_set(x_224, 0, x_223); -lean_ctor_set(x_221, 0, x_224); -return x_221; +lean_object* x_224; lean_object* x_225; +x_224 = lean_ctor_get(x_222, 0); +x_225 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main___elambda__21___boxed), 5, 1); +lean_closure_set(x_225, 0, x_224); +lean_ctor_set(x_222, 0, x_225); +return x_222; } else { -lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_225 = lean_ctor_get(x_221, 0); -x_226 = lean_ctor_get(x_221, 1); +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_226 = lean_ctor_get(x_222, 0); +x_227 = lean_ctor_get(x_222, 1); +lean_inc(x_227); lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_221); -x_227 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main___elambda__21___boxed), 5, 1); -lean_closure_set(x_227, 0, x_225); -x_228 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_228, 0, x_227); -lean_ctor_set(x_228, 1, x_226); -return x_228; +lean_dec(x_222); +x_228 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_interpretParserDescr___main___elambda__21___boxed), 5, 1); +lean_closure_set(x_228, 0, x_226); +x_229 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_229, 0, x_228); +lean_ctor_set(x_229, 1, x_227); +return x_229; } } else { -uint8_t x_229; -x_229 = !lean_is_exclusive(x_221); -if (x_229 == 0) +uint8_t x_230; +x_230 = !lean_is_exclusive(x_222); +if (x_230 == 0) { -return x_221; +return x_222; } else { -lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_230 = lean_ctor_get(x_221, 0); -x_231 = lean_ctor_get(x_221, 1); +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_222, 0); +x_232 = lean_ctor_get(x_222, 1); +lean_inc(x_232); lean_inc(x_231); -lean_inc(x_230); -lean_dec(x_221); -x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_230); -lean_ctor_set(x_232, 1, x_231); -return x_232; +lean_dec(x_222); +x_233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; } } }