diff --git a/stage0/src/Init/Data/Option/Basic.lean b/stage0/src/Init/Data/Option/Basic.lean index 4949dcde36..b1c2f156e1 100644 --- a/stage0/src/Init/Data/Option/Basic.lean +++ b/stage0/src/Init/Data/Option/Basic.lean @@ -47,6 +47,10 @@ funext (fun o => match o with | none => rfl | some x => rfl) instance : Monad Option := {pure := @some, bind := @Option.bind, map := @Option.map} +@[inline] protected def filter {α} (p : α → Bool) : Option α → Option α +| some a => if p a then some a else none +| none => none + @[macroInline] protected def orelse {α : Type u} : Option α → Option α → Option α | some a, _ => some a | none, b => b diff --git a/stage0/src/Init/Lean/Elab/Quotation.lean b/stage0/src/Init/Lean/Elab/Quotation.lean index b651177a8c..0258a229c0 100644 --- a/stage0/src/Init/Lean/Elab/Quotation.lean +++ b/stage0/src/Init/Lean/Elab/Quotation.lean @@ -64,6 +64,13 @@ def isAntiquot : Syntax → Bool | Syntax.node (Name.str _ "antiquot" _) _ => true | _ => false +def antiquotKind? : Syntax → Option SyntaxNodeKind +| Syntax.node (Name.str k "antiquot" _) args => + -- we treat all antiquotations where the kind was left implicit (`$e`) the same (see `elimAntiquotChoices`) + if (args.get! 2).isNone then some Name.anonymous + else some k +| _ => none + -- `$e*` is an antiquotation "splice" matching an arbitrary number of syntax nodes def isAntiquotSplice (stx : Syntax) : Bool := isAntiquot stx && (stx.getArg 3).getOptional.isSome @@ -73,6 +80,17 @@ isAntiquot stx && (stx.getArg 3).getOptional.isSome def isAntiquotSplicePat (stx : Syntax) : Bool := stx.isOfKind nullKind && stx.getArgs.size == 1 && isAntiquotSplice (stx.getArg 0) +/-- A term like `($e) is actually ambiguous: the antiquotation could be of kind `term`, + or `ident`, or ... . But it shouldn't really matter because antiquotations without + explicit kinds behave the same at runtime. So we replace `choice` nodes that contain + at least one implicit antiquotation with that antiquotation. -/ +private partial def elimAntiquotChoices : Syntax → Syntax +| Syntax.node `choice args => match args.find? (fun arg => if antiquotKind? arg == Name.anonymous then some arg else none) with + | some anti => anti + | none => Syntax.node `choice $ args.map elimAntiquotChoices +| Syntax.node k args => Syntax.node k $ args.map elimAntiquotChoices +| stx => stx + -- Elaborate the content of a syntax quotation term private partial def quoteSyntax : Syntax → TermElabM Syntax | Syntax.ident info rawVal val preresolved => do @@ -114,7 +132,7 @@ let quoted := stx.getArg 1; we preserve referential transparency), so we can refer to this same `scp` inside `quoteSyntax` by including it literally in a syntax quotation. -/ -- TODO: simplify to `(do scp ← getCurrMacroScope; pure $(quoteSyntax quoted)) -stx ← quoteSyntax quoted; +stx ← quoteSyntax (elimAntiquotChoices quoted); `(bind getCurrMacroScope (fun scp => pure $stx)) /- NOTE: It may seem like the newly introduced binding `scp` may accidentally capture identifiers in an antiquotation introduced by `quoteSyntax`. However, @@ -177,11 +195,12 @@ else if pat.isOfKind `Lean.Parser.Term.hole then unconditional pure -- quotation pattern else if pat.isOfKind `Lean.Parser.Term.stxQuot then let quoted := pat.getArg 1; - match quoted with - -- We assume that atoms are uniquely determined by the node kind and never have to be checked - | Syntax.atom _ _ => unconditional pure + if quoted.isAtom then + -- We assume that atoms are uniquely determined by the node kind and never have to be checked + unconditional pure + else match antiquotKind? quoted with -- quotation is a single antiquotation - | Syntax.node (Name.str k "antiquot" _) _ => + | some k => -- Antiquotation kinds like `$id:id` influence the parser, but also need to be considered by -- match_syntax (but not by quotation terms). For example, `($id:id) and `($e) are not -- distinguishable without checking the kind of the node to be captured. Note that some @@ -194,6 +213,9 @@ else if pat.isOfKind `Lean.Parser.Term.stxQuot then -- let e := stx; ... let kind := if k == Name.anonymous then none else some k; let anti := quoted.getArg 1; + let anti := match_syntax anti with + | `(($e)) => e + | _ => anti; -- Splices should only appear inside a nullKind node, see next case if isAntiquotSplice quoted then unconditional $ fun _ => throwError quoted "unexpected antiquotation splice" else if anti.isOfKind `Lean.Parser.Term.id then { kind := kind, rhsFn := fun rhs => `(let $anti := discr; $rhs) } @@ -256,6 +278,9 @@ private partial def getAntiquotVarsAux : Syntax → TermElabM (List Syntax) | stx@(Syntax.node k args) => do if isAntiquot stx then let anti := args.get! 1; + let anti := match_syntax anti with + | `(($e)) => e + | _ => anti; if anti.isOfKind `Lean.Parser.Term.id then pure [anti] else throwError anti "syntax_match: antiquotation must be variable" else @@ -297,6 +322,7 @@ alts ← alts.getArgs.mapM $ fun alt => do { let pats := alt.getArg 1; pat ← if pats.getArgs.size == 1 then pure $ pats.getArg 0 else throwError stx.val "syntax_match: expected exactly one pattern per alternative"; + let pat := if pat.isOfKind `Lean.Parser.Term.stxQuot then pat.setArg 1 $ elimAntiquotChoices $ pat.getArg 1 else pat; let rhs := alt.getArg 3; pure ([pat], rhs) }; @@ -426,7 +452,9 @@ pure $ vars.map $ fun var => var.getIdAt 0 unsafe def oldExpandMatchSyntax (ctx : OldContext) (discr : Syntax) (alts : List (List Syntax × Syntax)) : Except String Expr := oldRunTermElabM ctx $ do -- HACK: discr and the RHSs are actually `Expr` let discr := Syntax.node `expr #[discr]; -let alts := alts.map $ fun alt => (alt.1, Syntax.node `expr #[alt.2]); +let alts := alts.map $ fun alt => + let pats := alt.1.map elimAntiquotChoices; + (pats, Syntax.node `expr #[alt.2]); -- letBindRhss (compileStxMatch Syntax.missing [discr]) alts [] stx ← compileStxMatch Syntax.missing [discr] alts; toPreterm stx diff --git a/stage0/src/Init/Lean/Elab/Term.lean b/stage0/src/Init/Lean/Elab/Term.lean index 7e20d02b14..c5643ce867 100644 --- a/stage0/src/Init/Lean/Elab/Term.lean +++ b/stage0/src/Init/Lean/Elab/Term.lean @@ -590,7 +590,7 @@ modify $ fun s => { syntheticMVars := [], .. s }; -- We use `filterRevM` instead of `filterM` to make sure we process the synthetic metavariables using the order they were created. -- It would not be incorrect to use `filterM`. remainingSyntheticMVars ← syntheticMVars.filterRevM $ fun mvarDecl => do { - trace `Elab.postpone mvarDecl.ref $ fun _ => fmt "resuming"; + trace `Elab.postpone mvarDecl.ref $ fun _ => "resuming ?" ++ mvarDecl.mvarId; succeeded ← synthesizeSyntheticMVar mvarDecl; trace `Elab.postpone mvarDecl.ref $ fun _ => if succeeded then fmt "succeeded" else fmt "not ready yet"; pure $ !succeeded @@ -605,7 +605,7 @@ s ← get; let len := s.syntheticMVars.length; newSyntheticMVars ← s.syntheticMVars.filterM $ fun mvarDecl => match mvarDecl.kind with - | SyntheticMVarKind.withDefault defaultVal => do + | SyntheticMVarKind.withDefault defaultVal => withMVarContext mvarDecl.mvarId $ do val ← instantiateMVars mvarDecl.ref (mkMVar mvarDecl.mvarId); when val.getAppFn.isMVar $ unlessM (isDefEq mvarDecl.ref val defaultVal) $ diff --git a/stage0/src/Init/Lean/Level.lean b/stage0/src/Init/Lean/Level.lean index a089ec17c4..262aab7309 100644 --- a/stage0/src/Init/Lean/Level.lean +++ b/stage0/src/Init/Lean/Level.lean @@ -415,8 +415,8 @@ mkLevelIMax newLhs newRhs @[inline] def updateIMax! (lvl : Level) (newLhs : Level) (newRhs : Level) : Level := match lvl with -| max lhs rhs d => updateIMax (imax lhs rhs d) newLhs newRhs rfl -| _ => panic! "imax level expected" +| imax lhs rhs d => updateIMax (imax lhs rhs d) newLhs newRhs rfl +| _ => panic! "imax level expected" @[specialize] def instantiateParams (s : Name → Option Level) : Level → Level | u@(zero _) => u diff --git a/stage0/src/Init/Lean/Parser/Parser.lean b/stage0/src/Init/Lean/Parser/Parser.lean index f239ba3a54..f4201dbc30 100644 --- a/stage0/src/Init/Lean/Parser/Parser.lean +++ b/stage0/src/Init/Lean/Parser/Parser.lean @@ -1547,16 +1547,41 @@ constant termParserAttribute : ParserAttribute := arbitrary _ def dollarSymbol {k : ParserKind} : Parser k := symbol "$" 1 --- Define parser for `$e` (if anonymous == true) and `$e:name`. Both --- forms can also be used with an appended `*` to turn them into an --- antiquotation "splice". If `kind` is given, it will additionally be checked --- when evaluating `match_syntax`. -def mkAntiquot {k : ParserKind} (name : String) (kind : Option SyntaxNodeKind) (anonymous := false) : Parser k := +/-- Fail if previous token is immediately followed by ':'. -/ +private def noImmediateColon {k : ParserKind} : Parser k := +{ fn := fun _ c s => + let prev := s.stxStack.back; + if checkTailNoWs prev then + let input := c.input; + let i := s.pos; + if input.atEnd i then s + else + let curr := input.get i; + if curr == ':' then + s.mkUnexpectedError "unexpected ':'" + else s + else s +} + +private def pushNone {k : ParserKind} : Parser k := +{ fn := fun a c s => s.pushSyntax mkNullNode } + +/-- + Define parser for `$e` (if anonymous == true) and `$e:name`. Both + forms can also be used with an appended `*` to turn them into an + antiquotation "splice". If `kind` is given, it will additionally be checked + when evaluating `match_syntax`. -/ +def mkAntiquot {k : ParserKind} (name : String) (kind : Option SyntaxNodeKind) (anonymous := true) : Parser k := let kind := (kind.getD Name.anonymous) ++ `antiquot; let sym := ":" ++ name; let nameP := checkNoWsBefore ("no space before '" ++ sym ++ "'") >> coe sym; -node kind $ try $ dollarSymbol >> checkNoWsBefore "no space before" >> termParser appPrec >> - (if anonymous then optional nameP else nameP) >> optional "*" +-- if parsing the kind fails and `anonymous` is true, check that we're not ignoring a different +-- antiquotation kind via `noImmediateColon` +let nameP := if anonymous then nameP <|> noImmediateColon >> pushNone else nameP; +node kind $ try $ dollarSymbol >> checkNoWsBefore "no space before" >> + -- use high precedence so that `$(x).y` is parsed as a projection of an antiquotation + termParser (appPrec + 1) >> + nameP >> optional "*" def ident {k : ParserKind} : Parser k := mkAntiquot "ident" `ident <|> identNoAntiquot diff --git a/stage0/src/Init/Lean/Parser/Term.lean b/stage0/src/Init/Lean/Parser/Term.lean index 406823329c..3f67d4b6b8 100644 --- a/stage0/src/Init/Lean/Parser/Term.lean +++ b/stage0/src/Init/Lean/Parser/Term.lean @@ -25,8 +25,10 @@ def infixL (sym : String) (lbp : Nat) : TrailingParser := pushLeading >> symbol sym lbp >> termParser lbp /- Built-in parsers -/ -def explicitUniv := parser! ".{" >> sepBy1 levelParser ", " >> "}" -def namedPattern := parser! checkNoWsBefore "no space before '@'" >> "@" >> termParser appPrec +-- NOTE: `checkNoWsBefore` should be used *before* `parser!` so that it is also applied to the generated +-- antiquotation. +def explicitUniv := checkNoWsBefore "no space before '.{'" >> parser! ".{" >> sepBy1 levelParser ", " >> "}" +def namedPattern := checkNoWsBefore "no space before '@'" >> parser! "@" >> termParser appPrec @[builtinTermParser] def id := parser! ident >> optional (explicitUniv <|> namedPattern) @[builtinTermParser] def num : Parser := parser! numLit @[builtinTermParser] def str : Parser := parser! strLit diff --git a/stage0/stdlib/Init/Data/Option/Basic.c b/stage0/stdlib/Init/Data/Option/Basic.c index fd8148e9e5..ab52ad7991 100644 --- a/stage0/stdlib/Init/Data/Option/Basic.c +++ b/stage0/stdlib/Init/Data/Option/Basic.c @@ -26,6 +26,7 @@ lean_object* l_Option_HasBeq___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Option_Alternative___lambda__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Option_isSome___rarg___boxed(lean_object*); lean_object* l_Option_Monad___closed__6; +lean_object* l_Option_filter___rarg(lean_object*, lean_object*); lean_object* l_Option_bind___rarg(lean_object*, lean_object*); lean_object* l_Option_DecidableEq___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Option_Monad___closed__3; @@ -67,6 +68,7 @@ lean_object* l_Option_getD___rarg(lean_object*, lean_object*); lean_object* l_Option_orelse(lean_object*); lean_object* l_Option_Monad___closed__7; lean_object* l_Option_Inhabited(lean_object*); +lean_object* l_Option_filter(lean_object*); lean_object* l_Option_Monad___closed__9; lean_object* l_Option_toBool___rarg___boxed(lean_object*); lean_object* l_Option_Alternative; @@ -609,6 +611,44 @@ lean_dec(x_3); return x_5; } } +lean_object* l_Option_filter___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +x_4 = lean_apply_1(x_1, x_3); +x_5 = lean_unbox(x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_object* x_6; +lean_dec(x_2); +x_6 = lean_box(0); +return x_6; +} +else +{ +return x_2; +} +} +} +} +lean_object* l_Option_filter(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Option_filter___rarg), 2, 0); +return x_2; +} +} lean_object* l_Option_orelse___rarg(lean_object* x_1, lean_object* x_2) { _start: { diff --git a/stage0/stdlib/Init/Lean/Elab/Quotation.c b/stage0/stdlib/Init/Lean/Elab/Quotation.c index 1f1693d0f6..f3594b035a 100644 --- a/stage0/stdlib/Init/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Init/Lean/Elab/Quotation.c @@ -14,627 +14,626 @@ extern "C" { #endif lean_object* l_List_reverse___rarg(lean_object*); +lean_object* l_Lean_Elab_Term_antiquotKind_x3f(lean_object*); extern lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__39; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserContextCore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__18; lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__31; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__59; +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21; +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__3; extern lean_object* l_Lean_Parser_Term_app___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__35; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34; lean_object* l_Lean_Elab_Term_isAntiquotSplice___boxed(lean_object*); lean_object* l_List_tail_x21___rarg(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23; lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__35; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__9(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; extern lean_object* l_Lean_Parser_declareBuiltinParser___closed__8; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax___closed__1; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___boxed(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabStxQuot___closed__2; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__1; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___boxed(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__1; extern lean_object* l_Lean_nameToExprAux___main___closed__1; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2(lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); extern lean_object* l_Lean_nullKind; extern lean_object* l_Lean_nameToExprAux___main___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__3; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__appN___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(lean_object*); lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__3; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54; extern lean_object* l_Lean_Syntax_formatStxAux___main___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__2; extern lean_object* l_Option_HasRepr___rarg___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__25; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_map___at_Lean_Elab_Term_oldGetAntiquotVars___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__6___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(lean_object*); +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; extern lean_object* l_Lean_nameToExprAux___main___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__2; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__4; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__27; lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); lean_object* lean_local_ctx_mk_let_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__29; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__9; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23; extern lean_object* l_Lean_nameToExprAux___main___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__15; extern lean_object* l_Prod_HasRepr___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1; lean_object* l_Lean_Elab_Term_elabStxQuot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21; +lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__5; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__3; extern lean_object* l_Lean_stxInh; extern lean_object* l_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkMVar(lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__7(lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; extern lean_object* l_Lean_Literal_type___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; lean_object* l_Lean_Array_HasQuote___rarg___boxed(lean_object*, lean_object*); -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__11___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__6(lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__3(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__12; lean_object* l_Lean_Parser_mkParserState(lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_HeadInfo_generalizes(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); extern lean_object* l_Lean_nameToExprAux___main___closed__5; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Prod_HasQuote___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_num___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31; lean_object* l_Lean_Parser_ParserAttribute_runParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_parse_expr(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__45; lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_stxQuot_expand(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__4; +lean_object* l_Lean_Elab_Term_antiquotKind_x3f___boxed(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1; lean_object* lean_array_get_size(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__7(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; extern lean_object* l_Lean_Parser_Term_num___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_match__syntax_expand___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main(lean_object*, lean_object*, lean_object*); lean_object* l_List_range(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1___closed__1; lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; extern lean_object* l_Lean_Name_inhabited; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(lean_object*, lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__appN___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2; extern lean_object* l_Lean_Elab_Term_mkFreshAnonymousName___rarg___closed__1; extern lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___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*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__51; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVars___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60; +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__24; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__40; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_mkAtom(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2; lean_object* l_Lean_Name_HasQuote___closed__1; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_cons___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList(lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_FileMap_ofString___closed__1; extern lean_object* l_Lean_Meta_MetaHasEval___rarg___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18; lean_object* l_List_join___rarg(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_HasOfNat___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1; extern lean_object* l_Array_iterateMAux___main___at_Lean_mkAppStx___spec__1___closed__1; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__26; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__19; +lean_object* l_Lean_Elab_Term_antiquotKind_x3f___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__7; extern lean_object* l_Lean_Parser_termParserAttribute; extern lean_object* l_Lean_nameToExprAux___main___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__5; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__20; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__10; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45; lean_object* l_Lean_Elab_Term_oldGetAntiquotVars___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__32; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__1___boxed(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(lean_object*); lean_object* l_Lean_Elab_Term_oldExpandStxQuot___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2(lean_object*); extern lean_object* l_Lean_Elab_Term_elabListLit___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5; lean_object* l_Lean_mkMData(lean_object*, lean_object*); lean_object* l_Lean_Prod_HasQuote(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__1(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47; -lean_object* l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__3; lean_object* l___private_Init_Lean_Elab_Quotation_2__appN___boxed(lean_object*, lean_object*); lean_object* l_List_replicate___rarg(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2; lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__24; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___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*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__49; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; extern lean_object* l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_setPos(lean_object*, lean_object*); -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__11(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabParen___closed__4; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__2; lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_HeadInfo_generalizes___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__16; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_appendIndexAfter___closed__1; extern lean_object* l_List_Monad; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__14; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__3; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__8; extern lean_object* l_Lean_Parser_Term_band___elambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; extern lean_object* l_Lean_Parser_Term_id___elambda__1___closed__2; extern lean_object* l_Lean_numLitKind; extern lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_choiceKind___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__5; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__1; lean_object* l_Lean_Elab_Term_getCurrNamespace(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__56; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__48; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25; extern lean_object* l_Lean_strLitKind; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__12; +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_letIdDecl___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2; extern lean_object* l_Lean_Parser_Term_band___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__54; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__52; extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; extern lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__27; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__50; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabStxQuot___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__2; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__62; lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5___closed__1; lean_object* l_Lean_String_HasQuote(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM(lean_object*); lean_object* l_Lean_Elab_Term_oldExpandMatchSyntax___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__7; lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__8; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__13(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__6; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__1; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; lean_object* lean_mk_empty_local_ctx(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__33; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__17; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__21; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__38; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_Array_HasQuote___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__4; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35; lean_object* l_Lean_Elab_Term_oldParseExpr___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2; extern lean_object* l_Lean_Parser_Term_id___elambda__1___closed__1; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Array_HasQuote___rarg(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__2; extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; uint8_t l_Lean_Elab_Term_isAntiquot(lean_object*); extern lean_object* l_Lean_Elab_Term_elabListLit___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__23; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed(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_Lean_Elab_Quotation_4__quoteSyntax___main___closed__41; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__13; lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__1; lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__5; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__18; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__5; extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; extern lean_object* l_PersistentArray_empty___closed__3; lean_object* l_Lean_Elab_Term_resolveName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28; -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__34; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__15; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__4; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__12(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4; lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__29; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__30; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__5(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__22; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__22; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__2; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__9(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg(lean_object*, lean_object*); extern lean_object* l_List_head_x21___rarg___closed__2; extern lean_object* l_Lean_nameToExprAux___main___closed__9; lean_object* l_Lean_Name_HasQuote; -lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVars(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; extern lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__33; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_HeadInfo_Inhabited___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_ofString(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__14; extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__1; lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l_Lean_Elab_Term_elabStxQuot(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_11__getAntiquotVars(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__19; lean_object* l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; lean_object* l_Lean_mkFVar(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__2___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__12; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; +lean_object* l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__2(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__3; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isAntiquot___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__3(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__26; extern lean_object* l_Lean_Elab_Term_elabListLit___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5; extern lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__20; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61; +uint8_t l_Lean_Syntax_isAtom(lean_object*); extern lean_object* l_Lean_nullKind___closed__2; extern lean_object* l_Lean_Parser_Term_if___elambda__1___closed__1; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_str___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6; lean_object* l_List_join___main___rarg(lean_object*); lean_object* l_Lean_Elab_Term_HeadInfo_Inhabited___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__1; extern lean_object* l_Lean_Unhygienic_MonadQuotation___closed__1; extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__1; extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__10; -lean_object* l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__24; lean_object* l_List_map___main___at_Lean_Elab_Term_oldGetAntiquotVars___spec__2(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_setName(lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__58; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55; +lean_object* l___private_Init_Lean_Elab_Quotation_11__getAntiquotVars___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27; extern lean_object* l_Lean_Parser_appPrec; extern lean_object* l_Option_HasRepr___rarg___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__2; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43; lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___closed__3; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__1; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_str___elambda__1___closed__2; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__1(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28; lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__3; extern lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__2; extern lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__2; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getLCtx(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; +lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57; lean_object* lean_expand_stx_quot(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__7; extern lean_object* l_Lean_Parser_Term_if___elambda__1___closed__2; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__28; +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_2__appN(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33; lean_object* l_Lean_Elab_Term_match__syntax_expand(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__1; lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__1; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__22; extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__25; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Array_HasQuote(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__18; lean_object* l_Lean_Syntax_getKind(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7; lean_object* lean_expand_match_syntax(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__17; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20; lean_object* lean_panic_fn(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__15; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_app___elambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32; lean_object* l_Lean_List_HasQuote___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__42; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__53; lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__4; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__1(lean_object*); lean_object* l_Lean_LocalContext_mkLambda(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40; +lean_object* l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(lean_object*); extern lean_object* l_Lean_Elab_Term_declareBuiltinTermElab___closed__4; lean_object* l_Lean_Elab_Term_elabMatchSyntax(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__21; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__10(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Nat_HasQuote(lean_object*); extern lean_object* l_Lean_Elab_rootNamespace___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___spec__1(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_isAntiquotSplicePat(lean_object*); lean_object* l_Lean_Elab_Term_HeadInfo_Inhabited; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__9___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__21; extern lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__32; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___boxed(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_get_namespace(lean_object*); +uint8_t l_Lean_Syntax_isNone(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24; extern lean_object* l_Lean_TraceState_Inhabited___closed__1; lean_object* l_Lean_Elab_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1___boxed(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; lean_object* l_Lean_Elab_Term_isAntiquotSplicePat___boxed(lean_object*); lean_object* l_Lean_Elab_Term_getOpenDecls(lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__11(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; extern lean_object* l_Lean_Elab_rootNamespace___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__13; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); extern lean_object* l_Lean_Expr_Inhabited; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__20; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55; lean_object* l_Lean_Elab_Term_addBuiltinTermElab(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_map___at_Lean_Elab_Term_oldGetAntiquotVars___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1; uint8_t l_Lean_Elab_Term_isAntiquotSplice(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__27; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_oldGetAntiquotVars___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_oldGetAntiquotVars___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__13; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__6; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__3___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__43; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___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*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__4; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabStxQuot___closed__3; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__23; -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__57; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__34; +lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__11; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; extern lean_object* l_Lean_Syntax_getKind___closed__3; extern lean_object* l___private_Init_Lean_Elab_Term_11__synthesizePendingInstMVar___lambda__1___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabStxQuot(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4; +lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3; lean_object* l_Lean_mkStxLit(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__44; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15; extern lean_object* l_Lean_MetavarContext_Inhabited___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__17; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__25; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12; extern lean_object* l_Lean_Elab_Term_elabListLit___closed__3; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__23; lean_object* l_Lean_mkNatLit(lean_object*); lean_object* l_Lean_mkStrLit(lean_object*); lean_object* l_Lean_Syntax_getOptional(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; extern lean_object* l_Lean_nameToExprAux___main___closed__6; lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); lean_object* l_ReaderT_pure___at_Lean_Elab_Term_HeadInfo_Inhabited___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28; extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_ReaderT_pure___at_Lean_Elab_Term_HeadInfo_Inhabited___spec__1(lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58; +lean_object* l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices(lean_object*); lean_object* l_Lean_Syntax_HasQuote; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__appN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1; lean_object* l_Lean_Elab_Term_oldGetAntiquotVars___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Message_toString(lean_object*); lean_object* l_Lean_List_HasQuote(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_pure___at_Lean_Elab_Term_HeadInfo_Inhabited___spec__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2; lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__5___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2; extern lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__10; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__1; extern lean_object* l_List_zip___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___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*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__6; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__6; lean_object* l_Lean_Elab_Term_elabMatchSyntax___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26; lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; extern lean_object* l_Lean_Parser_Term_and___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__10; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__2; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__7; lean_object* l_List_zipWith___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__4; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__7; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__26; -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11; -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1; extern lean_object* l_Lean_NameGenerator_Inhabited___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__61; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4; uint8_t lean_string_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* lean_get_antiquot_vars(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__16; lean_object* l_monadInhabited___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22; extern lean_object* l_Lean_Parser_mkAntiquot___closed__1; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__appN___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27; lean_object* _init_l_Lean_Syntax_HasQuote() { _start: { @@ -1846,6 +1845,85 @@ x_3 = lean_box(x_2); return x_3; } } +lean_object* _init_l_Lean_Elab_Term_antiquotKind_x3f___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Elab_Term_antiquotKind_x3f(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_2; +x_2 = lean_ctor_get(x_1, 0); +if (lean_obj_tag(x_2) == 1) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_ctor_get(x_1, 1); +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 1); +x_6 = l_Lean_Parser_mkAntiquot___closed__1; +x_7 = lean_string_dec_eq(x_5, x_6); +if (x_7 == 0) +{ +lean_object* x_8; +x_8 = lean_box(0); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = l_Lean_stxInh; +x_10 = lean_unsigned_to_nat(2u); +x_11 = lean_array_get(x_9, x_3, x_10); +x_12 = l_Lean_Syntax_isNone(x_11); +lean_dec(x_11); +if (x_12 == 0) +{ +lean_object* x_13; +lean_inc(x_4); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_4); +return x_13; +} +else +{ +lean_object* x_14; +x_14 = l_Lean_Elab_Term_antiquotKind_x3f___closed__1; +return x_14; +} +} +} +else +{ +lean_object* x_15; +x_15 = lean_box(0); +return x_15; +} +} +else +{ +lean_object* x_16; +x_16 = lean_box(0); +return x_16; +} +} +} +lean_object* l_Lean_Elab_Term_antiquotKind_x3f___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Elab_Term_antiquotKind_x3f(x_1); +lean_dec(x_1); +return x_2; +} +} uint8_t l_Lean_Elab_Term_isAntiquotSplice(lean_object* x_1) { _start: { @@ -1942,7 +2020,328 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; uint8_t x_4; +x_3 = lean_array_get_size(x_2); +x_4 = lean_nat_dec_lt(x_1, x_3); +lean_dec(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_1); +x_5 = l_Array_empty___closed__1; +x_6 = x_2; +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_7 = lean_array_fget(x_2, x_1); +x_8 = lean_box(0); +x_9 = x_8; +x_10 = lean_array_fset(x_2, x_1, x_9); +lean_inc(x_7); +x_11 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_7); +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_add(x_1, x_12); +x_14 = x_11; +lean_dec(x_7); +x_15 = lean_array_fset(x_10, x_1, x_14); +lean_dec(x_1); +x_1 = x_13; +x_2 = x_15; +goto _start; +} +} +} +lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_2); +x_5 = lean_nat_dec_lt(x_3, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_object* x_6; +lean_dec(x_3); +x_6 = lean_box(0); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_array_fget(x_2, x_3); +x_8 = l_Lean_Elab_Term_antiquotKind_x3f(x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_7); +x_9 = lean_unsigned_to_nat(1u); +x_10 = lean_nat_add(x_3, x_9); +lean_dec(x_3); +x_3 = x_10; +goto _start; +} +else +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_8); +if (x_12 == 0) +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_8, 0); +x_14 = lean_name_eq(x_13, x_1); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +lean_free_object(x_8); +lean_dec(x_7); +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_add(x_3, x_15); +lean_dec(x_3); +x_3 = x_16; +goto _start; +} +else +{ +lean_dec(x_3); +lean_ctor_set(x_8, 0, x_7); +return x_8; +} +} +else +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_8, 0); +lean_inc(x_18); +lean_dec(x_8); +x_19 = lean_name_eq(x_18, x_1); +lean_dec(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +lean_dec(x_7); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_3, x_20); +lean_dec(x_3); +x_3 = x_21; +goto _start; +} +else +{ +lean_object* x_23; +lean_dec(x_3); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_7); +return x_23; +} +} +} +} +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_2; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +if (lean_obj_tag(x_2) == 1) +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_5 = lean_ctor_get(x_1, 1); +x_6 = lean_ctor_get(x_1, 0); +lean_dec(x_6); +x_7 = lean_ctor_get(x_2, 1); +lean_inc(x_7); +x_8 = l_Lean_choiceKind___closed__1; +x_9 = lean_string_dec_eq(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_10, x_5); +lean_ctor_set(x_1, 1, x_11); +return x_1; +} +else +{ +lean_object* x_12; lean_object* x_13; +lean_dec(x_2); +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(x_3, x_5, x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_name_mk_string(x_3, x_8); +x_15 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_12, x_5); +lean_ctor_set(x_1, 1, x_15); +lean_ctor_set(x_1, 0, x_14); +return x_1; +} +else +{ +lean_object* x_16; +lean_free_object(x_1); +lean_dec(x_5); +x_16 = lean_ctor_get(x_13, 0); +lean_inc(x_16); +lean_dec(x_13); +return x_16; +} +} +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_ctor_get(x_1, 1); +lean_inc(x_17); +lean_dec(x_1); +x_18 = lean_ctor_get(x_2, 1); +lean_inc(x_18); +x_19 = l_Lean_choiceKind___closed__1; +x_20 = lean_string_dec_eq(x_18, x_19); +lean_dec(x_18); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_unsigned_to_nat(0u); +x_22 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_21, x_17); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_2); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; +lean_dec(x_2); +x_24 = lean_unsigned_to_nat(0u); +x_25 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(x_3, x_17, x_24); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_name_mk_string(x_3, x_19); +x_27 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_24, x_17); +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; +} +else +{ +lean_object* x_29; +lean_dec(x_17); +x_29 = lean_ctor_get(x_25, 0); +lean_inc(x_29); +lean_dec(x_25); +return x_29; +} +} +} +} +else +{ +uint8_t x_30; +lean_dec(x_3); +x_30 = !lean_is_exclusive(x_1); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_31 = lean_ctor_get(x_1, 1); +x_32 = lean_ctor_get(x_1, 0); +lean_dec(x_32); +x_33 = lean_unsigned_to_nat(0u); +x_34 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_33, x_31); +lean_ctor_set(x_1, 1, x_34); +return x_1; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_35 = lean_ctor_get(x_1, 1); +lean_inc(x_35); +lean_dec(x_1); +x_36 = lean_unsigned_to_nat(0u); +x_37 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_36, x_35); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_2); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +else +{ +uint8_t x_39; +x_39 = !lean_is_exclusive(x_1); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_40 = lean_ctor_get(x_1, 1); +x_41 = lean_ctor_get(x_1, 0); +lean_dec(x_41); +x_42 = lean_unsigned_to_nat(0u); +x_43 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_42, x_40); +lean_ctor_set(x_1, 1, x_43); +return x_1; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_44 = lean_ctor_get(x_1, 1); +lean_inc(x_44); +lean_dec(x_1); +x_45 = lean_unsigned_to_nat(0u); +x_46 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_45, x_44); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_2); +lean_ctor_set(x_47, 1, x_46); +return x_47; +} +} +} +else +{ +return x_1; +} +} +} +lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_1); +return x_2; +} +} +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -1970,7 +2369,7 @@ x_12 = x_11; x_13 = lean_array_fset(x_2, x_1, x_12); lean_inc(x_3); lean_inc(x_10); -x_14 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main(x_10, x_3, x_4); +x_14 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(x_10, x_3, x_4); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -2019,7 +2418,7 @@ return x_25; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; @@ -2047,7 +2446,7 @@ x_20 = l_Lean_Parser_Term_app___elambda__1___closed__2; x_21 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); -x_22 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2(x_2); +x_22 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(x_2); x_23 = lean_array_push(x_12, x_21); x_24 = lean_array_push(x_23, x_22); x_25 = lean_alloc_ctor(1, 2, 0); @@ -2059,7 +2458,7 @@ lean_ctor_set(x_26, 1, x_5); return x_26; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2076,7 +2475,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2___lambda__1___boxed), 5, 2); +x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1___boxed), 5, 2); lean_closure_set(x_5, 0, x_3); lean_closure_set(x_5, 1, x_4); x_6 = l_Lean_Unhygienic_MonadQuotation___closed__1; @@ -2088,7 +2487,7 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; @@ -2124,7 +2523,7 @@ x_26 = l_Lean_Parser_Term_app___elambda__1___closed__2; x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); -x_28 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4(x_2); +x_28 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4(x_2); x_29 = lean_array_push(x_12, x_27); x_30 = lean_array_push(x_29, x_28); x_31 = lean_alloc_ctor(1, 2, 0); @@ -2136,7 +2535,7 @@ lean_ctor_set(x_32, 1, x_5); return x_32; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2153,7 +2552,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4___lambda__1___boxed), 5, 2); +x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4___lambda__1___boxed), 5, 2); lean_closure_set(x_5, 0, x_3); lean_closure_set(x_5, 1, x_4); x_6 = l_Lean_Unhygienic_MonadQuotation___closed__1; @@ -2165,7 +2564,7 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -2202,7 +2601,7 @@ lean_inc(x_8); x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_8); lean_ctor_set(x_29, 1, x_28); -x_30 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4(x_9); +x_30 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4(x_9); x_31 = lean_array_push(x_4, x_29); x_32 = lean_array_push(x_31, x_30); x_33 = lean_alloc_ctor(1, 2, 0); @@ -2214,7 +2613,7 @@ lean_ctor_set(x_34, 1, x_12); return x_34; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; @@ -2238,7 +2637,7 @@ x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); x_19 = lean_array_push(x_13, x_18); -x_20 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3(x_1); +x_20 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(x_1); x_21 = !lean_is_exclusive(x_2); if (x_21 == 0) { @@ -2247,7 +2646,7 @@ x_22 = lean_ctor_get(x_2, 0); x_23 = lean_ctor_get(x_2, 1); x_24 = l_Lean_Elab_rootNamespace___closed__2; x_25 = l_Lean_Parser_Term_app___elambda__1___closed__2; -x_26 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__1___boxed), 12, 9); +x_26 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1___boxed), 12, 9); lean_closure_set(x_26, 0, x_24); lean_closure_set(x_26, 1, x_9); lean_closure_set(x_26, 2, x_6); @@ -2285,7 +2684,7 @@ lean_inc(x_35); lean_dec(x_2); x_37 = l_Lean_Elab_rootNamespace___closed__2; x_38 = l_Lean_Parser_Term_app___elambda__1___closed__2; -x_39 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__1___boxed), 12, 9); +x_39 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1___boxed), 12, 9); lean_closure_set(x_39, 0, x_37); lean_closure_set(x_39, 1, x_9); lean_closure_set(x_39, 2, x_6); @@ -2316,7 +2715,7 @@ return x_48; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2333,7 +2732,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__2___boxed), 5, 2); +x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__2___boxed), 5, 2); lean_closure_set(x_5, 0, x_4); lean_closure_set(x_5, 1, x_3); x_6 = l_Lean_Unhygienic_MonadQuotation___closed__1; @@ -2345,7 +2744,7 @@ return x_8; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1() { _start: { lean_object* x_1; @@ -2353,22 +2752,22 @@ x_1 = lean_mk_string("Syntax.node"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2376,7 +2775,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4() { _start: { lean_object* x_1; @@ -2384,71 +2783,71 @@ x_1 = lean_mk_string("Syntax"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nameToExprAux___main___closed__4; -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__8() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__9() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__8; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__9; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11() { _start: { lean_object* x_1; @@ -2456,22 +2855,22 @@ x_1 = lean_mk_string("nullKind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__12() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__13() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__12; +x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2479,51 +2878,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__14() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__15() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nameToExprAux___main___closed__4; -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__16() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__15; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__17() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__16; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__18() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18() { _start: { lean_object* x_1; @@ -2531,27 +2930,27 @@ x_1 = lean_mk_string("unexpected antiquotation splice"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__19() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__18; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__20() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__19; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__21() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21() { _start: { lean_object* x_1; @@ -2559,22 +2958,22 @@ x_1 = lean_mk_string("Syntax.atom"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__22() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__21; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__23() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__21; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__22; +x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2582,7 +2981,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__24() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24() { _start: { lean_object* x_1; @@ -2590,51 +2989,51 @@ x_1 = lean_mk_string("atom"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__25() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__24; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__26() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7; -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__24; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__27() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__26; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__28() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__27; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__29() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -2643,13 +3042,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Option_HasRepr___rarg___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__29; +x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2657,7 +3056,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2667,7 +3066,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__32() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32() { _start: { lean_object* x_1; @@ -2675,51 +3074,51 @@ x_1 = lean_mk_string("Option"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__33() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__32; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__34() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__33; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33; x_2 = l_Option_HasRepr___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__35() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__34; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__35; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37() { _start: { lean_object* x_1; @@ -2727,22 +3126,22 @@ x_1 = lean_mk_string("addMacroScope"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__38() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__39() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__38; +x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2750,51 +3149,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__40() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__41() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nameToExprAux___main___closed__4; -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__42() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__41; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__43() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__42; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__44() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44() { _start: { lean_object* x_1; @@ -2802,22 +3201,22 @@ x_1 = lean_mk_string("scp"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__45() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__44; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__44; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__45; +x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2825,17 +3224,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__44; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__48() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48() { _start: { lean_object* x_1; @@ -2843,22 +3242,22 @@ x_1 = lean_mk_string("Syntax.ident"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__49() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__48; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__50() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__48; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__49; +x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2866,51 +3265,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__51() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; x_2 = l_Lean_Syntax_getKind___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__52() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; x_2 = l_Lean_Syntax_getKind___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__53() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__52; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__54() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__53; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2922,7 +3321,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__56() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56() { _start: { lean_object* x_1; @@ -2930,22 +3329,22 @@ x_1 = lean_mk_string("String.toSubstring"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__57() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__56; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__58() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__56; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__57; +x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2953,7 +3352,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__59() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59() { _start: { lean_object* x_1; @@ -2961,41 +3360,41 @@ x_1 = lean_mk_string("toSubstring"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Literal_type___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__59; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__61() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__62() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__61; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3007,17 +3406,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_declareBuiltinParser___closed__8; -x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55; +x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { @@ -3056,7 +3455,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = l___private_Init_Lean_Elab_Quotation_1__quoteName___main(x_7); x_15 = lean_unsigned_to_nat(0u); lean_inc(x_2); -x_16 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__1(x_15, x_8, x_2, x_3); +x_16 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(x_15, x_8, x_2, x_3); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; @@ -3067,7 +3466,7 @@ lean_inc(x_18); lean_dec(x_16); x_19 = l_Array_toList___rarg(x_17); lean_dec(x_17); -x_20 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2(x_19); +x_20 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(x_19); x_21 = lean_alloc_closure((void*)(l_Lean_Array_HasQuote___rarg___lambda__1___boxed), 4, 1); lean_closure_set(x_21, 0, x_20); x_22 = l_Lean_Unhygienic_MonadQuotation___closed__1; @@ -3083,10 +3482,10 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_27 = lean_ctor_get(x_25, 0); x_28 = lean_box(0); -x_29 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6; +x_29 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; x_30 = lean_name_mk_numeral(x_29, x_27); -x_31 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3; -x_32 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10; +x_31 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; +x_32 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; x_33 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_33, 0, x_28); lean_ctor_set(x_33, 1, x_31); @@ -3122,10 +3521,10 @@ lean_inc(x_47); lean_inc(x_46); lean_dec(x_25); x_48 = lean_box(0); -x_49 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6; +x_49 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; x_50 = lean_name_mk_numeral(x_49, x_46); -x_51 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3; -x_52 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10; +x_51 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; +x_52 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; x_53 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_53, 0, x_48); lean_ctor_set(x_53, 1, x_51); @@ -3200,11 +3599,11 @@ if (x_77 == 0) lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; x_78 = lean_ctor_get(x_76, 0); x_79 = lean_box(0); -x_80 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6; +x_80 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; lean_inc(x_78); x_81 = lean_name_mk_numeral(x_80, x_78); -x_82 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3; -x_83 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10; +x_82 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; +x_83 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; x_84 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_84, 0, x_79); lean_ctor_set(x_84, 1, x_82); @@ -3217,10 +3616,10 @@ x_88 = lean_array_push(x_86, x_87); x_89 = l_Lean_Parser_Term_id___elambda__1___closed__2; lean_ctor_set(x_1, 1, x_88); lean_ctor_set(x_1, 0, x_89); -x_90 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__14; +x_90 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14; x_91 = lean_name_mk_numeral(x_90, x_78); -x_92 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__13; -x_93 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__17; +x_92 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; +x_93 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17; x_94 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_94, 0, x_79); lean_ctor_set(x_94, 1, x_92); @@ -3254,11 +3653,11 @@ lean_inc(x_106); lean_inc(x_105); lean_dec(x_76); x_107 = lean_box(0); -x_108 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6; +x_108 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; lean_inc(x_105); x_109 = lean_name_mk_numeral(x_108, x_105); -x_110 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3; -x_111 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10; +x_110 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; +x_111 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; x_112 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_112, 0, x_107); lean_ctor_set(x_112, 1, x_110); @@ -3271,10 +3670,10 @@ x_116 = lean_array_push(x_114, x_115); x_117 = l_Lean_Parser_Term_id___elambda__1___closed__2; lean_ctor_set(x_1, 1, x_116); lean_ctor_set(x_1, 0, x_117); -x_118 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__14; +x_118 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14; x_119 = lean_name_mk_numeral(x_118, x_105); -x_120 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__13; -x_121 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__17; +x_120 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; +x_121 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17; x_122 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_122, 0, x_107); lean_ctor_set(x_122, 1, x_120); @@ -3312,7 +3711,7 @@ lean_object* x_134; lean_object* x_135; lean_object* x_136; x_134 = l___private_Init_Lean_Elab_Quotation_1__quoteName___main(x_7); x_135 = lean_unsigned_to_nat(0u); lean_inc(x_2); -x_136 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__1(x_135, x_8, x_2, x_3); +x_136 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(x_135, x_8, x_2, x_3); if (lean_obj_tag(x_136) == 0) { lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; @@ -3323,7 +3722,7 @@ lean_inc(x_138); lean_dec(x_136); x_139 = l_Array_toList___rarg(x_137); lean_dec(x_137); -x_140 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2(x_139); +x_140 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(x_139); x_141 = lean_alloc_closure((void*)(l_Lean_Array_HasQuote___rarg___lambda__1___boxed), 4, 1); lean_closure_set(x_141, 0, x_140); x_142 = l_Lean_Unhygienic_MonadQuotation___closed__1; @@ -3346,10 +3745,10 @@ if (lean_is_exclusive(x_145)) { x_148 = lean_box(0); } x_149 = lean_box(0); -x_150 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6; +x_150 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; x_151 = lean_name_mk_numeral(x_150, x_146); -x_152 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3; -x_153 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10; +x_152 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; +x_153 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; x_154 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_154, 0, x_149); lean_ctor_set(x_154, 1, x_152); @@ -3436,11 +3835,11 @@ if (lean_is_exclusive(x_178)) { x_181 = lean_box(0); } x_182 = lean_box(0); -x_183 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6; +x_183 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; lean_inc(x_179); x_184 = lean_name_mk_numeral(x_183, x_179); -x_185 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3; -x_186 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10; +x_185 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; +x_186 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; x_187 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_187, 0, x_182); lean_ctor_set(x_187, 1, x_185); @@ -3454,10 +3853,10 @@ x_192 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_193 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_193, 0, x_192); lean_ctor_set(x_193, 1, x_191); -x_194 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__14; +x_194 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14; x_195 = lean_name_mk_numeral(x_194, x_179); -x_196 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__13; -x_197 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__17; +x_196 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; +x_197 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17; x_198 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_198, 0, x_182); lean_ctor_set(x_198, 1, x_196); @@ -3511,7 +3910,7 @@ return x_213; else { lean_object* x_214; lean_object* x_215; -x_214 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__20; +x_214 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20; x_215 = l_Lean_Elab_Term_throwError___rarg(x_1, x_214, x_2, x_3); lean_dec(x_2); lean_dec(x_1); @@ -3537,11 +3936,11 @@ if (x_220 == 0) lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; x_221 = lean_ctor_get(x_219, 0); x_222 = lean_box(0); -x_223 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__25; +x_223 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25; lean_inc(x_221); x_224 = lean_name_mk_numeral(x_223, x_221); -x_225 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__23; -x_226 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__28; +x_225 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23; +x_226 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28; x_227 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_227, 0, x_222); lean_ctor_set(x_227, 1, x_225); @@ -3555,10 +3954,10 @@ x_232 = l_Lean_Parser_Term_id___elambda__1___closed__2; lean_ctor_set_tag(x_1, 1); lean_ctor_set(x_1, 1, x_231); lean_ctor_set(x_1, 0, x_232); -x_233 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31; +x_233 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; x_234 = lean_name_mk_numeral(x_233, x_221); -x_235 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30; -x_236 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36; +x_235 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; +x_236 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; x_237 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_237, 0, x_222); lean_ctor_set(x_237, 1, x_235); @@ -3600,11 +3999,11 @@ lean_inc(x_255); lean_inc(x_254); lean_dec(x_219); x_256 = lean_box(0); -x_257 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__25; +x_257 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25; lean_inc(x_254); x_258 = lean_name_mk_numeral(x_257, x_254); -x_259 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__23; -x_260 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__28; +x_259 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23; +x_260 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28; x_261 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_261, 0, x_256); lean_ctor_set(x_261, 1, x_259); @@ -3618,10 +4017,10 @@ x_266 = l_Lean_Parser_Term_id___elambda__1___closed__2; lean_ctor_set_tag(x_1, 1); lean_ctor_set(x_1, 1, x_265); lean_ctor_set(x_1, 0, x_266); -x_267 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31; +x_267 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; x_268 = lean_name_mk_numeral(x_267, x_254); -x_269 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30; -x_270 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36; +x_269 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; +x_270 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; x_271 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_271, 0, x_256); lean_ctor_set(x_271, 1, x_269); @@ -3678,11 +4077,11 @@ if (lean_is_exclusive(x_290)) { x_293 = lean_box(0); } x_294 = lean_box(0); -x_295 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__25; +x_295 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25; lean_inc(x_291); x_296 = lean_name_mk_numeral(x_295, x_291); -x_297 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__23; -x_298 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__28; +x_297 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23; +x_298 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28; x_299 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_299, 0, x_294); lean_ctor_set(x_299, 1, x_297); @@ -3696,10 +4095,10 @@ x_304 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_305 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_305, 0, x_304); lean_ctor_set(x_305, 1, x_303); -x_306 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31; +x_306 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; x_307 = lean_name_mk_numeral(x_306, x_291); -x_308 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30; -x_309 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36; +x_308 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; +x_309 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; x_310 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_310, 0, x_294); lean_ctor_set(x_310, 1, x_308); @@ -3781,12 +4180,12 @@ x_347 = lean_ctor_get(x_345, 1); lean_inc(x_347); lean_dec(x_345); x_348 = lean_box(0); -x_349 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__40; +x_349 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40; lean_inc(x_346); x_350 = lean_name_mk_numeral(x_349, x_346); x_351 = lean_box(0); -x_352 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__39; -x_353 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__43; +x_352 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39; +x_353 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43; lean_ctor_set(x_1, 3, x_353); lean_ctor_set(x_1, 2, x_350); lean_ctor_set(x_1, 1, x_352); @@ -3805,9 +4204,9 @@ x_362 = l_Lean_Parser_Term_app___elambda__1___closed__2; x_363 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_363, 0, x_362); lean_ctor_set(x_363, 1, x_361); -x_364 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47; +x_364 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; x_365 = lean_name_mk_numeral(x_364, x_346); -x_366 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46; +x_366 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; x_367 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_367, 0, x_348); lean_ctor_set(x_367, 1, x_366); @@ -3823,7 +4222,7 @@ x_372 = lean_array_push(x_371, x_370); x_373 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_373, 0, x_362); lean_ctor_set(x_373, 1, x_372); -x_374 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3(x_343); +x_374 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(x_343); x_375 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_347); lean_dec(x_2); x_376 = !lean_is_exclusive(x_375); @@ -3831,11 +4230,11 @@ if (x_376 == 0) { lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; x_377 = lean_ctor_get(x_375, 0); -x_378 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__51; +x_378 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51; lean_inc(x_377); x_379 = lean_name_mk_numeral(x_378, x_377); -x_380 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__50; -x_381 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__54; +x_380 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50; +x_381 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54; x_382 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_382, 0, x_348); lean_ctor_set(x_382, 1, x_380); @@ -3846,11 +4245,11 @@ x_384 = lean_array_push(x_383, x_356); x_385 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_385, 0, x_358); lean_ctor_set(x_385, 1, x_384); -x_386 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31; +x_386 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; lean_inc(x_377); x_387 = lean_name_mk_numeral(x_386, x_377); -x_388 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30; -x_389 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36; +x_388 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; +x_389 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; x_390 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_390, 0, x_348); lean_ctor_set(x_390, 1, x_388); @@ -3866,10 +4265,10 @@ x_395 = lean_array_push(x_394, x_393); x_396 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_396, 0, x_362); lean_ctor_set(x_396, 1, x_395); -x_397 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60; +x_397 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60; x_398 = lean_name_mk_numeral(x_397, x_377); -x_399 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__58; -x_400 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__62; +x_399 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58; +x_400 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62; x_401 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_401, 0, x_348); lean_ctor_set(x_401, 1, x_399); @@ -3911,9 +4310,9 @@ x_421 = l_Lean_nullKind___closed__2; x_422 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_422, 0, x_421); lean_ctor_set(x_422, 1, x_420); -x_423 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; +x_423 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; x_424 = lean_array_push(x_423, x_422); -x_425 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_425 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_426 = lean_array_push(x_424, x_425); x_427 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_428 = lean_alloc_ctor(1, 2, 0); @@ -3944,11 +4343,11 @@ x_438 = lean_ctor_get(x_375, 1); lean_inc(x_438); lean_inc(x_437); lean_dec(x_375); -x_439 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__51; +x_439 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51; lean_inc(x_437); x_440 = lean_name_mk_numeral(x_439, x_437); -x_441 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__50; -x_442 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__54; +x_441 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50; +x_442 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54; x_443 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_443, 0, x_348); lean_ctor_set(x_443, 1, x_441); @@ -3959,11 +4358,11 @@ x_445 = lean_array_push(x_444, x_356); x_446 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_446, 0, x_358); lean_ctor_set(x_446, 1, x_445); -x_447 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31; +x_447 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; lean_inc(x_437); x_448 = lean_name_mk_numeral(x_447, x_437); -x_449 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30; -x_450 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36; +x_449 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; +x_450 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; x_451 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_451, 0, x_348); lean_ctor_set(x_451, 1, x_449); @@ -3979,10 +4378,10 @@ x_456 = lean_array_push(x_455, x_454); x_457 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_457, 0, x_362); lean_ctor_set(x_457, 1, x_456); -x_458 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60; +x_458 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60; x_459 = lean_name_mk_numeral(x_458, x_437); -x_460 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__58; -x_461 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__62; +x_460 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58; +x_461 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62; x_462 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_462, 0, x_348); lean_ctor_set(x_462, 1, x_460); @@ -4024,9 +4423,9 @@ x_482 = l_Lean_nullKind___closed__2; x_483 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_483, 0, x_482); lean_ctor_set(x_483, 1, x_481); -x_484 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; +x_484 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; x_485 = lean_array_push(x_484, x_483); -x_486 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_486 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_487 = lean_array_push(x_485, x_486); x_488 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_489 = lean_alloc_ctor(1, 2, 0); @@ -4092,12 +4491,12 @@ x_516 = lean_ctor_get(x_514, 1); lean_inc(x_516); lean_dec(x_514); x_517 = lean_box(0); -x_518 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__40; +x_518 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40; lean_inc(x_515); x_519 = lean_name_mk_numeral(x_518, x_515); x_520 = lean_box(0); -x_521 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__39; -x_522 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__43; +x_521 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39; +x_522 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43; x_523 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_523, 0, x_517); lean_ctor_set(x_523, 1, x_521); @@ -4117,9 +4516,9 @@ x_532 = l_Lean_Parser_Term_app___elambda__1___closed__2; x_533 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_533, 0, x_532); lean_ctor_set(x_533, 1, x_531); -x_534 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47; +x_534 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; x_535 = lean_name_mk_numeral(x_534, x_515); -x_536 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46; +x_536 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; x_537 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_537, 0, x_517); lean_ctor_set(x_537, 1, x_536); @@ -4135,7 +4534,7 @@ x_542 = lean_array_push(x_541, x_540); x_543 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_543, 0, x_532); lean_ctor_set(x_543, 1, x_542); -x_544 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3(x_512); +x_544 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(x_512); x_545 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_516); lean_dec(x_2); x_546 = lean_ctor_get(x_545, 0); @@ -4150,11 +4549,11 @@ if (lean_is_exclusive(x_545)) { lean_dec_ref(x_545); x_548 = lean_box(0); } -x_549 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__51; +x_549 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51; lean_inc(x_546); x_550 = lean_name_mk_numeral(x_549, x_546); -x_551 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__50; -x_552 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__54; +x_551 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50; +x_552 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54; x_553 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_553, 0, x_517); lean_ctor_set(x_553, 1, x_551); @@ -4165,11 +4564,11 @@ x_555 = lean_array_push(x_554, x_526); x_556 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_556, 0, x_528); lean_ctor_set(x_556, 1, x_555); -x_557 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31; +x_557 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; lean_inc(x_546); x_558 = lean_name_mk_numeral(x_557, x_546); -x_559 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30; -x_560 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36; +x_559 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; +x_560 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; x_561 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_561, 0, x_517); lean_ctor_set(x_561, 1, x_559); @@ -4185,10 +4584,10 @@ x_566 = lean_array_push(x_565, x_564); x_567 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_567, 0, x_532); lean_ctor_set(x_567, 1, x_566); -x_568 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60; +x_568 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60; x_569 = lean_name_mk_numeral(x_568, x_546); -x_570 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__58; -x_571 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__62; +x_570 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58; +x_571 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62; x_572 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_572, 0, x_517); lean_ctor_set(x_572, 1, x_570); @@ -4230,9 +4629,9 @@ x_592 = l_Lean_nullKind___closed__2; x_593 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_593, 0, x_592); lean_ctor_set(x_593, 1, x_591); -x_594 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; +x_594 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; x_595 = lean_array_push(x_594, x_593); -x_596 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_596 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_597 = lean_array_push(x_595, x_596); x_598 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_599 = lean_alloc_ctor(1, 2, 0); @@ -4265,47 +4664,47 @@ return x_608; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); return x_13; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteSyntax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(x_1, x_2, x_3); return x_4; } } @@ -4591,278 +4990,279 @@ return x_3; lean_object* l_Lean_Elab_Term_stxQuot_expand(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_unsigned_to_nat(1u); x_5 = l_Lean_Syntax_getArg(x_1, x_4); +x_6 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_5); lean_inc(x_2); -x_6 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main(x_5, x_2, x_3); -if (lean_obj_tag(x_6) == 0) +x_7 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(x_6, x_2, x_3); +if (lean_obj_tag(x_7) == 0) { -lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_6, 1); +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); -lean_dec(x_6); -x_9 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_9); lean_dec(x_2); -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_11 = lean_ctor_get(x_9, 0); -x_12 = lean_box(0); -x_13 = l_Lean_Elab_Term_stxQuot_expand___closed__4; -lean_inc(x_11); -x_14 = lean_name_mk_numeral(x_13, x_11); -x_15 = lean_box(0); -x_16 = l_Lean_Elab_Term_stxQuot_expand___closed__3; -x_17 = l_Lean_Elab_Term_stxQuot_expand___closed__9; -x_18 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_18, 0, x_12); -lean_ctor_set(x_18, 1, x_16); -lean_ctor_set(x_18, 2, x_14); -lean_ctor_set(x_18, 3, x_17); -x_19 = l_Array_iterateMAux___main___at_Lean_mkAppStx___spec__1___closed__1; -x_20 = lean_array_push(x_19, x_18); -x_21 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; -x_22 = lean_array_push(x_20, x_21); -x_23 = l_Lean_Parser_Term_id___elambda__1___closed__2; -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_22); -x_25 = l_Lean_Elab_Term_stxQuot_expand___closed__13; -lean_inc(x_11); -x_26 = lean_name_mk_numeral(x_25, x_11); -x_27 = l_Lean_Elab_Term_stxQuot_expand___closed__12; -x_28 = l_Lean_Elab_Term_stxQuot_expand___closed__18; -x_29 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_29, 0, x_12); -lean_ctor_set(x_29, 1, x_27); -lean_ctor_set(x_29, 2, x_26); -lean_ctor_set(x_29, 3, x_28); -x_30 = lean_array_push(x_19, x_29); -x_31 = lean_array_push(x_30, x_21); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_23); -lean_ctor_set(x_32, 1, x_31); -x_33 = lean_array_push(x_19, x_24); -x_34 = lean_array_push(x_33, x_32); -x_35 = l_Lean_Parser_Term_app___elambda__1___closed__2; -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_34); -x_37 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47; -lean_inc(x_11); -x_38 = lean_name_mk_numeral(x_37, x_11); -x_39 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46; -x_40 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_40, 0, x_12); -lean_ctor_set(x_40, 1, x_39); -lean_ctor_set(x_40, 2, x_38); -lean_ctor_set(x_40, 3, x_15); -x_41 = lean_array_push(x_19, x_40); -x_42 = lean_array_push(x_41, x_21); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_23); -lean_ctor_set(x_43, 1, x_42); -x_44 = l_Lean_FileMap_ofString___closed__1; -x_45 = lean_array_push(x_44, x_43); -x_46 = l_Lean_nullKind___closed__2; -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_45); -x_48 = l_Lean_Elab_Term_stxQuot_expand___closed__22; -x_49 = lean_name_mk_numeral(x_48, x_11); -x_50 = l_Lean_Elab_Term_stxQuot_expand___closed__21; -x_51 = l_Lean_Elab_Term_stxQuot_expand___closed__27; -x_52 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_52, 0, x_12); -lean_ctor_set(x_52, 1, x_50); -lean_ctor_set(x_52, 2, x_49); -lean_ctor_set(x_52, 3, x_51); -x_53 = lean_array_push(x_19, x_52); -x_54 = lean_array_push(x_53, x_21); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_23); -lean_ctor_set(x_55, 1, x_54); -x_56 = lean_array_push(x_19, x_55); -x_57 = lean_array_push(x_56, x_7); -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_35); -lean_ctor_set(x_58, 1, x_57); -x_59 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; -x_60 = lean_array_push(x_59, x_47); -x_61 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_62 = lean_array_push(x_60, x_61); -x_63 = lean_array_push(x_62, x_58); -x_64 = l_Lean_Parser_Term_fun___elambda__1___closed__2; -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); -x_66 = lean_array_push(x_19, x_65); -x_67 = lean_array_push(x_66, x_21); -x_68 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_68, 0, x_46); -lean_ctor_set(x_68, 1, x_67); -x_69 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; -x_70 = lean_array_push(x_69, x_68); -x_71 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; -x_72 = lean_array_push(x_70, x_71); -x_73 = l_Lean_Parser_Term_paren___elambda__1___closed__1; -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_72); -x_75 = lean_array_push(x_19, x_36); -x_76 = lean_array_push(x_75, x_74); -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_35); -lean_ctor_set(x_77, 1, x_76); -lean_ctor_set(x_9, 0, x_77); -return x_9; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_box(0); +x_14 = l_Lean_Elab_Term_stxQuot_expand___closed__4; +lean_inc(x_12); +x_15 = lean_name_mk_numeral(x_14, x_12); +x_16 = lean_box(0); +x_17 = l_Lean_Elab_Term_stxQuot_expand___closed__3; +x_18 = l_Lean_Elab_Term_stxQuot_expand___closed__9; +x_19 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_19, 0, x_13); +lean_ctor_set(x_19, 1, x_17); +lean_ctor_set(x_19, 2, x_15); +lean_ctor_set(x_19, 3, x_18); +x_20 = l_Array_iterateMAux___main___at_Lean_mkAppStx___spec__1___closed__1; +x_21 = lean_array_push(x_20, x_19); +x_22 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; +x_23 = lean_array_push(x_21, x_22); +x_24 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +x_26 = l_Lean_Elab_Term_stxQuot_expand___closed__13; +lean_inc(x_12); +x_27 = lean_name_mk_numeral(x_26, x_12); +x_28 = l_Lean_Elab_Term_stxQuot_expand___closed__12; +x_29 = l_Lean_Elab_Term_stxQuot_expand___closed__18; +x_30 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_30, 0, x_13); +lean_ctor_set(x_30, 1, x_28); +lean_ctor_set(x_30, 2, x_27); +lean_ctor_set(x_30, 3, x_29); +x_31 = lean_array_push(x_20, x_30); +x_32 = lean_array_push(x_31, x_22); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_24); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_array_push(x_20, x_25); +x_35 = lean_array_push(x_34, x_33); +x_36 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_35); +x_38 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; +lean_inc(x_12); +x_39 = lean_name_mk_numeral(x_38, x_12); +x_40 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; +x_41 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_41, 0, x_13); +lean_ctor_set(x_41, 1, x_40); +lean_ctor_set(x_41, 2, x_39); +lean_ctor_set(x_41, 3, x_16); +x_42 = lean_array_push(x_20, x_41); +x_43 = lean_array_push(x_42, x_22); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_24); +lean_ctor_set(x_44, 1, x_43); +x_45 = l_Lean_FileMap_ofString___closed__1; +x_46 = lean_array_push(x_45, x_44); +x_47 = l_Lean_nullKind___closed__2; +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_46); +x_49 = l_Lean_Elab_Term_stxQuot_expand___closed__22; +x_50 = lean_name_mk_numeral(x_49, x_12); +x_51 = l_Lean_Elab_Term_stxQuot_expand___closed__21; +x_52 = l_Lean_Elab_Term_stxQuot_expand___closed__27; +x_53 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_53, 0, x_13); +lean_ctor_set(x_53, 1, x_51); +lean_ctor_set(x_53, 2, x_50); +lean_ctor_set(x_53, 3, x_52); +x_54 = lean_array_push(x_20, x_53); +x_55 = lean_array_push(x_54, x_22); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_24); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_array_push(x_20, x_56); +x_58 = lean_array_push(x_57, x_8); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_36); +lean_ctor_set(x_59, 1, x_58); +x_60 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; +x_61 = lean_array_push(x_60, x_48); +x_62 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_63 = lean_array_push(x_61, x_62); +x_64 = lean_array_push(x_63, x_59); +x_65 = l_Lean_Parser_Term_fun___elambda__1___closed__2; +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_64); +x_67 = lean_array_push(x_20, x_66); +x_68 = lean_array_push(x_67, x_22); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_47); +lean_ctor_set(x_69, 1, x_68); +x_70 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_71 = lean_array_push(x_70, x_69); +x_72 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; +x_73 = lean_array_push(x_71, x_72); +x_74 = l_Lean_Parser_Term_paren___elambda__1___closed__1; +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_73); +x_76 = lean_array_push(x_20, x_37); +x_77 = lean_array_push(x_76, x_75); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_36); +lean_ctor_set(x_78, 1, x_77); +lean_ctor_set(x_10, 0, x_78); +return x_10; } else { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; -x_78 = lean_ctor_get(x_9, 0); -x_79 = lean_ctor_get(x_9, 1); +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_79 = lean_ctor_get(x_10, 0); +x_80 = lean_ctor_get(x_10, 1); +lean_inc(x_80); lean_inc(x_79); -lean_inc(x_78); -lean_dec(x_9); -x_80 = lean_box(0); -x_81 = l_Lean_Elab_Term_stxQuot_expand___closed__4; -lean_inc(x_78); -x_82 = lean_name_mk_numeral(x_81, x_78); -x_83 = lean_box(0); -x_84 = l_Lean_Elab_Term_stxQuot_expand___closed__3; -x_85 = l_Lean_Elab_Term_stxQuot_expand___closed__9; -x_86 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_86, 0, x_80); -lean_ctor_set(x_86, 1, x_84); -lean_ctor_set(x_86, 2, x_82); -lean_ctor_set(x_86, 3, x_85); -x_87 = l_Array_iterateMAux___main___at_Lean_mkAppStx___spec__1___closed__1; -x_88 = lean_array_push(x_87, x_86); -x_89 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; -x_90 = lean_array_push(x_88, x_89); -x_91 = l_Lean_Parser_Term_id___elambda__1___closed__2; -x_92 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_90); -x_93 = l_Lean_Elab_Term_stxQuot_expand___closed__13; -lean_inc(x_78); -x_94 = lean_name_mk_numeral(x_93, x_78); -x_95 = l_Lean_Elab_Term_stxQuot_expand___closed__12; -x_96 = l_Lean_Elab_Term_stxQuot_expand___closed__18; -x_97 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_97, 0, x_80); -lean_ctor_set(x_97, 1, x_95); -lean_ctor_set(x_97, 2, x_94); -lean_ctor_set(x_97, 3, x_96); -x_98 = lean_array_push(x_87, x_97); -x_99 = lean_array_push(x_98, x_89); -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_91); -lean_ctor_set(x_100, 1, x_99); -x_101 = lean_array_push(x_87, x_92); -x_102 = lean_array_push(x_101, x_100); -x_103 = l_Lean_Parser_Term_app___elambda__1___closed__2; -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_103); -lean_ctor_set(x_104, 1, x_102); -x_105 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47; -lean_inc(x_78); -x_106 = lean_name_mk_numeral(x_105, x_78); -x_107 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46; -x_108 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_108, 0, x_80); -lean_ctor_set(x_108, 1, x_107); -lean_ctor_set(x_108, 2, x_106); -lean_ctor_set(x_108, 3, x_83); -x_109 = lean_array_push(x_87, x_108); -x_110 = lean_array_push(x_109, x_89); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_91); -lean_ctor_set(x_111, 1, x_110); -x_112 = l_Lean_FileMap_ofString___closed__1; -x_113 = lean_array_push(x_112, x_111); -x_114 = l_Lean_nullKind___closed__2; -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_113); -x_116 = l_Lean_Elab_Term_stxQuot_expand___closed__22; -x_117 = lean_name_mk_numeral(x_116, x_78); -x_118 = l_Lean_Elab_Term_stxQuot_expand___closed__21; -x_119 = l_Lean_Elab_Term_stxQuot_expand___closed__27; -x_120 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_120, 0, x_80); -lean_ctor_set(x_120, 1, x_118); -lean_ctor_set(x_120, 2, x_117); -lean_ctor_set(x_120, 3, x_119); -x_121 = lean_array_push(x_87, x_120); -x_122 = lean_array_push(x_121, x_89); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_91); -lean_ctor_set(x_123, 1, x_122); -x_124 = lean_array_push(x_87, x_123); -x_125 = lean_array_push(x_124, x_7); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_103); -lean_ctor_set(x_126, 1, x_125); -x_127 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; -x_128 = lean_array_push(x_127, x_115); -x_129 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_130 = lean_array_push(x_128, x_129); -x_131 = lean_array_push(x_130, x_126); -x_132 = l_Lean_Parser_Term_fun___elambda__1___closed__2; -x_133 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_133, 0, x_132); -lean_ctor_set(x_133, 1, x_131); -x_134 = lean_array_push(x_87, x_133); -x_135 = lean_array_push(x_134, x_89); -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_114); -lean_ctor_set(x_136, 1, x_135); -x_137 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; -x_138 = lean_array_push(x_137, x_136); -x_139 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; -x_140 = lean_array_push(x_138, x_139); -x_141 = l_Lean_Parser_Term_paren___elambda__1___closed__1; -x_142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_140); -x_143 = lean_array_push(x_87, x_104); -x_144 = lean_array_push(x_143, x_142); -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_103); -lean_ctor_set(x_145, 1, x_144); -x_146 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_146, 0, x_145); -lean_ctor_set(x_146, 1, x_79); -return x_146; +lean_dec(x_10); +x_81 = lean_box(0); +x_82 = l_Lean_Elab_Term_stxQuot_expand___closed__4; +lean_inc(x_79); +x_83 = lean_name_mk_numeral(x_82, x_79); +x_84 = lean_box(0); +x_85 = l_Lean_Elab_Term_stxQuot_expand___closed__3; +x_86 = l_Lean_Elab_Term_stxQuot_expand___closed__9; +x_87 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_87, 0, x_81); +lean_ctor_set(x_87, 1, x_85); +lean_ctor_set(x_87, 2, x_83); +lean_ctor_set(x_87, 3, x_86); +x_88 = l_Array_iterateMAux___main___at_Lean_mkAppStx___spec__1___closed__1; +x_89 = lean_array_push(x_88, x_87); +x_90 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; +x_91 = lean_array_push(x_89, x_90); +x_92 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_91); +x_94 = l_Lean_Elab_Term_stxQuot_expand___closed__13; +lean_inc(x_79); +x_95 = lean_name_mk_numeral(x_94, x_79); +x_96 = l_Lean_Elab_Term_stxQuot_expand___closed__12; +x_97 = l_Lean_Elab_Term_stxQuot_expand___closed__18; +x_98 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_98, 0, x_81); +lean_ctor_set(x_98, 1, x_96); +lean_ctor_set(x_98, 2, x_95); +lean_ctor_set(x_98, 3, x_97); +x_99 = lean_array_push(x_88, x_98); +x_100 = lean_array_push(x_99, x_90); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_92); +lean_ctor_set(x_101, 1, x_100); +x_102 = lean_array_push(x_88, x_93); +x_103 = lean_array_push(x_102, x_101); +x_104 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_103); +x_106 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; +lean_inc(x_79); +x_107 = lean_name_mk_numeral(x_106, x_79); +x_108 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; +x_109 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_109, 0, x_81); +lean_ctor_set(x_109, 1, x_108); +lean_ctor_set(x_109, 2, x_107); +lean_ctor_set(x_109, 3, x_84); +x_110 = lean_array_push(x_88, x_109); +x_111 = lean_array_push(x_110, x_90); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_92); +lean_ctor_set(x_112, 1, x_111); +x_113 = l_Lean_FileMap_ofString___closed__1; +x_114 = lean_array_push(x_113, x_112); +x_115 = l_Lean_nullKind___closed__2; +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_115); +lean_ctor_set(x_116, 1, x_114); +x_117 = l_Lean_Elab_Term_stxQuot_expand___closed__22; +x_118 = lean_name_mk_numeral(x_117, x_79); +x_119 = l_Lean_Elab_Term_stxQuot_expand___closed__21; +x_120 = l_Lean_Elab_Term_stxQuot_expand___closed__27; +x_121 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_121, 0, x_81); +lean_ctor_set(x_121, 1, x_119); +lean_ctor_set(x_121, 2, x_118); +lean_ctor_set(x_121, 3, x_120); +x_122 = lean_array_push(x_88, x_121); +x_123 = lean_array_push(x_122, x_90); +x_124 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_124, 0, x_92); +lean_ctor_set(x_124, 1, x_123); +x_125 = lean_array_push(x_88, x_124); +x_126 = lean_array_push(x_125, x_8); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_104); +lean_ctor_set(x_127, 1, x_126); +x_128 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; +x_129 = lean_array_push(x_128, x_116); +x_130 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; +x_131 = lean_array_push(x_129, x_130); +x_132 = lean_array_push(x_131, x_127); +x_133 = l_Lean_Parser_Term_fun___elambda__1___closed__2; +x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_134, 0, x_133); +lean_ctor_set(x_134, 1, x_132); +x_135 = lean_array_push(x_88, x_134); +x_136 = lean_array_push(x_135, x_90); +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_115); +lean_ctor_set(x_137, 1, x_136); +x_138 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_139 = lean_array_push(x_138, x_137); +x_140 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; +x_141 = lean_array_push(x_139, x_140); +x_142 = l_Lean_Parser_Term_paren___elambda__1___closed__1; +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_142); +lean_ctor_set(x_143, 1, x_141); +x_144 = lean_array_push(x_88, x_105); +x_145 = lean_array_push(x_144, x_143); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_104); +lean_ctor_set(x_146, 1, x_145); +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_80); +return x_147; } } else { -uint8_t x_147; +uint8_t x_148; lean_dec(x_2); -x_147 = !lean_is_exclusive(x_6); -if (x_147 == 0) +x_148 = !lean_is_exclusive(x_7); +if (x_148 == 0) { -return x_6; +return x_7; } else { -lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_148 = lean_ctor_get(x_6, 0); -x_149 = lean_ctor_get(x_6, 1); +lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_149 = lean_ctor_get(x_7, 0); +x_150 = lean_ctor_get(x_7, 1); +lean_inc(x_150); lean_inc(x_149); -lean_inc(x_148); -lean_dec(x_6); -x_150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_150, 0, x_148); -lean_ctor_set(x_150, 1, x_149); -return x_150; +lean_dec(x_7); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_149); +lean_ctor_set(x_151, 1, x_150); +return x_151; } } } @@ -5122,7 +5522,7 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -5132,27 +5532,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_3); -return x_4; -} -} -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_3); -return x_4; -} -} -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5164,7 +5544,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__2() { _start: { lean_object* x_1; @@ -5172,19 +5552,19 @@ x_1 = lean_mk_string(":="); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__2; +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__2; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__4() { _start: { lean_object* x_1; @@ -5192,22 +5572,22 @@ x_1 = lean_mk_string("discr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__4; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__5; +x_3 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -5215,17 +5595,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4; +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__8() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__8() { _start: { lean_object* x_1; @@ -5233,29 +5613,29 @@ x_1 = lean_mk_string(";"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__8; +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__8; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -5266,10 +5646,10 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; x_7 = lean_ctor_get(x_5, 0); x_8 = lean_box(0); -x_9 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_9 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_10 = lean_name_mk_numeral(x_9, x_7); x_11 = lean_box(0); -x_12 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_12 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_13 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_13, 0, x_8); lean_ctor_set(x_13, 1, x_12); @@ -5286,16 +5666,16 @@ lean_ctor_set(x_19, 1, x_17); x_20 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_21 = lean_array_push(x_20, x_1); x_22 = lean_array_push(x_21, x_16); -x_23 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_23 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_24 = lean_array_push(x_22, x_23); x_25 = lean_array_push(x_24, x_19); x_26 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); -x_28 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_28 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_29 = lean_array_push(x_28, x_27); -x_30 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_30 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_31 = lean_array_push(x_29, x_30); x_32 = lean_array_push(x_31, x_2); x_33 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -5314,10 +5694,10 @@ lean_inc(x_36); lean_inc(x_35); lean_dec(x_5); x_37 = lean_box(0); -x_38 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_38 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_39 = lean_name_mk_numeral(x_38, x_35); x_40 = lean_box(0); -x_41 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_41 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_37); lean_ctor_set(x_42, 1, x_41); @@ -5334,16 +5714,16 @@ lean_ctor_set(x_48, 1, x_46); x_49 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_50 = lean_array_push(x_49, x_1); x_51 = lean_array_push(x_50, x_45); -x_52 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_52 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_53 = lean_array_push(x_51, x_52); x_54 = lean_array_push(x_53, x_48); x_55 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); -x_57 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_57 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_58 = lean_array_push(x_57, x_56); -x_59 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_59 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_60 = lean_array_push(x_58, x_59); x_61 = lean_array_push(x_60, x_2); x_62 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -5357,27 +5737,7 @@ return x_64; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_3); -return x_4; -} -} -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_3); -return x_4; -} -} -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__1(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5397,7 +5757,7 @@ return x_5; } } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__1() { +lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -5406,17 +5766,17 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__2() { +lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_declareBuiltinParser___closed__8; -x_2 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__1; +x_2 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5439,7 +5799,7 @@ x_8 = lean_array_fget(x_3, x_2); x_9 = lean_box(0); x_10 = x_9; x_11 = lean_array_fset(x_3, x_2, x_10); -x_12 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__2; +x_12 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2; lean_inc(x_8); x_13 = lean_array_push(x_12, x_8); x_14 = l_Lean_Elab_Term_mkExplicitBinder___closed__4; @@ -5460,7 +5820,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -5468,36 +5828,36 @@ x_1 = lean_mk_string("syntax_match: unexpected pattern kind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__3; +x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3; x_6 = l_Lean_Elab_Term_throwError___rarg(x_1, x_5, x_3, x_4); return x_6; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -5505,22 +5865,22 @@ x_1 = lean_mk_string("Syntax.getArgs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -5528,7 +5888,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4() { _start: { lean_object* x_1; @@ -5536,17 +5896,17 @@ x_1 = lean_mk_string("getArgs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -5565,12 +5925,12 @@ lean_inc(x_1); x_15 = lean_name_mk_string(x_1, x_14); x_16 = l_Lean_Parser_Term_app___elambda__1___closed__1; x_17 = lean_name_mk_string(x_1, x_16); -x_18 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5; +x_18 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; lean_inc(x_10); x_19 = lean_name_mk_numeral(x_18, x_10); -x_20 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4; +x_20 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4; x_21 = lean_name_mk_string(x_2, x_20); -x_22 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4; +x_22 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; x_23 = lean_name_mk_string(x_21, x_22); x_24 = lean_box(0); x_25 = lean_alloc_ctor(0, 2, 0); @@ -5579,7 +5939,7 @@ lean_ctor_set(x_25, 1, x_24); x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); -x_27 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3; +x_27 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; x_28 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_28, 0, x_13); lean_ctor_set(x_28, 1, x_27); @@ -5593,9 +5953,9 @@ lean_inc(x_3); x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_3); lean_ctor_set(x_33, 1, x_32); -x_34 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_34 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_35 = lean_name_mk_numeral(x_34, x_10); -x_36 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_36 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_13); lean_ctor_set(x_37, 1, x_36); @@ -5614,15 +5974,15 @@ lean_ctor_set(x_43, 1, x_42); x_44 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_45 = lean_array_push(x_44, x_4); x_46 = lean_array_push(x_45, x_31); -x_47 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_47 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_48 = lean_array_push(x_46, x_47); x_49 = lean_array_push(x_48, x_43); x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_15); lean_ctor_set(x_50, 1, x_49); -x_51 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_51 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_52 = lean_array_push(x_51, x_50); -x_53 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_53 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_54 = lean_array_push(x_52, x_53); x_55 = lean_array_push(x_54, x_5); x_56 = lean_alloc_ctor(1, 2, 0); @@ -5648,12 +6008,12 @@ lean_inc(x_1); x_63 = lean_name_mk_string(x_1, x_62); x_64 = l_Lean_Parser_Term_app___elambda__1___closed__1; x_65 = lean_name_mk_string(x_1, x_64); -x_66 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5; +x_66 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; lean_inc(x_57); x_67 = lean_name_mk_numeral(x_66, x_57); -x_68 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4; +x_68 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4; x_69 = lean_name_mk_string(x_2, x_68); -x_70 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4; +x_70 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; x_71 = lean_name_mk_string(x_69, x_70); x_72 = lean_box(0); x_73 = lean_alloc_ctor(0, 2, 0); @@ -5662,7 +6022,7 @@ lean_ctor_set(x_73, 1, x_72); x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3; +x_75 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; x_76 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_76, 0, x_61); lean_ctor_set(x_76, 1, x_75); @@ -5676,9 +6036,9 @@ lean_inc(x_3); x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_3); lean_ctor_set(x_81, 1, x_80); -x_82 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_82 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_83 = lean_name_mk_numeral(x_82, x_57); -x_84 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_84 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_85 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_85, 0, x_61); lean_ctor_set(x_85, 1, x_84); @@ -5697,15 +6057,15 @@ lean_ctor_set(x_91, 1, x_90); x_92 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_93 = lean_array_push(x_92, x_4); x_94 = lean_array_push(x_93, x_79); -x_95 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_95 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_96 = lean_array_push(x_94, x_95); x_97 = lean_array_push(x_96, x_91); x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_63); lean_ctor_set(x_98, 1, x_97); -x_99 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_99 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_100 = lean_array_push(x_99, x_98); -x_101 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_101 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_102 = lean_array_push(x_100, x_101); x_103 = lean_array_push(x_102, x_5); x_104 = lean_alloc_ctor(1, 2, 0); @@ -5718,201 +6078,7 @@ return x_105; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; uint8_t x_10; -x_9 = l_Lean_Elab_Term_getCurrMacroScope(x_7, x_8); -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_11 = lean_ctor_get(x_9, 0); -x_12 = l_Lean_Parser_Term_let___elambda__1___closed__1; -lean_inc(x_1); -x_13 = lean_name_mk_string(x_1, x_12); -x_14 = lean_box(0); -x_15 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; -lean_inc(x_1); -x_16 = lean_name_mk_string(x_1, x_15); -x_17 = l_Lean_nullKind___closed__1; -lean_inc(x_2); -x_18 = lean_name_mk_string(x_2, x_17); -x_19 = l_Array_empty___closed__1; -x_20 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_Parser_Term_app___elambda__1___closed__1; -x_22 = lean_name_mk_string(x_1, x_21); -x_23 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4; -lean_inc(x_2); -x_24 = lean_name_mk_string(x_2, x_23); -x_25 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4; -x_26 = lean_name_mk_string(x_24, x_25); -lean_inc(x_11); -x_27 = lean_name_mk_numeral(x_26, x_11); -x_28 = lean_name_mk_string(x_3, x_23); -x_29 = lean_name_mk_string(x_28, x_25); -x_30 = lean_box(0); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_30); -x_33 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3; -x_34 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_34, 0, x_14); -lean_ctor_set(x_34, 1, x_33); -lean_ctor_set(x_34, 2, x_27); -lean_ctor_set(x_34, 3, x_32); -x_35 = l_Array_iterateMAux___main___at_Lean_mkAppStx___spec__1___closed__1; -x_36 = lean_array_push(x_35, x_34); -lean_inc(x_20); -x_37 = lean_array_push(x_36, x_20); -lean_inc(x_4); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_4); -lean_ctor_set(x_38, 1, x_37); -x_39 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4; -x_40 = lean_name_mk_string(x_2, x_39); -x_41 = lean_name_mk_numeral(x_40, x_11); -x_42 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; -x_43 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_43, 0, x_14); -lean_ctor_set(x_43, 1, x_42); -lean_ctor_set(x_43, 2, x_41); -lean_ctor_set(x_43, 3, x_30); -x_44 = lean_array_push(x_35, x_43); -lean_inc(x_20); -x_45 = lean_array_push(x_44, x_20); -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_4); -lean_ctor_set(x_46, 1, x_45); -x_47 = lean_array_push(x_35, x_38); -x_48 = lean_array_push(x_47, x_46); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_22); -lean_ctor_set(x_49, 1, x_48); -x_50 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; -x_51 = lean_array_push(x_50, x_5); -x_52 = lean_array_push(x_51, x_20); -x_53 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; -x_54 = lean_array_push(x_52, x_53); -x_55 = lean_array_push(x_54, x_49); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_16); -lean_ctor_set(x_56, 1, x_55); -x_57 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; -x_58 = lean_array_push(x_57, x_56); -x_59 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; -x_60 = lean_array_push(x_58, x_59); -x_61 = lean_array_push(x_60, x_6); -x_62 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_62, 0, x_13); -lean_ctor_set(x_62, 1, x_61); -lean_ctor_set(x_9, 0, x_62); -return x_9; -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_63 = lean_ctor_get(x_9, 0); -x_64 = lean_ctor_get(x_9, 1); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_9); -x_65 = l_Lean_Parser_Term_let___elambda__1___closed__1; -lean_inc(x_1); -x_66 = lean_name_mk_string(x_1, x_65); -x_67 = lean_box(0); -x_68 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; -lean_inc(x_1); -x_69 = lean_name_mk_string(x_1, x_68); -x_70 = l_Lean_nullKind___closed__1; -lean_inc(x_2); -x_71 = lean_name_mk_string(x_2, x_70); -x_72 = l_Array_empty___closed__1; -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_72); -x_74 = l_Lean_Parser_Term_app___elambda__1___closed__1; -x_75 = lean_name_mk_string(x_1, x_74); -x_76 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4; -lean_inc(x_2); -x_77 = lean_name_mk_string(x_2, x_76); -x_78 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4; -x_79 = lean_name_mk_string(x_77, x_78); -lean_inc(x_63); -x_80 = lean_name_mk_numeral(x_79, x_63); -x_81 = lean_name_mk_string(x_3, x_76); -x_82 = lean_name_mk_string(x_81, x_78); -x_83 = lean_box(0); -x_84 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_83); -x_86 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3; -x_87 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_87, 0, x_67); -lean_ctor_set(x_87, 1, x_86); -lean_ctor_set(x_87, 2, x_80); -lean_ctor_set(x_87, 3, x_85); -x_88 = l_Array_iterateMAux___main___at_Lean_mkAppStx___spec__1___closed__1; -x_89 = lean_array_push(x_88, x_87); -lean_inc(x_73); -x_90 = lean_array_push(x_89, x_73); -lean_inc(x_4); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_4); -lean_ctor_set(x_91, 1, x_90); -x_92 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4; -x_93 = lean_name_mk_string(x_2, x_92); -x_94 = lean_name_mk_numeral(x_93, x_63); -x_95 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; -x_96 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_96, 0, x_67); -lean_ctor_set(x_96, 1, x_95); -lean_ctor_set(x_96, 2, x_94); -lean_ctor_set(x_96, 3, x_83); -x_97 = lean_array_push(x_88, x_96); -lean_inc(x_73); -x_98 = lean_array_push(x_97, x_73); -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_4); -lean_ctor_set(x_99, 1, x_98); -x_100 = lean_array_push(x_88, x_91); -x_101 = lean_array_push(x_100, x_99); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_75); -lean_ctor_set(x_102, 1, x_101); -x_103 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; -x_104 = lean_array_push(x_103, x_5); -x_105 = lean_array_push(x_104, x_73); -x_106 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; -x_107 = lean_array_push(x_105, x_106); -x_108 = lean_array_push(x_107, x_102); -x_109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_109, 0, x_69); -lean_ctor_set(x_109, 1, x_108); -x_110 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; -x_111 = lean_array_push(x_110, x_109); -x_112 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; -x_113 = lean_array_push(x_111, x_112); -x_114 = lean_array_push(x_113, x_6); -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_66); -lean_ctor_set(x_115, 1, x_114); -x_116 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_64); -return x_116; -} -} -} -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1() { _start: { lean_object* x_1; @@ -5920,45 +6086,45 @@ x_1 = lean_mk_string("syntax_match: antiquotation must be variable"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__3; +x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3; x_6 = l_Lean_Elab_Term_throwError___rarg(x_1, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__20; +x_5 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20; x_6 = l_Lean_Elab_Term_throwError___rarg(x_1, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___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* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -5974,10 +6140,10 @@ x_11 = lean_name_mk_string(x_1, x_10); x_12 = lean_box(0); x_13 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; x_14 = lean_name_mk_string(x_1, x_13); -x_15 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_15 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_16 = lean_name_mk_numeral(x_15, x_9); x_17 = lean_box(0); -x_18 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_18 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_18); @@ -5993,15 +6159,15 @@ lean_ctor_set(x_24, 1, x_23); x_25 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_26 = lean_array_push(x_25, x_3); x_27 = lean_array_push(x_26, x_22); -x_28 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_28 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_29 = lean_array_push(x_27, x_28); x_30 = lean_array_push(x_29, x_24); x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_14); lean_ctor_set(x_31, 1, x_30); -x_32 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_32 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_33 = lean_array_push(x_32, x_31); -x_34 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_34 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_35 = lean_array_push(x_33, x_34); x_36 = lean_array_push(x_35, x_4); x_37 = lean_alloc_ctor(1, 2, 0); @@ -6024,10 +6190,10 @@ x_41 = lean_name_mk_string(x_1, x_40); x_42 = lean_box(0); x_43 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; x_44 = lean_name_mk_string(x_1, x_43); -x_45 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_45 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_46 = lean_name_mk_numeral(x_45, x_38); x_47 = lean_box(0); -x_48 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_48 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_49 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_49, 0, x_42); lean_ctor_set(x_49, 1, x_48); @@ -6043,15 +6209,15 @@ lean_ctor_set(x_54, 1, x_53); x_55 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_56 = lean_array_push(x_55, x_3); x_57 = lean_array_push(x_56, x_52); -x_58 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_58 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_59 = lean_array_push(x_57, x_58); x_60 = lean_array_push(x_59, x_54); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_44); lean_ctor_set(x_61, 1, x_60); -x_62 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_62 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_63 = lean_array_push(x_62, x_61); -x_64 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_64 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_65 = lean_array_push(x_63, x_64); x_66 = lean_array_push(x_65, x_4); x_67 = lean_alloc_ctor(1, 2, 0); @@ -6064,39 +6230,15 @@ return x_68; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1___boxed), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__2___boxed), 3, 0); -return x_1; -} -} -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__3___boxed), 3, 0); -return x_1; -} -} -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__5___boxed), 3, 0); -return x_1; -} -} -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2() { _start: { lean_object* x_1; @@ -6104,12 +6246,12 @@ x_1 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_HeadInfo_Inh return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2; x_3 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_1); @@ -6117,20 +6259,12 @@ lean_ctor_set(x_3, 2, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__6___boxed), 3, 0); -return x_1; -} -} -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; x_2 = lean_ctor_get(x_1, 0); -x_3 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__1(x_2); +x_3 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1(x_2); x_4 = l_Lean_Parser_Term_id___elambda__1___closed__2; lean_inc(x_3); x_5 = l_Lean_Syntax_isOfKind(x_3, x_4); @@ -6149,7 +6283,7 @@ x_9 = l_Lean_Syntax_isOfKind(x_3, x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___boxed), 4, 1); +x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___boxed), 4, 1); lean_closure_set(x_10, 0, x_3); x_11 = lean_box(0); x_12 = lean_alloc_ctor(0, 3, 0); @@ -6160,203 +6294,256 @@ return x_12; } else { -lean_object* x_13; lean_object* x_14; +lean_object* x_13; lean_object* x_14; uint8_t x_15; x_13 = lean_unsigned_to_nat(1u); x_14 = l_Lean_Syntax_getArg(x_3, x_13); lean_dec(x_3); -switch (lean_obj_tag(x_14)) { -case 0: -{ -uint8_t x_15; -x_15 = l_Lean_Elab_Term_isAntiquotSplicePat(x_14); +x_15 = l_Lean_Syntax_isAtom(x_14); if (x_15 == 0) { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_16 = l_Lean_Syntax_getArgs(x_14); -x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2(x_8, x_17, x_16); -x_19 = l_Lean_Syntax_getKind(x_14); -x_20 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_20, 0, x_19); -x_21 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_21, 0, x_18); -x_22 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__1; -x_23 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_23, 0, x_20); -lean_ctor_set(x_23, 1, x_21); -lean_ctor_set(x_23, 2, x_22); -return x_23; -} -else +lean_object* x_16; +x_16 = l_Lean_Elab_Term_antiquotKind_x3f(x_14); +if (lean_obj_tag(x_16) == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_24 = lean_unsigned_to_nat(0u); -x_25 = l_Lean_Syntax_getArg(x_14, x_24); -x_26 = l_Lean_Syntax_getArg(x_25, x_13); -lean_dec(x_25); -x_27 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_28 = l_Lean_nameToExprAux___main___closed__4; -x_29 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___boxed), 7, 4); -lean_closure_set(x_29, 0, x_27); -lean_closure_set(x_29, 1, x_28); -lean_closure_set(x_29, 2, x_4); -lean_closure_set(x_29, 3, x_26); -x_30 = lean_box(0); -x_31 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_30); -lean_ctor_set(x_31, 2, x_29); -return x_31; -} -} -case 1: -{ -lean_object* x_32; -x_32 = lean_ctor_get(x_14, 0); -lean_inc(x_32); -switch (lean_obj_tag(x_32)) { -case 0: -{ -uint8_t x_33; +uint8_t x_17; lean_inc(x_14); -x_33 = l_Lean_Elab_Term_isAntiquotSplicePat(x_14); -if (x_33 == 0) +x_17 = l_Lean_Elab_Term_isAntiquotSplicePat(x_14); +if (x_17 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_34 = l_Lean_Syntax_getArgs(x_14); -x_35 = lean_unsigned_to_nat(0u); -x_36 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2(x_8, x_35, x_34); -x_37 = l_Lean_Syntax_getKind(x_14); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_37); -x_39 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_39, 0, x_36); -x_40 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__2; -x_41 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_41, 0, x_38); -lean_ctor_set(x_41, 1, x_39); -lean_ctor_set(x_41, 2, x_40); -return x_41; +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_18 = l_Lean_Syntax_getArgs(x_14); +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2(x_8, x_19, x_18); +x_21 = l_Lean_Syntax_getKind(x_14); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_21); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_20); +x_24 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1; +x_25 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_25, 0, x_22); +lean_ctor_set(x_25, 1, x_23); +lean_ctor_set(x_25, 2, x_24); +return x_25; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_42 = lean_unsigned_to_nat(0u); -x_43 = l_Lean_Syntax_getArg(x_14, x_42); +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; +x_26 = lean_unsigned_to_nat(0u); +x_27 = l_Lean_Syntax_getArg(x_14, x_26); lean_dec(x_14); -x_44 = l_Lean_Syntax_getArg(x_43, x_13); -lean_dec(x_43); -x_45 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_46 = l_Lean_nameToExprAux___main___closed__4; -x_47 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__3___boxed), 8, 5); -lean_closure_set(x_47, 0, x_45); -lean_closure_set(x_47, 1, x_32); -lean_closure_set(x_47, 2, x_46); -lean_closure_set(x_47, 3, x_4); -lean_closure_set(x_47, 4, x_44); -x_48 = lean_box(0); +x_28 = l_Lean_Syntax_getArg(x_27, x_13); +lean_dec(x_27); +x_29 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +x_30 = l_Lean_nameToExprAux___main___closed__4; +x_31 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___boxed), 7, 4); +lean_closure_set(x_31, 0, x_29); +lean_closure_set(x_31, 1, x_30); +lean_closure_set(x_31, 2, x_4); +lean_closure_set(x_31, 3, x_28); +x_32 = lean_box(0); +x_33 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_32); +lean_ctor_set(x_33, 2, x_31); +return x_33; +} +} +else +{ +lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; uint8_t x_40; lean_object* x_41; +x_34 = lean_ctor_get(x_16, 0); +lean_inc(x_34); +x_35 = lean_box(0); +x_36 = lean_name_eq(x_34, x_35); +lean_dec(x_34); +x_37 = l_Lean_Syntax_getArg(x_14, x_13); +x_38 = l_Lean_Parser_Term_paren___elambda__1___closed__1; +lean_inc(x_37); +x_39 = l_Lean_Syntax_isOfKind(x_37, x_38); +x_40 = l_Lean_Elab_Term_isAntiquotSplice(x_14); +if (x_36 == 0) +{ +x_41 = x_16; +goto block_72; +} +else +{ +lean_object* x_73; +lean_dec(x_16); +x_73 = lean_box(0); +x_41 = x_73; +goto block_72; +} +block_72: +{ +lean_object* x_42; +if (x_39 == 0) +{ +x_42 = x_37; +goto block_53; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_54 = l_Lean_Syntax_getArgs(x_37); +x_55 = lean_array_get_size(x_54); +lean_dec(x_54); +x_56 = lean_unsigned_to_nat(3u); +x_57 = lean_nat_dec_eq(x_55, x_56); +lean_dec(x_55); +if (x_57 == 0) +{ +x_42 = x_37; +goto block_53; +} +else +{ +lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_58 = l_Lean_Syntax_getArg(x_37, x_13); +x_59 = l_Lean_nullKind___closed__2; +lean_inc(x_58); +x_60 = l_Lean_Syntax_isOfKind(x_58, x_59); +if (x_60 == 0) +{ +lean_dec(x_58); +x_42 = x_37; +goto block_53; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_61 = l_Lean_Syntax_getArgs(x_58); +x_62 = lean_array_get_size(x_61); +lean_dec(x_61); +x_63 = lean_unsigned_to_nat(2u); +x_64 = lean_nat_dec_eq(x_62, x_63); +lean_dec(x_62); +if (x_64 == 0) +{ +lean_dec(x_58); +x_42 = x_37; +goto block_53; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +x_65 = lean_unsigned_to_nat(0u); +x_66 = l_Lean_Syntax_getArg(x_58, x_65); +x_67 = l_Lean_Syntax_getArg(x_58, x_13); +lean_dec(x_58); +lean_inc(x_67); +x_68 = l_Lean_Syntax_isOfKind(x_67, x_59); +if (x_68 == 0) +{ +lean_dec(x_67); +lean_dec(x_66); +x_42 = x_37; +goto block_53; +} +else +{ +lean_object* x_69; lean_object* x_70; uint8_t x_71; +x_69 = l_Lean_Syntax_getArgs(x_67); +lean_dec(x_67); +x_70 = lean_array_get_size(x_69); +lean_dec(x_69); +x_71 = lean_nat_dec_eq(x_70, x_65); +lean_dec(x_70); +if (x_71 == 0) +{ +lean_dec(x_66); +x_42 = x_37; +goto block_53; +} +else +{ +lean_dec(x_37); +x_42 = x_66; +goto block_53; +} +} +} +} +} +} +block_53: +{ +if (x_40 == 0) +{ +uint8_t x_43; +lean_dec(x_14); +lean_inc(x_42); +x_43 = l_Lean_Syntax_isOfKind(x_42, x_4); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +lean_dec(x_41); +x_44 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___boxed), 4, 1); +lean_closure_set(x_44, 0, x_42); +x_45 = lean_box(0); +x_46 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_45); +lean_ctor_set(x_46, 2, x_44); +return x_46; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_box(0); +x_48 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___boxed), 4, 1); +lean_closure_set(x_48, 0, x_42); x_49 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_48); -lean_ctor_set(x_49, 2, x_47); +lean_ctor_set(x_49, 0, x_41); +lean_ctor_set(x_49, 1, x_47); +lean_ctor_set(x_49, 2, x_48); return x_49; } } -case 1: +else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_50 = lean_ctor_get(x_32, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_32, 1); -lean_inc(x_51); -lean_dec(x_32); -x_52 = l_Lean_Parser_mkAntiquot___closed__1; -x_53 = lean_string_dec_eq(x_51, x_52); -lean_dec(x_51); -if (x_53 == 0) -{ -uint8_t x_54; -lean_dec(x_50); -lean_inc(x_14); -x_54 = l_Lean_Elab_Term_isAntiquotSplicePat(x_14); -if (x_54 == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_55 = l_Lean_Syntax_getArgs(x_14); -x_56 = lean_unsigned_to_nat(0u); -x_57 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2(x_8, x_56, x_55); -x_58 = l_Lean_Syntax_getKind(x_14); -x_59 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_59, 0, x_58); -x_60 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_60, 0, x_57); -x_61 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__3; -x_62 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_60); -lean_ctor_set(x_62, 2, x_61); -return x_62; +lean_object* x_50; lean_object* x_51; lean_object* x_52; +lean_dec(x_42); +lean_dec(x_41); +x_50 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4___boxed), 4, 1); +lean_closure_set(x_50, 0, x_14); +x_51 = lean_box(0); +x_52 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_51); +lean_ctor_set(x_52, 2, x_50); +return x_52; +} +} +} +} } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_63 = lean_unsigned_to_nat(0u); -x_64 = l_Lean_Syntax_getArg(x_14, x_63); +lean_object* x_74; lean_dec(x_14); -x_65 = l_Lean_Syntax_getArg(x_64, x_13); -lean_dec(x_64); -x_66 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_67 = l_Lean_nameToExprAux___main___closed__4; -x_68 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___boxed), 7, 4); -lean_closure_set(x_68, 0, x_66); -lean_closure_set(x_68, 1, x_67); -lean_closure_set(x_68, 2, x_4); -lean_closure_set(x_68, 3, x_65); -x_69 = lean_box(0); -x_70 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_69); -lean_ctor_set(x_70, 2, x_68); -return x_70; +x_74 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3; +return x_74; +} } } else { -lean_object* x_71; uint8_t x_72; lean_object* x_73; uint8_t x_74; lean_object* x_75; -x_71 = lean_box(0); -x_72 = lean_name_eq(x_50, x_71); -x_73 = l_Lean_Syntax_getArg(x_14, x_13); -x_74 = l_Lean_Elab_Term_isAntiquotSplice(x_14); -if (x_72 == 0) -{ -lean_object* x_87; -x_87 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_87, 0, x_50); -x_75 = x_87; -goto block_86; +lean_object* x_75; +lean_dec(x_3); +x_75 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3; +return x_75; +} } else { -lean_object* x_88; -lean_dec(x_50); -x_88 = lean_box(0); -x_75 = x_88; -goto block_86; -} -block_86: -{ -if (x_74 == 0) -{ -uint8_t x_76; -lean_dec(x_14); -lean_inc(x_73); -x_76 = l_Lean_Syntax_isOfKind(x_73, x_4); -if (x_76 == 0) -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; -lean_dec(x_75); -x_77 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___boxed), 4, 1); -lean_closure_set(x_77, 0, x_73); +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_76 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +x_77 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5___boxed), 6, 3); +lean_closure_set(x_77, 0, x_76); +lean_closure_set(x_77, 1, x_4); +lean_closure_set(x_77, 2, x_3); x_78 = lean_box(0); x_79 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_79, 0, x_78); @@ -6364,299 +6551,96 @@ lean_ctor_set(x_79, 1, x_78); lean_ctor_set(x_79, 2, x_77); return x_79; } -else -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_80 = lean_box(0); -x_81 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___boxed), 4, 1); -lean_closure_set(x_81, 0, x_73); -x_82 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_82, 0, x_75); -lean_ctor_set(x_82, 1, x_80); -lean_ctor_set(x_82, 2, x_81); -return x_82; } } -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -lean_dec(x_75); -lean_dec(x_73); -x_83 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__5___boxed), 4, 1); -lean_closure_set(x_83, 0, x_14); -x_84 = lean_box(0); -x_85 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_84); -lean_ctor_set(x_85, 2, x_83); -return x_85; -} -} -} -} -default: -{ -uint8_t x_89; -lean_dec(x_32); -lean_inc(x_14); -x_89 = l_Lean_Elab_Term_isAntiquotSplicePat(x_14); -if (x_89 == 0) -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_90 = l_Lean_Syntax_getArgs(x_14); -x_91 = lean_unsigned_to_nat(0u); -x_92 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2(x_8, x_91, x_90); -x_93 = l_Lean_Syntax_getKind(x_14); -x_94 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_94, 0, x_93); -x_95 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_95, 0, x_92); -x_96 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__4; -x_97 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_97, 0, x_94); -lean_ctor_set(x_97, 1, x_95); -lean_ctor_set(x_97, 2, x_96); -return x_97; -} -else -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_98 = lean_unsigned_to_nat(0u); -x_99 = l_Lean_Syntax_getArg(x_14, x_98); -lean_dec(x_14); -x_100 = l_Lean_Syntax_getArg(x_99, x_13); -lean_dec(x_99); -x_101 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_102 = l_Lean_nameToExprAux___main___closed__4; -x_103 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___boxed), 7, 4); -lean_closure_set(x_103, 0, x_101); -lean_closure_set(x_103, 1, x_102); -lean_closure_set(x_103, 2, x_4); -lean_closure_set(x_103, 3, x_100); -x_104 = lean_box(0); -x_105 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_105, 0, x_104); -lean_ctor_set(x_105, 1, x_104); -lean_ctor_set(x_105, 2, x_103); -return x_105; -} -} -} -} -case 2: -{ -lean_object* x_106; -lean_dec(x_14); -x_106 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__6; -return x_106; -} -default: -{ -uint8_t x_107; -lean_inc(x_14); -x_107 = l_Lean_Elab_Term_isAntiquotSplicePat(x_14); -if (x_107 == 0) -{ -lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_108 = l_Lean_Syntax_getArgs(x_14); -x_109 = lean_unsigned_to_nat(0u); -x_110 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2(x_8, x_109, x_108); -x_111 = l_Lean_Syntax_getKind(x_14); -x_112 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_112, 0, x_111); -x_113 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_113, 0, x_110); -x_114 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__7; -x_115 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_115, 0, x_112); -lean_ctor_set(x_115, 1, x_113); -lean_ctor_set(x_115, 2, x_114); -return x_115; -} -else -{ -lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_116 = lean_unsigned_to_nat(0u); -x_117 = l_Lean_Syntax_getArg(x_14, x_116); -lean_dec(x_14); -x_118 = l_Lean_Syntax_getArg(x_117, x_13); -lean_dec(x_117); -x_119 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_120 = l_Lean_nameToExprAux___main___closed__4; -x_121 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___boxed), 7, 4); -lean_closure_set(x_121, 0, x_119); -lean_closure_set(x_121, 1, x_120); -lean_closure_set(x_121, 2, x_4); -lean_closure_set(x_121, 3, x_118); -x_122 = lean_box(0); -x_123 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_123, 0, x_122); -lean_ctor_set(x_123, 1, x_122); -lean_ctor_set(x_123, 2, x_121); -return x_123; -} -} -} -} -} -else -{ -lean_object* x_124; -lean_dec(x_3); -x_124 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__6; -return x_124; -} -} -else -{ -lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_125 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_126 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__6___boxed), 6, 3); -lean_closure_set(x_126, 0, x_125); -lean_closure_set(x_126, 1, x_4); -lean_closure_set(x_126, 2, x_3); -x_127 = lean_box(0); -x_128 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_128, 1, x_127); -lean_ctor_set(x_128, 2, x_126); -return x_128; -} -} -} -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__1(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__2(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__3(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__5(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__6(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__1___boxed(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__1(x_1); +x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -return x_9; -} -} -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__5(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___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* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___boxed(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo(x_1); +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(x_1); lean_dec(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6668,69 +6652,69 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_FileMap_ofString___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_hole___elambda__1___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__2; +x_2 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__3; +x_4 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3; x_5 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_5, 0, x_4); lean_ctor_set(x_5, 1, x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___boxed), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Unhygienic_MonadQuotation___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1; x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2; x_2 = l_Lean_Unhygienic_run___rarg(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; @@ -6773,7 +6757,7 @@ lean_dec(x_6); x_16 = lean_ctor_get(x_10, 2); lean_inc(x_16); lean_dec(x_10); -x_17 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__3; +x_17 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3; x_18 = l_List_replicate___rarg(x_1, x_17); x_19 = lean_apply_3(x_16, x_13, x_3, x_4); if (lean_obj_tag(x_19) == 0) @@ -6845,7 +6829,7 @@ lean_dec(x_6); x_33 = lean_ctor_get(x_10, 2); lean_inc(x_33); lean_dec(x_10); -x_34 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__3; +x_34 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3; x_35 = l_List_replicate___rarg(x_1, x_34); x_36 = lean_apply_3(x_33, x_31, x_3, x_4); if (lean_obj_tag(x_36) == 0) @@ -7061,17 +7045,17 @@ return x_81; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7089,9 +7073,9 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo(x_4); +x_6 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(x_4); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__1(x_5); +x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -7104,9 +7088,9 @@ x_9 = lean_ctor_get(x_1, 1); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_10 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo(x_8); +x_10 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(x_8); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__1(x_9); +x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -7115,7 +7099,7 @@ return x_12; } } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__1() { +lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7125,11 +7109,11 @@ x_3 = l_monadInhabited___rarg(x_1, x_2); return x_3; } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__2() { +lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__1; +x_1 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1; x_2 = l_Lean_stxInh; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7137,25 +7121,25 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__3() { +lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_HeadInfo_Inhabited; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__2; +x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__3; +x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3; x_3 = l_List_head_x21___rarg___closed__2; x_4 = lean_panic_fn(x_2, x_3); return x_4; @@ -7169,7 +7153,7 @@ return x_5; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7199,7 +7183,7 @@ goto _start; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7272,7 +7256,7 @@ goto _start; } } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7282,7 +7266,7 @@ x_3 = l_List_lengthAux___main___rarg(x_1, x_2); return x_3; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7304,9 +7288,9 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); -x_9 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5___closed__1; +x_9 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1; lean_inc(x_2); -x_10 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat(x_9, x_7, x_2, x_3); +x_10 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(x_9, x_7, x_2, x_3); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -7315,7 +7299,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); -x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5(x_8, x_2, x_12); +x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(x_8, x_2, x_12); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -7404,9 +7388,9 @@ x_28 = lean_ctor_get(x_1, 1); lean_inc(x_28); lean_inc(x_27); lean_dec(x_1); -x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5___closed__1; +x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1; lean_inc(x_2); -x_30 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat(x_29, x_27, x_2, x_3); +x_30 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(x_29, x_27, x_2, x_3); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; @@ -7415,7 +7399,7 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_30, 1); lean_inc(x_32); lean_dec(x_30); -x_33 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5(x_28, x_2, x_32); +x_33 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(x_28, x_2, x_32); if (lean_obj_tag(x_33) == 0) { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; @@ -7499,7 +7483,7 @@ return x_46; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7572,7 +7556,7 @@ goto _start; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__7(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7593,7 +7577,7 @@ x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__7(x_5); +x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -7609,7 +7593,7 @@ lean_dec(x_1); x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__7(x_9); +x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -7618,7 +7602,7 @@ return x_12; } } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1() { _start: { lean_object* x_1; @@ -7626,22 +7610,22 @@ x_1 = lean_mk_string("Syntax.getArg"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__2() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__1; +x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__3() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__1; +x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__2; +x_3 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7649,7 +7633,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__4() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4() { _start: { lean_object* x_1; @@ -7657,51 +7641,51 @@ x_1 = lean_mk_string("getArg"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__5() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5; -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; +x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__6() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7; -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; +x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__7() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__6; +x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__8() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__7; +x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7729,12 +7713,12 @@ x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); x_12 = lean_box(0); -x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__5; +x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5; lean_inc(x_10); x_14 = lean_name_mk_numeral(x_13, x_10); x_15 = lean_box(0); -x_16 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__3; -x_17 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__8; +x_16 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3; +x_17 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8; x_18 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_16); @@ -7748,9 +7732,9 @@ x_23 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_25 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_26 = lean_name_mk_numeral(x_25, x_10); -x_27 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_27 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_28 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_28, 0, x_12); lean_ctor_set(x_28, 1, x_27); @@ -7781,7 +7765,7 @@ x_44 = lean_array_push(x_43, x_42); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_34); lean_ctor_set(x_45, 1, x_44); -x_46 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8(x_8, x_2, x_11); +x_46 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(x_8, x_2, x_11); x_47 = !lean_is_exclusive(x_46); if (x_47 == 0) { @@ -7823,12 +7807,12 @@ x_56 = lean_ctor_get(x_54, 1); lean_inc(x_56); lean_dec(x_54); x_57 = lean_box(0); -x_58 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__5; +x_58 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5; lean_inc(x_55); x_59 = lean_name_mk_numeral(x_58, x_55); x_60 = lean_box(0); -x_61 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__3; -x_62 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__8; +x_61 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3; +x_62 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8; x_63 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_63, 0, x_57); lean_ctor_set(x_63, 1, x_61); @@ -7842,9 +7826,9 @@ x_68 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_70 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_71 = lean_name_mk_numeral(x_70, x_55); -x_72 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_72 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_73 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_73, 0, x_57); lean_ctor_set(x_73, 1, x_72); @@ -7875,7 +7859,7 @@ x_89 = lean_array_push(x_88, x_87); x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_79); lean_ctor_set(x_90, 1, x_89); -x_91 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8(x_53, x_2, x_56); +x_91 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(x_53, x_2, x_56); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_ctor_get(x_91, 1); @@ -7903,7 +7887,7 @@ return x_96; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7976,7 +7960,7 @@ goto _start; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8001,7 +7985,7 @@ x_9 = lean_ctor_get(x_2, 1); x_10 = lean_unsigned_to_nat(0u); x_11 = l_List_lengthAux___main___rarg(x_1, x_10); lean_inc(x_3); -x_12 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat(x_11, x_8, x_3, x_4); +x_12 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(x_11, x_8, x_3, x_4); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -8010,7 +7994,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); -x_15 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__10(x_1, x_9, x_3, x_14); +x_15 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(x_1, x_9, x_3, x_14); if (lean_obj_tag(x_15) == 0) { uint8_t x_16; @@ -8102,7 +8086,7 @@ lean_dec(x_2); x_31 = lean_unsigned_to_nat(0u); x_32 = l_List_lengthAux___main___rarg(x_1, x_31); lean_inc(x_3); -x_33 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat(x_32, x_29, x_3, x_4); +x_33 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(x_32, x_29, x_3, x_4); if (lean_obj_tag(x_33) == 0) { lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -8111,7 +8095,7 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); -x_36 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__10(x_1, x_30, x_3, x_35); +x_36 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(x_1, x_30, x_3, x_35); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; @@ -8195,7 +8179,7 @@ return x_49; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8268,7 +8252,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1() { _start: { lean_object* x_1; @@ -8276,27 +8260,27 @@ x_1 = lean_mk_string("non-exhaustive 'match_syntax'"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4() { _start: { lean_object* x_1; @@ -8304,22 +8288,22 @@ x_1 = lean_mk_string("Syntax.isOfKind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__5; +x_3 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8327,7 +8311,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7() { _start: { lean_object* x_1; @@ -8335,51 +8319,51 @@ x_1 = lean_mk_string("isOfKind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__7; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__9() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7; -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__7; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__10() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__9; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__10; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__12() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -8391,7 +8375,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__13() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13() { _start: { lean_object* x_1; @@ -8399,19 +8383,19 @@ x_1 = lean_mk_string("then"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__13; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__15() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15() { _start: { lean_object* x_1; @@ -8419,19 +8403,19 @@ x_1 = lean_mk_string("else"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__15; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__17() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -8440,27 +8424,27 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__18() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__17; -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__12; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__18; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; x_2 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__20() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20() { _start: { lean_object* x_1; @@ -8468,19 +8452,19 @@ x_1 = lean_mk_string("&&"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__21() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__20; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__22() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22() { _start: { lean_object* x_1; @@ -8488,22 +8472,22 @@ x_1 = lean_mk_string("Array.size"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__23() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__22; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__24() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__22; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__23; +x_3 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8511,7 +8495,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__25() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25() { _start: { lean_object* x_1; @@ -8519,17 +8503,17 @@ x_1 = lean_mk_string("Array"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__26() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__25; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__27() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27() { _start: { lean_object* x_1; @@ -8537,75 +8521,75 @@ x_1 = lean_mk_string("size"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__26; -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__27; +x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__29() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__30() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__29; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__31() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7; -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__32() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__31; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__33() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__32; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__34() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34() { _start: { lean_object* x_1; @@ -8613,19 +8597,19 @@ x_1 = lean_mk_string("=="); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__35() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__34; +x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8633,7 +8617,7 @@ if (lean_obj_tag(x_2) == 0) if (lean_obj_tag(x_3) == 0) { lean_object* x_6; lean_object* x_7; -x_6 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__3; +x_6 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3; x_7 = l_Lean_Elab_Term_throwError___rarg(x_1, x_6, x_4, x_5); lean_dec(x_4); return x_7; @@ -8676,7 +8660,7 @@ if (lean_obj_tag(x_3) == 0) { lean_object* x_15; lean_object* x_16; lean_dec(x_2); -x_15 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__3; +x_15 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3; x_16 = l_Lean_Elab_Term_throwError___rarg(x_1, x_15, x_4, x_5); lean_dec(x_4); return x_16; @@ -8689,12 +8673,12 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_inc(x_3); -x_19 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__1(x_3); +x_19 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(x_3); x_20 = l_List_zip___rarg___closed__1; x_21 = l_List_zipWith___main___rarg(x_20, x_19, x_3); -x_22 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2(x_21); +x_22 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2(x_21); x_23 = l_List_tail_x21___rarg(x_21); -x_24 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__3(x_22, x_23); +x_24 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3(x_22, x_23); lean_dec(x_23); lean_dec(x_22); x_25 = lean_ctor_get(x_24, 0); @@ -8707,9 +8691,9 @@ if (lean_obj_tag(x_26) == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_box(0); lean_inc(x_21); -x_28 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__4(x_25, x_21, x_27); +x_28 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4(x_25, x_21, x_27); lean_inc(x_4); -x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5(x_28, x_4, x_5); +x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(x_28, x_4, x_5); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; @@ -8763,7 +8747,7 @@ lean_ctor_set(x_46, 6, x_43); lean_ctor_set(x_46, 7, x_44); lean_ctor_set(x_46, 8, x_34); lean_ctor_set_uint8(x_46, sizeof(void*)*9, x_45); -x_47 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_32, x_30, x_46, x_31); +x_47 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_32, x_30, x_46, x_31); if (lean_obj_tag(x_47) == 0) { lean_object* x_48; @@ -8796,9 +8780,9 @@ if (x_52 == 0) lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; x_53 = lean_ctor_get(x_51, 0); x_54 = lean_box(0); -x_55 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_55 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_56 = lean_name_mk_numeral(x_55, x_53); -x_57 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_57 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_58 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_58, 0, x_54); lean_ctor_set(x_58, 1, x_57); @@ -8809,16 +8793,16 @@ x_60 = lean_array_push(x_59, x_58); x_61 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; x_62 = lean_array_push(x_60, x_61); x_63 = lean_array_push(x_62, x_61); -x_64 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_64 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_65 = lean_array_push(x_63, x_64); x_66 = lean_array_push(x_65, x_17); x_67 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); -x_69 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_69 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_70 = lean_array_push(x_69, x_68); -x_71 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_71 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_72 = lean_array_push(x_70, x_71); x_73 = lean_array_push(x_72, x_49); x_74 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -8837,9 +8821,9 @@ lean_inc(x_77); lean_inc(x_76); lean_dec(x_51); x_78 = lean_box(0); -x_79 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_79 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_80 = lean_name_mk_numeral(x_79, x_76); -x_81 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_81 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_82 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_82, 0, x_78); lean_ctor_set(x_82, 1, x_81); @@ -8850,16 +8834,16 @@ x_84 = lean_array_push(x_83, x_82); x_85 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; x_86 = lean_array_push(x_84, x_85); x_87 = lean_array_push(x_86, x_85); -x_88 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_88 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_89 = lean_array_push(x_87, x_88); x_90 = lean_array_push(x_89, x_17); x_91 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); -x_93 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_93 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_94 = lean_array_push(x_93, x_92); -x_95 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_95 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_96 = lean_array_push(x_94, x_95); x_97 = lean_array_push(x_96, x_49); x_98 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -8883,9 +8867,9 @@ lean_dec(x_47); x_103 = lean_ctor_get(x_48, 0); lean_inc(x_103); lean_dec(x_48); -x_104 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__6(x_25, x_21, x_27); +x_104 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(x_25, x_21, x_27); lean_dec(x_25); -x_105 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__7(x_104); +x_105 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_104); x_106 = !lean_is_exclusive(x_102); if (x_106 == 0) { @@ -8904,7 +8888,7 @@ lean_ctor_set(x_109, 6, x_43); lean_ctor_set(x_109, 7, x_44); lean_ctor_set(x_109, 8, x_107); lean_ctor_set_uint8(x_109, sizeof(void*)*9, x_45); -x_110 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_2, x_105, x_109, x_102); +x_110 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_105, x_109, x_102); if (lean_obj_tag(x_110) == 0) { lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_144; @@ -8920,11 +8904,11 @@ x_115 = lean_ctor_get(x_113, 1); lean_inc(x_115); lean_dec(x_113); x_116 = lean_box(0); -x_117 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8; +x_117 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; lean_inc(x_114); x_118 = lean_name_mk_numeral(x_117, x_114); -x_119 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6; -x_120 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11; +x_119 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; +x_120 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; x_121 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_121, 0, x_116); lean_ctor_set(x_121, 1, x_119); @@ -8938,9 +8922,9 @@ x_126 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_127 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_127, 0, x_126); lean_ctor_set(x_127, 1, x_125); -x_128 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_128 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_129 = lean_name_mk_numeral(x_128, x_114); -x_130 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_130 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_131 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_131, 0, x_116); lean_ctor_set(x_131, 1, x_130); @@ -8980,28 +8964,28 @@ x_148 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_149 = lean_array_push(x_148, x_147); x_150 = lean_array_push(x_149, x_124); x_151 = lean_array_push(x_150, x_124); -x_152 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_152 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_153 = lean_array_push(x_151, x_152); x_154 = lean_array_push(x_153, x_17); x_155 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_156 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_156, 0, x_155); lean_ctor_set(x_156, 1, x_154); -x_157 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; +x_157 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; x_158 = lean_array_push(x_157, x_142); -x_159 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; +x_159 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; x_160 = lean_array_push(x_158, x_159); x_161 = lean_array_push(x_160, x_101); -x_162 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; +x_162 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; x_163 = lean_array_push(x_161, x_162); x_164 = lean_array_push(x_163, x_111); x_165 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_166 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_166, 0, x_165); lean_ctor_set(x_166, 1, x_164); -x_167 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_167 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_168 = lean_array_push(x_167, x_156); -x_169 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_169 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_170 = lean_array_push(x_168, x_169); x_171 = lean_array_push(x_170, x_166); x_172 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9029,28 +9013,28 @@ x_178 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_179 = lean_array_push(x_178, x_177); x_180 = lean_array_push(x_179, x_124); x_181 = lean_array_push(x_180, x_124); -x_182 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_182 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_183 = lean_array_push(x_181, x_182); x_184 = lean_array_push(x_183, x_17); x_185 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_186 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_186, 0, x_185); lean_ctor_set(x_186, 1, x_184); -x_187 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; +x_187 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; x_188 = lean_array_push(x_187, x_142); -x_189 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; +x_189 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; x_190 = lean_array_push(x_188, x_189); x_191 = lean_array_push(x_190, x_101); -x_192 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; +x_192 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; x_193 = lean_array_push(x_191, x_192); x_194 = lean_array_push(x_193, x_111); x_195 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_196 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_196, 0, x_195); lean_ctor_set(x_196, 1, x_194); -x_197 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_197 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_198 = lean_array_push(x_197, x_186); -x_199 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_199 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_200 = lean_array_push(x_198, x_199); x_201 = lean_array_push(x_200, x_196); x_202 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9125,7 +9109,7 @@ lean_ctor_set(x_217, 6, x_43); lean_ctor_set(x_217, 7, x_44); lean_ctor_set(x_217, 8, x_214); lean_ctor_set_uint8(x_217, sizeof(void*)*9, x_45); -x_218 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_2, x_105, x_217, x_216); +x_218 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_105, x_217, x_216); if (lean_obj_tag(x_218) == 0) { lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; @@ -9141,11 +9125,11 @@ x_223 = lean_ctor_get(x_221, 1); lean_inc(x_223); lean_dec(x_221); x_224 = lean_box(0); -x_225 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8; +x_225 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; lean_inc(x_222); x_226 = lean_name_mk_numeral(x_225, x_222); -x_227 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6; -x_228 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11; +x_227 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; +x_228 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; x_229 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_229, 0, x_224); lean_ctor_set(x_229, 1, x_227); @@ -9159,9 +9143,9 @@ x_234 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_235 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_235, 0, x_234); lean_ctor_set(x_235, 1, x_233); -x_236 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_236 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_237 = lean_name_mk_numeral(x_236, x_222); -x_238 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_238 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_239 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_239, 0, x_224); lean_ctor_set(x_239, 1, x_238); @@ -9208,28 +9192,28 @@ x_257 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_258 = lean_array_push(x_257, x_256); x_259 = lean_array_push(x_258, x_232); x_260 = lean_array_push(x_259, x_232); -x_261 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_261 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_262 = lean_array_push(x_260, x_261); x_263 = lean_array_push(x_262, x_17); x_264 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_265 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_265, 0, x_264); lean_ctor_set(x_265, 1, x_263); -x_266 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; +x_266 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; x_267 = lean_array_push(x_266, x_250); -x_268 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; +x_268 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; x_269 = lean_array_push(x_267, x_268); x_270 = lean_array_push(x_269, x_101); -x_271 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; +x_271 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; x_272 = lean_array_push(x_270, x_271); x_273 = lean_array_push(x_272, x_219); x_274 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_275 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_275, 0, x_274); lean_ctor_set(x_275, 1, x_273); -x_276 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_276 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_277 = lean_array_push(x_276, x_265); -x_278 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_278 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_279 = lean_array_push(x_277, x_278); x_280 = lean_array_push(x_279, x_275); x_281 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9373,7 +9357,7 @@ lean_ctor_set(x_310, 6, x_307); lean_ctor_set(x_310, 7, x_308); lean_ctor_set(x_310, 8, x_297); lean_ctor_set_uint8(x_310, sizeof(void*)*9, x_309); -x_311 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_32, x_30, x_310, x_300); +x_311 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_32, x_30, x_310, x_300); if (lean_obj_tag(x_311) == 0) { lean_object* x_312; @@ -9413,9 +9397,9 @@ if (lean_is_exclusive(x_315)) { x_318 = lean_box(0); } x_319 = lean_box(0); -x_320 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_320 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_321 = lean_name_mk_numeral(x_320, x_316); -x_322 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_322 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_323 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_323, 0, x_319); lean_ctor_set(x_323, 1, x_322); @@ -9426,16 +9410,16 @@ x_325 = lean_array_push(x_324, x_323); x_326 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; x_327 = lean_array_push(x_325, x_326); x_328 = lean_array_push(x_327, x_326); -x_329 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_329 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_330 = lean_array_push(x_328, x_329); x_331 = lean_array_push(x_330, x_17); x_332 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_333 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_333, 0, x_332); lean_ctor_set(x_333, 1, x_331); -x_334 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_334 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_335 = lean_array_push(x_334, x_333); -x_336 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_336 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_337 = lean_array_push(x_335, x_336); x_338 = lean_array_push(x_337, x_313); x_339 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9462,9 +9446,9 @@ lean_dec(x_311); x_344 = lean_ctor_get(x_312, 0); lean_inc(x_344); lean_dec(x_312); -x_345 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__6(x_25, x_21, x_27); +x_345 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(x_25, x_21, x_27); lean_dec(x_25); -x_346 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__7(x_345); +x_346 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_345); x_347 = lean_ctor_get(x_343, 0); lean_inc(x_347); x_348 = lean_ctor_get(x_343, 1); @@ -9512,7 +9496,7 @@ lean_ctor_set(x_356, 6, x_307); lean_ctor_set(x_356, 7, x_308); lean_ctor_set(x_356, 8, x_352); lean_ctor_set_uint8(x_356, sizeof(void*)*9, x_309); -x_357 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_2, x_346, x_356, x_355); +x_357 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_346, x_356, x_355); if (lean_obj_tag(x_357) == 0) { lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; @@ -9528,11 +9512,11 @@ x_362 = lean_ctor_get(x_360, 1); lean_inc(x_362); lean_dec(x_360); x_363 = lean_box(0); -x_364 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8; +x_364 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; lean_inc(x_361); x_365 = lean_name_mk_numeral(x_364, x_361); -x_366 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6; -x_367 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11; +x_366 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; +x_367 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; x_368 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_368, 0, x_363); lean_ctor_set(x_368, 1, x_366); @@ -9546,9 +9530,9 @@ x_373 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_374 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_374, 0, x_373); lean_ctor_set(x_374, 1, x_372); -x_375 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_375 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_376 = lean_name_mk_numeral(x_375, x_361); -x_377 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_377 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_378 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_378, 0, x_363); lean_ctor_set(x_378, 1, x_377); @@ -9595,28 +9579,28 @@ x_396 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_397 = lean_array_push(x_396, x_395); x_398 = lean_array_push(x_397, x_371); x_399 = lean_array_push(x_398, x_371); -x_400 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_400 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_401 = lean_array_push(x_399, x_400); x_402 = lean_array_push(x_401, x_17); x_403 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_404 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_404, 0, x_403); lean_ctor_set(x_404, 1, x_402); -x_405 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; +x_405 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; x_406 = lean_array_push(x_405, x_389); -x_407 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; +x_407 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; x_408 = lean_array_push(x_406, x_407); x_409 = lean_array_push(x_408, x_342); -x_410 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; +x_410 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; x_411 = lean_array_push(x_409, x_410); x_412 = lean_array_push(x_411, x_358); x_413 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_414 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_414, 0, x_413); lean_ctor_set(x_414, 1, x_412); -x_415 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_415 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_416 = lean_array_push(x_415, x_404); -x_417 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_417 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_418 = lean_array_push(x_416, x_417); x_419 = lean_array_push(x_418, x_414); x_420 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9740,7 +9724,7 @@ x_436 = lean_array_get_size(x_435); lean_dec(x_435); lean_inc(x_436); x_437 = l_List_range(x_436); -x_438 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8(x_437, x_4, x_5); +x_438 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(x_437, x_4, x_5); x_439 = lean_ctor_get(x_438, 0); lean_inc(x_439); x_440 = lean_ctor_get(x_438, 1); @@ -9748,9 +9732,9 @@ lean_inc(x_440); lean_dec(x_438); x_441 = lean_box(0); lean_inc(x_21); -x_442 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__9(x_25, x_21, x_441); +x_442 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9(x_25, x_21, x_441); lean_inc(x_4); -x_443 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__10(x_439, x_442, x_4, x_440); +x_443 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(x_439, x_442, x_4, x_440); if (lean_obj_tag(x_443) == 0) { lean_object* x_444; lean_object* x_445; lean_object* x_446; uint8_t x_447; @@ -9804,7 +9788,7 @@ lean_ctor_set(x_460, 6, x_457); lean_ctor_set(x_460, 7, x_458); lean_ctor_set(x_460, 8, x_448); lean_ctor_set_uint8(x_460, sizeof(void*)*9, x_459); -x_461 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_446, x_444, x_460, x_445); +x_461 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_446, x_444, x_460, x_445); if (lean_obj_tag(x_461) == 0) { lean_object* x_462; @@ -9838,9 +9822,9 @@ if (x_466 == 0) lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; x_467 = lean_ctor_get(x_465, 0); x_468 = lean_box(0); -x_469 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_469 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_470 = lean_name_mk_numeral(x_469, x_467); -x_471 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_471 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_472 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_472, 0, x_468); lean_ctor_set(x_472, 1, x_471); @@ -9851,16 +9835,16 @@ x_474 = lean_array_push(x_473, x_472); x_475 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; x_476 = lean_array_push(x_474, x_475); x_477 = lean_array_push(x_476, x_475); -x_478 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_478 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_479 = lean_array_push(x_477, x_478); x_480 = lean_array_push(x_479, x_17); x_481 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_482 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_482, 0, x_481); lean_ctor_set(x_482, 1, x_480); -x_483 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_483 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_484 = lean_array_push(x_483, x_482); -x_485 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_485 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_486 = lean_array_push(x_484, x_485); x_487 = lean_array_push(x_486, x_463); x_488 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9879,9 +9863,9 @@ lean_inc(x_491); lean_inc(x_490); lean_dec(x_465); x_492 = lean_box(0); -x_493 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_493 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_494 = lean_name_mk_numeral(x_493, x_490); -x_495 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_495 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_496 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_496, 0, x_492); lean_ctor_set(x_496, 1, x_495); @@ -9892,16 +9876,16 @@ x_498 = lean_array_push(x_497, x_496); x_499 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; x_500 = lean_array_push(x_498, x_499); x_501 = lean_array_push(x_500, x_499); -x_502 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_502 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_503 = lean_array_push(x_501, x_502); x_504 = lean_array_push(x_503, x_17); x_505 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_506 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_506, 0, x_505); lean_ctor_set(x_506, 1, x_504); -x_507 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_507 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_508 = lean_array_push(x_507, x_506); -x_509 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_509 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_510 = lean_array_push(x_508, x_509); x_511 = lean_array_push(x_510, x_463); x_512 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9925,9 +9909,9 @@ lean_dec(x_461); x_517 = lean_ctor_get(x_462, 0); lean_inc(x_517); lean_dec(x_462); -x_518 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__11(x_25, x_21, x_441); +x_518 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(x_25, x_21, x_441); lean_dec(x_25); -x_519 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__7(x_518); +x_519 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_518); x_520 = !lean_is_exclusive(x_516); if (x_520 == 0) { @@ -9946,7 +9930,7 @@ lean_ctor_set(x_523, 6, x_457); lean_ctor_set(x_523, 7, x_458); lean_ctor_set(x_523, 8, x_521); lean_ctor_set_uint8(x_523, sizeof(void*)*9, x_459); -x_524 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_2, x_519, x_523, x_516); +x_524 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_519, x_523, x_516); if (lean_obj_tag(x_524) == 0) { lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; uint8_t x_610; @@ -9962,11 +9946,11 @@ x_529 = lean_ctor_get(x_527, 1); lean_inc(x_529); lean_dec(x_527); x_530 = lean_box(0); -x_531 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8; +x_531 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; lean_inc(x_528); x_532 = lean_name_mk_numeral(x_531, x_528); -x_533 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6; -x_534 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11; +x_533 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; +x_534 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; x_535 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_535, 0, x_530); lean_ctor_set(x_535, 1, x_533); @@ -9980,10 +9964,10 @@ x_540 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_541 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_541, 0, x_540); lean_ctor_set(x_541, 1, x_539); -x_542 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_542 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; lean_inc(x_528); x_543 = lean_name_mk_numeral(x_542, x_528); -x_544 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_544 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_545 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_545, 0, x_530); lean_ctor_set(x_545, 1, x_544); @@ -10007,11 +9991,11 @@ x_555 = lean_array_push(x_554, x_553); x_556 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_556, 0, x_551); lean_ctor_set(x_556, 1, x_555); -x_557 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28; +x_557 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28; lean_inc(x_528); x_558 = lean_name_mk_numeral(x_557, x_528); -x_559 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__24; -x_560 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__30; +x_559 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_560 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30; x_561 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_561, 0, x_530); lean_ctor_set(x_561, 1, x_559); @@ -10022,10 +10006,10 @@ x_563 = lean_array_push(x_562, x_538); x_564 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_564, 0, x_540); lean_ctor_set(x_564, 1, x_563); -x_565 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5; +x_565 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; x_566 = lean_name_mk_numeral(x_565, x_528); -x_567 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3; -x_568 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__33; +x_567 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; +x_568 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33; x_569 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_569, 0, x_530); lean_ctor_set(x_569, 1, x_567); @@ -10047,9 +10031,9 @@ x_578 = l_Lean_nullKind___closed__2; x_579 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_579, 0, x_578); lean_ctor_set(x_579, 1, x_577); -x_580 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; +x_580 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; x_581 = lean_array_push(x_580, x_579); -x_582 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_582 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_583 = lean_array_push(x_581, x_582); x_584 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_585 = lean_alloc_ctor(1, 2, 0); @@ -10071,7 +10055,7 @@ lean_ctor_set(x_595, 0, x_594); lean_ctor_set(x_595, 1, x_593); x_596 = l_Lean_Parser_declareBuiltinParser___closed__8; x_597 = lean_array_push(x_596, x_588); -x_598 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__35; +x_598 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35; x_599 = lean_array_push(x_597, x_598); x_600 = lean_array_push(x_599, x_595); x_601 = l_Lean_Parser_Term_beq___elambda__1___closed__2; @@ -10079,7 +10063,7 @@ x_602 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_602, 0, x_601); lean_ctor_set(x_602, 1, x_600); x_603 = lean_array_push(x_596, x_556); -x_604 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__21; +x_604 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21; x_605 = lean_array_push(x_603, x_604); x_606 = lean_array_push(x_605, x_602); x_607 = l_Lean_Parser_Term_band___elambda__1___closed__2; @@ -10103,28 +10087,28 @@ x_614 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_615 = lean_array_push(x_614, x_613); x_616 = lean_array_push(x_615, x_538); x_617 = lean_array_push(x_616, x_538); -x_618 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_618 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_619 = lean_array_push(x_617, x_618); x_620 = lean_array_push(x_619, x_17); x_621 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_622 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_622, 0, x_621); lean_ctor_set(x_622, 1, x_620); -x_623 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; +x_623 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; x_624 = lean_array_push(x_623, x_608); -x_625 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; +x_625 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; x_626 = lean_array_push(x_624, x_625); x_627 = lean_array_push(x_626, x_515); -x_628 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; +x_628 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; x_629 = lean_array_push(x_627, x_628); x_630 = lean_array_push(x_629, x_525); x_631 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_632 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_632, 0, x_631); lean_ctor_set(x_632, 1, x_630); -x_633 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_633 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_634 = lean_array_push(x_633, x_622); -x_635 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_635 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_636 = lean_array_push(x_634, x_635); x_637 = lean_array_push(x_636, x_632); x_638 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -10152,28 +10136,28 @@ x_644 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_645 = lean_array_push(x_644, x_643); x_646 = lean_array_push(x_645, x_538); x_647 = lean_array_push(x_646, x_538); -x_648 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_648 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_649 = lean_array_push(x_647, x_648); x_650 = lean_array_push(x_649, x_17); x_651 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_652 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_652, 0, x_651); lean_ctor_set(x_652, 1, x_650); -x_653 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; +x_653 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; x_654 = lean_array_push(x_653, x_608); -x_655 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; +x_655 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; x_656 = lean_array_push(x_654, x_655); x_657 = lean_array_push(x_656, x_515); -x_658 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; +x_658 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; x_659 = lean_array_push(x_657, x_658); x_660 = lean_array_push(x_659, x_525); x_661 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_662 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_662, 0, x_661); lean_ctor_set(x_662, 1, x_660); -x_663 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_663 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_664 = lean_array_push(x_663, x_652); -x_665 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_665 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_666 = lean_array_push(x_664, x_665); x_667 = lean_array_push(x_666, x_662); x_668 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -10249,7 +10233,7 @@ lean_ctor_set(x_683, 6, x_457); lean_ctor_set(x_683, 7, x_458); lean_ctor_set(x_683, 8, x_680); lean_ctor_set_uint8(x_683, sizeof(void*)*9, x_459); -x_684 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_2, x_519, x_683, x_682); +x_684 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_519, x_683, x_682); if (lean_obj_tag(x_684) == 0) { lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_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; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; @@ -10265,11 +10249,11 @@ x_689 = lean_ctor_get(x_687, 1); lean_inc(x_689); lean_dec(x_687); x_690 = lean_box(0); -x_691 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8; +x_691 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; lean_inc(x_688); x_692 = lean_name_mk_numeral(x_691, x_688); -x_693 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6; -x_694 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11; +x_693 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; +x_694 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; x_695 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_695, 0, x_690); lean_ctor_set(x_695, 1, x_693); @@ -10283,10 +10267,10 @@ x_700 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_701 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_701, 0, x_700); lean_ctor_set(x_701, 1, x_699); -x_702 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_702 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; lean_inc(x_688); x_703 = lean_name_mk_numeral(x_702, x_688); -x_704 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_704 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_705 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_705, 0, x_690); lean_ctor_set(x_705, 1, x_704); @@ -10310,11 +10294,11 @@ x_715 = lean_array_push(x_714, x_713); x_716 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_716, 0, x_711); lean_ctor_set(x_716, 1, x_715); -x_717 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28; +x_717 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28; lean_inc(x_688); x_718 = lean_name_mk_numeral(x_717, x_688); -x_719 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__24; -x_720 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__30; +x_719 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_720 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30; x_721 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_721, 0, x_690); lean_ctor_set(x_721, 1, x_719); @@ -10325,10 +10309,10 @@ x_723 = lean_array_push(x_722, x_698); x_724 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_724, 0, x_700); lean_ctor_set(x_724, 1, x_723); -x_725 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5; +x_725 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; x_726 = lean_name_mk_numeral(x_725, x_688); -x_727 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3; -x_728 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__33; +x_727 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; +x_728 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33; x_729 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_729, 0, x_690); lean_ctor_set(x_729, 1, x_727); @@ -10350,9 +10334,9 @@ x_738 = l_Lean_nullKind___closed__2; x_739 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_739, 0, x_738); lean_ctor_set(x_739, 1, x_737); -x_740 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; +x_740 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; x_741 = lean_array_push(x_740, x_739); -x_742 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_742 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_743 = lean_array_push(x_741, x_742); x_744 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_745 = lean_alloc_ctor(1, 2, 0); @@ -10374,7 +10358,7 @@ lean_ctor_set(x_755, 0, x_754); lean_ctor_set(x_755, 1, x_753); x_756 = l_Lean_Parser_declareBuiltinParser___closed__8; x_757 = lean_array_push(x_756, x_748); -x_758 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__35; +x_758 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35; x_759 = lean_array_push(x_757, x_758); x_760 = lean_array_push(x_759, x_755); x_761 = l_Lean_Parser_Term_beq___elambda__1___closed__2; @@ -10382,7 +10366,7 @@ x_762 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_762, 0, x_761); lean_ctor_set(x_762, 1, x_760); x_763 = lean_array_push(x_756, x_716); -x_764 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__21; +x_764 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21; x_765 = lean_array_push(x_763, x_764); x_766 = lean_array_push(x_765, x_762); x_767 = l_Lean_Parser_Term_band___elambda__1___closed__2; @@ -10413,28 +10397,28 @@ x_775 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_776 = lean_array_push(x_775, x_774); x_777 = lean_array_push(x_776, x_698); x_778 = lean_array_push(x_777, x_698); -x_779 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_779 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_780 = lean_array_push(x_778, x_779); x_781 = lean_array_push(x_780, x_17); x_782 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_783 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_783, 0, x_782); lean_ctor_set(x_783, 1, x_781); -x_784 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; +x_784 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; x_785 = lean_array_push(x_784, x_768); -x_786 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; +x_786 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; x_787 = lean_array_push(x_785, x_786); x_788 = lean_array_push(x_787, x_515); -x_789 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; +x_789 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; x_790 = lean_array_push(x_788, x_789); x_791 = lean_array_push(x_790, x_685); x_792 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_793 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_793, 0, x_792); lean_ctor_set(x_793, 1, x_791); -x_794 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_794 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_795 = lean_array_push(x_794, x_783); -x_796 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_796 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_797 = lean_array_push(x_795, x_796); x_798 = lean_array_push(x_797, x_793); x_799 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -10580,7 +10564,7 @@ lean_ctor_set(x_828, 6, x_825); lean_ctor_set(x_828, 7, x_826); lean_ctor_set(x_828, 8, x_815); lean_ctor_set_uint8(x_828, sizeof(void*)*9, x_827); -x_829 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_446, x_444, x_828, x_818); +x_829 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_446, x_444, x_828, x_818); if (lean_obj_tag(x_829) == 0) { lean_object* x_830; @@ -10621,9 +10605,9 @@ if (lean_is_exclusive(x_833)) { x_836 = lean_box(0); } x_837 = lean_box(0); -x_838 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_838 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; x_839 = lean_name_mk_numeral(x_838, x_834); -x_840 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_840 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_841 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_841, 0, x_837); lean_ctor_set(x_841, 1, x_840); @@ -10634,16 +10618,16 @@ x_843 = lean_array_push(x_842, x_841); x_844 = l___private_Init_Lean_Elab_Term_5__expandCDot___closed__5; x_845 = lean_array_push(x_843, x_844); x_846 = lean_array_push(x_845, x_844); -x_847 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_847 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_848 = lean_array_push(x_846, x_847); x_849 = lean_array_push(x_848, x_17); x_850 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_851 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_851, 0, x_850); lean_ctor_set(x_851, 1, x_849); -x_852 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_852 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_853 = lean_array_push(x_852, x_851); -x_854 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_854 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_855 = lean_array_push(x_853, x_854); x_856 = lean_array_push(x_855, x_831); x_857 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -10670,9 +10654,9 @@ lean_dec(x_829); x_862 = lean_ctor_get(x_830, 0); lean_inc(x_862); lean_dec(x_830); -x_863 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__11(x_25, x_21, x_441); +x_863 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(x_25, x_21, x_441); lean_dec(x_25); -x_864 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__7(x_863); +x_864 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_863); x_865 = lean_ctor_get(x_861, 0); lean_inc(x_865); x_866 = lean_ctor_get(x_861, 1); @@ -10720,7 +10704,7 @@ lean_ctor_set(x_874, 6, x_825); lean_ctor_set(x_874, 7, x_826); lean_ctor_set(x_874, 8, x_870); lean_ctor_set_uint8(x_874, sizeof(void*)*9, x_827); -x_875 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_2, x_864, x_874, x_873); +x_875 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_864, x_874, x_873); if (lean_obj_tag(x_875) == 0) { lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; @@ -10736,11 +10720,11 @@ x_880 = lean_ctor_get(x_878, 1); lean_inc(x_880); lean_dec(x_878); x_881 = lean_box(0); -x_882 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8; +x_882 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; lean_inc(x_879); x_883 = lean_name_mk_numeral(x_882, x_879); -x_884 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6; -x_885 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11; +x_884 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; +x_885 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; x_886 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_886, 0, x_881); lean_ctor_set(x_886, 1, x_884); @@ -10754,10 +10738,10 @@ x_891 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_892 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_892, 0, x_891); lean_ctor_set(x_892, 1, x_890); -x_893 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7; +x_893 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7; lean_inc(x_879); x_894 = lean_name_mk_numeral(x_893, x_879); -x_895 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6; +x_895 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6; x_896 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_896, 0, x_881); lean_ctor_set(x_896, 1, x_895); @@ -10781,11 +10765,11 @@ x_906 = lean_array_push(x_905, x_904); x_907 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_907, 0, x_902); lean_ctor_set(x_907, 1, x_906); -x_908 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28; +x_908 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28; lean_inc(x_879); x_909 = lean_name_mk_numeral(x_908, x_879); -x_910 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__24; -x_911 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__30; +x_910 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_911 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30; x_912 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_912, 0, x_881); lean_ctor_set(x_912, 1, x_910); @@ -10796,10 +10780,10 @@ x_914 = lean_array_push(x_913, x_889); x_915 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_915, 0, x_891); lean_ctor_set(x_915, 1, x_914); -x_916 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5; +x_916 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; x_917 = lean_name_mk_numeral(x_916, x_879); -x_918 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3; -x_919 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__33; +x_918 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; +x_919 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33; x_920 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_920, 0, x_881); lean_ctor_set(x_920, 1, x_918); @@ -10821,9 +10805,9 @@ x_929 = l_Lean_nullKind___closed__2; x_930 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_930, 0, x_929); lean_ctor_set(x_930, 1, x_928); -x_931 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64; +x_931 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; x_932 = lean_array_push(x_931, x_930); -x_933 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_933 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_934 = lean_array_push(x_932, x_933); x_935 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_936 = lean_alloc_ctor(1, 2, 0); @@ -10845,7 +10829,7 @@ lean_ctor_set(x_946, 0, x_945); lean_ctor_set(x_946, 1, x_944); x_947 = l_Lean_Parser_declareBuiltinParser___closed__8; x_948 = lean_array_push(x_947, x_939); -x_949 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__35; +x_949 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35; x_950 = lean_array_push(x_948, x_949); x_951 = lean_array_push(x_950, x_946); x_952 = l_Lean_Parser_Term_beq___elambda__1___closed__2; @@ -10853,7 +10837,7 @@ x_953 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_953, 0, x_952); lean_ctor_set(x_953, 1, x_951); x_954 = lean_array_push(x_947, x_907); -x_955 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__21; +x_955 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21; x_956 = lean_array_push(x_954, x_955); x_957 = lean_array_push(x_956, x_953); x_958 = l_Lean_Parser_Term_band___elambda__1___closed__2; @@ -10884,28 +10868,28 @@ x_966 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_967 = lean_array_push(x_966, x_965); x_968 = lean_array_push(x_967, x_889); x_969 = lean_array_push(x_968, x_889); -x_970 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_970 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_971 = lean_array_push(x_969, x_970); x_972 = lean_array_push(x_971, x_17); x_973 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_974 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_974, 0, x_973); lean_ctor_set(x_974, 1, x_972); -x_975 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19; +x_975 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; x_976 = lean_array_push(x_975, x_959); -x_977 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14; +x_977 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; x_978 = lean_array_push(x_976, x_977); x_979 = lean_array_push(x_978, x_860); -x_980 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16; +x_980 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; x_981 = lean_array_push(x_979, x_980); x_982 = lean_array_push(x_981, x_876); x_983 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_984 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_984, 0, x_983); lean_ctor_set(x_984, 1, x_982); -x_985 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10; +x_985 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10; x_986 = lean_array_push(x_985, x_974); -x_987 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_987 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_988 = lean_array_push(x_986, x_987); x_989 = lean_array_push(x_988, x_984); x_990 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -11027,106 +11011,106 @@ return x_1004; } } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___boxed(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2(x_1); +x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__3(x_1, x_2); +x_3 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__4(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__6(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8(x_1, x_2, x_3); +x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__9(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__10(x_1, x_2, x_3, x_4); +x_5 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__11(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -11147,7 +11131,7 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); -x_9 = l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main(x_7, x_2, x_3); +x_9 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main(x_7, x_2, x_3); lean_dec(x_7); if (lean_obj_tag(x_9) == 0) { @@ -11157,7 +11141,7 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___spec__1(x_8, x_2, x_11); +x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___spec__1(x_8, x_2, x_11); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -11245,7 +11229,7 @@ x_27 = lean_ctor_get(x_1, 1); lean_inc(x_27); lean_inc(x_26); lean_dec(x_1); -x_28 = l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main(x_26, x_2, x_3); +x_28 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main(x_26, x_2, x_3); lean_dec(x_26); if (lean_obj_tag(x_28) == 0) { @@ -11255,7 +11239,7 @@ lean_inc(x_29); x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); lean_dec(x_28); -x_31 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___spec__1(x_27, x_2, x_30); +x_31 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___spec__1(x_27, x_2, x_30); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -11338,7 +11322,7 @@ return x_44; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 1) @@ -11350,7 +11334,7 @@ if (x_5 == 0) { lean_object* x_6; lean_object* x_7; x_6 = l_Array_toList___rarg(x_4); -x_7 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___spec__1(x_6, x_2, x_3); +x_7 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___spec__1(x_6, x_2, x_3); if (lean_obj_tag(x_7) == 0) { uint8_t x_8; @@ -11403,84 +11387,180 @@ return x_18; } else { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; x_19 = l_Lean_stxInh; x_20 = lean_unsigned_to_nat(1u); x_21 = lean_array_get(x_19, x_4, x_20); -x_22 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_22 = l_Lean_Parser_Term_paren___elambda__1___closed__1; lean_inc(x_21); x_23 = l_Lean_Syntax_isOfKind(x_21, x_22); if (x_23 == 0) { -lean_object* x_24; lean_object* x_25; -x_24 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__3; -x_25 = l_Lean_Elab_Term_throwError___rarg(x_21, x_24, x_2, x_3); -lean_dec(x_21); -return x_25; +x_24 = x_21; +goto block_32; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_box(0); -x_27 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_27, 0, x_21); -lean_ctor_set(x_27, 1, x_26); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_27); -lean_ctor_set(x_28, 1, x_3); +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_33 = l_Lean_Syntax_getArgs(x_21); +x_34 = lean_array_get_size(x_33); +lean_dec(x_33); +x_35 = lean_unsigned_to_nat(3u); +x_36 = lean_nat_dec_eq(x_34, x_35); +lean_dec(x_34); +if (x_36 == 0) +{ +x_24 = x_21; +goto block_32; +} +else +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_37 = l_Lean_Syntax_getArg(x_21, x_20); +x_38 = l_Lean_nullKind___closed__2; +lean_inc(x_37); +x_39 = l_Lean_Syntax_isOfKind(x_37, x_38); +if (x_39 == 0) +{ +lean_dec(x_37); +x_24 = x_21; +goto block_32; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = l_Lean_Syntax_getArgs(x_37); +x_41 = lean_array_get_size(x_40); +lean_dec(x_40); +x_42 = lean_unsigned_to_nat(2u); +x_43 = lean_nat_dec_eq(x_41, x_42); +lean_dec(x_41); +if (x_43 == 0) +{ +lean_dec(x_37); +x_24 = x_21; +goto block_32; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_44 = lean_unsigned_to_nat(0u); +x_45 = l_Lean_Syntax_getArg(x_37, x_44); +x_46 = l_Lean_Syntax_getArg(x_37, x_20); +lean_dec(x_37); +lean_inc(x_46); +x_47 = l_Lean_Syntax_isOfKind(x_46, x_38); +if (x_47 == 0) +{ +lean_dec(x_46); +lean_dec(x_45); +x_24 = x_21; +goto block_32; +} +else +{ +lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_48 = l_Lean_Syntax_getArgs(x_46); +lean_dec(x_46); +x_49 = lean_array_get_size(x_48); +lean_dec(x_48); +x_50 = lean_nat_dec_eq(x_49, x_44); +lean_dec(x_49); +if (x_50 == 0) +{ +lean_dec(x_45); +x_24 = x_21; +goto block_32; +} +else +{ +lean_dec(x_21); +x_24 = x_45; +goto block_32; +} +} +} +} +} +} +block_32: +{ +lean_object* x_25; uint8_t x_26; +x_25 = l_Lean_Parser_Term_id___elambda__1___closed__2; +lean_inc(x_24); +x_26 = l_Lean_Syntax_isOfKind(x_24, x_25); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3; +x_28 = l_Lean_Elab_Term_throwError___rarg(x_24, x_27, x_2, x_3); +lean_dec(x_24); return x_28; } +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_box(0); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_3); +return x_31; +} +} } } else { -lean_object* x_29; lean_object* x_30; -x_29 = lean_box(0); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_3); -return x_30; +lean_object* x_51; lean_object* x_52; +x_51 = lean_box(0); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_3); +return x_52; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___spec__1(x_1, x_2, x_3); +x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___spec__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVars(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_11__getAntiquotVars(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11500,22 +11580,22 @@ return x_7; else { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Quotation_9__getAntiquotVarsAux___main(x_1, x_2, x_3); +x_8 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVarsAux___main(x_1, x_2, x_3); lean_dec(x_1); return x_8; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__getAntiquotVars___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_11__getAntiquotVars___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVars(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_11__getAntiquotVars(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -11536,7 +11616,7 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); -x_9 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVars(x_7, x_2, x_3); +x_9 = l___private_Init_Lean_Elab_Quotation_11__getAntiquotVars(x_7, x_2, x_3); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -11545,7 +11625,7 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1(x_8, x_2, x_11); +x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_8, x_2, x_11); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -11633,7 +11713,7 @@ x_27 = lean_ctor_get(x_1, 1); lean_inc(x_27); lean_inc(x_26); lean_dec(x_1); -x_28 = l___private_Init_Lean_Elab_Quotation_10__getAntiquotVars(x_26, x_2, x_3); +x_28 = l___private_Init_Lean_Elab_Quotation_11__getAntiquotVars(x_26, x_2, x_3); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; lean_object* x_30; lean_object* x_31; @@ -11642,7 +11722,7 @@ lean_inc(x_29); x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); lean_dec(x_28); -x_31 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1(x_27, x_2, x_30); +x_31 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_27, x_2, x_30); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -11725,7 +11805,7 @@ return x_44; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1() { _start: { lean_object* x_1; @@ -11733,22 +11813,22 @@ x_1 = lean_mk_string("rhs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11756,17 +11836,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -11775,7 +11855,7 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -11784,27 +11864,27 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_2) == 0) @@ -11830,7 +11910,7 @@ x_11 = lean_ctor_get(x_2, 1); x_12 = lean_ctor_get(x_9, 0); x_13 = lean_ctor_get(x_9, 1); lean_inc(x_12); -x_14 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1(x_12, x_4, x_5); +x_14 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_12, x_4, x_5); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; @@ -11850,10 +11930,10 @@ x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); x_21 = lean_box(0); -x_22 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4; +x_22 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; x_23 = lean_name_mk_numeral(x_22, x_19); x_24 = lean_box(0); -x_25 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3; +x_25 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_21); lean_ctor_set(x_26, 1, x_25); @@ -11883,11 +11963,11 @@ lean_ctor_set(x_40, 1, x_38); x_41 = lean_nat_add(x_34, x_32); lean_dec(x_34); x_42 = lean_mk_empty_array_with_capacity(x_41); -x_43 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55; +x_43 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55; x_44 = lean_array_push(x_42, x_43); lean_inc(x_31); x_45 = lean_array_push(x_44, x_31); -x_46 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_46 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_47 = lean_array_push(x_45, x_46); x_48 = l_List_toArrayAux___main___rarg(x_17, x_47); x_49 = l_Lean_Parser_Term_paren___elambda__1___closed__1; @@ -11938,7 +12018,7 @@ lean_ctor_set(x_68, 6, x_65); lean_ctor_set(x_68, 7, x_66); lean_ctor_set(x_68, 8, x_57); lean_ctor_set_uint8(x_68, sizeof(void*)*9, x_67); -x_69 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_11, x_2, x_68, x_20); +x_69 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_2, x_68, x_20); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; @@ -11962,7 +12042,7 @@ lean_ctor_set(x_76, 2, x_75); lean_ctor_set(x_76, 3, x_24); x_77 = lean_mk_empty_array_with_capacity(x_33); lean_dec(x_33); -x_78 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1; +x_78 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; lean_inc(x_77); x_79 = lean_array_push(x_77, x_78); x_80 = l_List_toArrayAux___main___rarg(x_17, x_79); @@ -11998,7 +12078,7 @@ x_99 = lean_array_push(x_98, x_76); lean_inc(x_31); x_100 = lean_array_push(x_99, x_31); x_101 = lean_array_push(x_100, x_31); -x_102 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_102 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_103 = lean_array_push(x_101, x_102); x_104 = lean_array_push(x_103, x_96); x_105 = l_List_toArrayAux___main___rarg(x_17, x_104); @@ -12006,10 +12086,10 @@ x_106 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); -x_108 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1; +x_108 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1; x_109 = lean_array_push(x_87, x_108); x_110 = lean_array_push(x_109, x_107); -x_111 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_111 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_112 = lean_array_push(x_110, x_111); x_113 = lean_array_push(x_112, x_70); x_114 = l_List_toArrayAux___main___rarg(x_17, x_113); @@ -12036,7 +12116,7 @@ lean_ctor_set(x_120, 2, x_119); lean_ctor_set(x_120, 3, x_24); x_121 = lean_mk_empty_array_with_capacity(x_33); lean_dec(x_33); -x_122 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1; +x_122 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; lean_inc(x_121); x_123 = lean_array_push(x_121, x_122); x_124 = l_List_toArrayAux___main___rarg(x_17, x_123); @@ -12072,7 +12152,7 @@ x_143 = lean_array_push(x_142, x_120); lean_inc(x_31); x_144 = lean_array_push(x_143, x_31); x_145 = lean_array_push(x_144, x_31); -x_146 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_146 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_147 = lean_array_push(x_145, x_146); x_148 = lean_array_push(x_147, x_140); x_149 = l_List_toArrayAux___main___rarg(x_17, x_148); @@ -12080,10 +12160,10 @@ x_150 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_151 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_151, 0, x_150); lean_ctor_set(x_151, 1, x_149); -x_152 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1; +x_152 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1; x_153 = lean_array_push(x_131, x_152); x_154 = lean_array_push(x_153, x_151); -x_155 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_155 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_156 = lean_array_push(x_154, x_155); x_157 = lean_array_push(x_156, x_70); x_158 = l_List_toArrayAux___main___rarg(x_17, x_157); @@ -12177,7 +12257,7 @@ lean_ctor_set(x_183, 6, x_180); lean_ctor_set(x_183, 7, x_181); lean_ctor_set(x_183, 8, x_171); lean_ctor_set_uint8(x_183, sizeof(void*)*9, x_182); -x_184 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_11, x_2, x_183, x_173); +x_184 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_2, x_183, x_173); if (lean_obj_tag(x_184) == 0) { lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; @@ -12208,7 +12288,7 @@ lean_ctor_set(x_192, 2, x_191); lean_ctor_set(x_192, 3, x_24); x_193 = lean_mk_empty_array_with_capacity(x_33); lean_dec(x_33); -x_194 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1; +x_194 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; lean_inc(x_193); x_195 = lean_array_push(x_193, x_194); x_196 = l_List_toArrayAux___main___rarg(x_17, x_195); @@ -12244,7 +12324,7 @@ x_215 = lean_array_push(x_214, x_192); lean_inc(x_31); x_216 = lean_array_push(x_215, x_31); x_217 = lean_array_push(x_216, x_31); -x_218 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_218 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_219 = lean_array_push(x_217, x_218); x_220 = lean_array_push(x_219, x_212); x_221 = l_List_toArrayAux___main___rarg(x_17, x_220); @@ -12252,10 +12332,10 @@ x_222 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_223 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_223, 0, x_222); lean_ctor_set(x_223, 1, x_221); -x_224 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1; +x_224 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1; x_225 = lean_array_push(x_203, x_224); x_226 = lean_array_push(x_225, x_223); -x_227 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_227 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_228 = lean_array_push(x_226, x_227); x_229 = lean_array_push(x_228, x_185); x_230 = l_List_toArrayAux___main___rarg(x_17, x_229); @@ -12324,9 +12404,9 @@ x_244 = l_Lean_nullKind___closed__2; x_245 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_245, 0, x_244); lean_ctor_set(x_245, 1, x_240); -x_246 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7; +x_246 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; x_247 = lean_array_push(x_246, x_245); -x_248 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6; +x_248 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6; x_249 = lean_array_push(x_247, x_248); x_250 = lean_array_push(x_249, x_13); x_251 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -12340,10 +12420,10 @@ x_255 = lean_ctor_get(x_253, 1); lean_inc(x_255); lean_dec(x_253); x_256 = lean_box(0); -x_257 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4; +x_257 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; x_258 = lean_name_mk_numeral(x_257, x_254); x_259 = lean_box(0); -x_260 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3; +x_260 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; x_261 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_261, 0, x_256); lean_ctor_set(x_261, 1, x_260); @@ -12396,7 +12476,7 @@ lean_ctor_set(x_281, 6, x_278); lean_ctor_set(x_281, 7, x_279); lean_ctor_set(x_281, 8, x_269); lean_ctor_set_uint8(x_281, sizeof(void*)*9, x_280); -x_282 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_11, x_17, x_281, x_255); +x_282 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_17, x_281, x_255); if (lean_obj_tag(x_282) == 0) { lean_object* x_283; lean_object* x_284; lean_object* x_285; uint8_t x_286; @@ -12422,16 +12502,16 @@ x_290 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_291 = lean_array_push(x_290, x_289); x_292 = lean_array_push(x_291, x_264); x_293 = lean_array_push(x_292, x_264); -x_294 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_294 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_295 = lean_array_push(x_293, x_294); x_296 = lean_array_push(x_295, x_252); x_297 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_298 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_298, 0, x_297); lean_ctor_set(x_298, 1, x_296); -x_299 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8; +x_299 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; x_300 = lean_array_push(x_299, x_298); -x_301 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_301 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_302 = lean_array_push(x_300, x_301); x_303 = lean_array_push(x_302, x_283); x_304 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12459,16 +12539,16 @@ x_310 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_311 = lean_array_push(x_310, x_309); x_312 = lean_array_push(x_311, x_264); x_313 = lean_array_push(x_312, x_264); -x_314 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_314 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_315 = lean_array_push(x_313, x_314); x_316 = lean_array_push(x_315, x_252); x_317 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_318 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_318, 0, x_317); lean_ctor_set(x_318, 1, x_316); -x_319 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8; +x_319 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; x_320 = lean_array_push(x_319, x_318); -x_321 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_321 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_322 = lean_array_push(x_320, x_321); x_323 = lean_array_push(x_322, x_283); x_324 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12559,7 +12639,7 @@ lean_ctor_set(x_349, 6, x_346); lean_ctor_set(x_349, 7, x_347); lean_ctor_set(x_349, 8, x_336); lean_ctor_set_uint8(x_349, sizeof(void*)*9, x_348); -x_350 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_11, x_17, x_349, x_339); +x_350 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_17, x_349, x_339); if (lean_obj_tag(x_350) == 0) { lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; @@ -12592,16 +12672,16 @@ x_359 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_360 = lean_array_push(x_359, x_358); x_361 = lean_array_push(x_360, x_264); x_362 = lean_array_push(x_361, x_264); -x_363 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_363 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_364 = lean_array_push(x_362, x_363); x_365 = lean_array_push(x_364, x_252); x_366 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_367 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_367, 0, x_366); lean_ctor_set(x_367, 1, x_365); -x_368 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8; +x_368 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; x_369 = lean_array_push(x_368, x_367); -x_370 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_370 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_371 = lean_array_push(x_369, x_370); x_372 = lean_array_push(x_371, x_351); x_373 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12653,9 +12733,9 @@ x_380 = l_Lean_nullKind___closed__2; x_381 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_381, 0, x_380); lean_ctor_set(x_381, 1, x_240); -x_382 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7; +x_382 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; x_383 = lean_array_push(x_382, x_381); -x_384 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6; +x_384 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6; x_385 = lean_array_push(x_383, x_384); x_386 = lean_array_push(x_385, x_13); x_387 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -12669,10 +12749,10 @@ x_391 = lean_ctor_get(x_389, 1); lean_inc(x_391); lean_dec(x_389); x_392 = lean_box(0); -x_393 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4; +x_393 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; x_394 = lean_name_mk_numeral(x_393, x_390); x_395 = lean_box(0); -x_396 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3; +x_396 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; x_397 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_397, 0, x_392); lean_ctor_set(x_397, 1, x_396); @@ -12755,7 +12835,7 @@ lean_ctor_set(x_424, 6, x_421); lean_ctor_set(x_424, 7, x_422); lean_ctor_set(x_424, 8, x_410); lean_ctor_set_uint8(x_424, sizeof(void*)*9, x_423); -x_425 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_11, x_404, x_424, x_414); +x_425 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_404, x_424, x_414); if (lean_obj_tag(x_425) == 0) { lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; @@ -12788,16 +12868,16 @@ x_434 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_435 = lean_array_push(x_434, x_433); x_436 = lean_array_push(x_435, x_400); x_437 = lean_array_push(x_436, x_400); -x_438 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_438 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_439 = lean_array_push(x_437, x_438); x_440 = lean_array_push(x_439, x_388); x_441 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_442 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_442, 0, x_441); lean_ctor_set(x_442, 1, x_440); -x_443 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8; +x_443 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; x_444 = lean_array_push(x_443, x_442); -x_445 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_445 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_446 = lean_array_push(x_444, x_445); x_447 = lean_array_push(x_446, x_426); x_448 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12883,7 +12963,7 @@ lean_inc(x_461); lean_inc(x_460); lean_dec(x_9); lean_inc(x_460); -x_462 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1(x_460, x_4, x_5); +x_462 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_460, x_4, x_5); if (lean_obj_tag(x_462) == 0) { lean_object* x_463; lean_object* x_464; lean_object* x_465; @@ -12903,10 +12983,10 @@ x_468 = lean_ctor_get(x_466, 1); lean_inc(x_468); lean_dec(x_466); x_469 = lean_box(0); -x_470 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4; +x_470 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; x_471 = lean_name_mk_numeral(x_470, x_467); x_472 = lean_box(0); -x_473 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3; +x_473 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; x_474 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_474, 0, x_469); lean_ctor_set(x_474, 1, x_473); @@ -12936,11 +13016,11 @@ lean_ctor_set(x_488, 1, x_486); x_489 = lean_nat_add(x_482, x_480); lean_dec(x_482); x_490 = lean_mk_empty_array_with_capacity(x_489); -x_491 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55; +x_491 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55; x_492 = lean_array_push(x_490, x_491); lean_inc(x_479); x_493 = lean_array_push(x_492, x_479); -x_494 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_494 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_495 = lean_array_push(x_493, x_494); x_496 = l_List_toArrayAux___main___rarg(x_465, x_495); x_497 = l_Lean_Parser_Term_paren___elambda__1___closed__1; @@ -13023,7 +13103,7 @@ lean_ctor_set(x_523, 6, x_520); lean_ctor_set(x_523, 7, x_521); lean_ctor_set(x_523, 8, x_510); lean_ctor_set_uint8(x_523, sizeof(void*)*9, x_522); -x_524 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_459, x_2, x_523, x_513); +x_524 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_459, x_2, x_523, x_513); if (lean_obj_tag(x_524) == 0) { lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; @@ -13054,7 +13134,7 @@ lean_ctor_set(x_532, 2, x_531); lean_ctor_set(x_532, 3, x_472); x_533 = lean_mk_empty_array_with_capacity(x_481); lean_dec(x_481); -x_534 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1; +x_534 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; lean_inc(x_533); x_535 = lean_array_push(x_533, x_534); x_536 = l_List_toArrayAux___main___rarg(x_465, x_535); @@ -13090,7 +13170,7 @@ x_555 = lean_array_push(x_554, x_532); lean_inc(x_479); x_556 = lean_array_push(x_555, x_479); x_557 = lean_array_push(x_556, x_479); -x_558 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_558 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_559 = lean_array_push(x_557, x_558); x_560 = lean_array_push(x_559, x_552); x_561 = l_List_toArrayAux___main___rarg(x_465, x_560); @@ -13098,10 +13178,10 @@ x_562 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_563 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_563, 0, x_562); lean_ctor_set(x_563, 1, x_561); -x_564 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1; +x_564 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1; x_565 = lean_array_push(x_543, x_564); x_566 = lean_array_push(x_565, x_563); -x_567 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_567 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_568 = lean_array_push(x_566, x_567); x_569 = lean_array_push(x_568, x_525); x_570 = l_List_toArrayAux___main___rarg(x_465, x_569); @@ -13169,9 +13249,9 @@ x_582 = l_Lean_nullKind___closed__2; x_583 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_583, 0, x_582); lean_ctor_set(x_583, 1, x_580); -x_584 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7; +x_584 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; x_585 = lean_array_push(x_584, x_583); -x_586 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6; +x_586 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6; x_587 = lean_array_push(x_585, x_586); x_588 = lean_array_push(x_587, x_461); x_589 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -13185,10 +13265,10 @@ x_593 = lean_ctor_get(x_591, 1); lean_inc(x_593); lean_dec(x_591); x_594 = lean_box(0); -x_595 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4; +x_595 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; x_596 = lean_name_mk_numeral(x_595, x_592); x_597 = lean_box(0); -x_598 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3; +x_598 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; x_599 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_599, 0, x_594); lean_ctor_set(x_599, 1, x_598); @@ -13277,7 +13357,7 @@ lean_ctor_set(x_627, 6, x_624); lean_ctor_set(x_627, 7, x_625); lean_ctor_set(x_627, 8, x_613); lean_ctor_set_uint8(x_627, sizeof(void*)*9, x_626); -x_628 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_459, x_607, x_627, x_617); +x_628 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_459, x_607, x_627, x_617); if (lean_obj_tag(x_628) == 0) { lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; @@ -13310,16 +13390,16 @@ x_637 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_638 = lean_array_push(x_637, x_636); x_639 = lean_array_push(x_638, x_602); x_640 = lean_array_push(x_639, x_602); -x_641 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_641 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_642 = lean_array_push(x_640, x_641); x_643 = lean_array_push(x_642, x_590); x_644 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_645 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_645, 0, x_644); lean_ctor_set(x_645, 1, x_643); -x_646 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8; +x_646 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; x_647 = lean_array_push(x_646, x_645); -x_648 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_648 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_649 = lean_array_push(x_647, x_648); x_650 = lean_array_push(x_649, x_629); x_651 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -13417,7 +13497,7 @@ if (lean_is_exclusive(x_662)) { x_666 = lean_box(0); } lean_inc(x_664); -x_667 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1(x_664, x_4, x_5); +x_667 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_664, x_4, x_5); if (lean_obj_tag(x_667) == 0) { lean_object* x_668; lean_object* x_669; lean_object* x_670; @@ -13437,10 +13517,10 @@ x_673 = lean_ctor_get(x_671, 1); lean_inc(x_673); lean_dec(x_671); x_674 = lean_box(0); -x_675 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4; +x_675 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; x_676 = lean_name_mk_numeral(x_675, x_672); x_677 = lean_box(0); -x_678 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3; +x_678 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; x_679 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_679, 0, x_674); lean_ctor_set(x_679, 1, x_678); @@ -13470,11 +13550,11 @@ lean_ctor_set(x_693, 1, x_691); x_694 = lean_nat_add(x_687, x_685); lean_dec(x_687); x_695 = lean_mk_empty_array_with_capacity(x_694); -x_696 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55; +x_696 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55; x_697 = lean_array_push(x_695, x_696); lean_inc(x_684); x_698 = lean_array_push(x_697, x_684); -x_699 = l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63; +x_699 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; x_700 = lean_array_push(x_698, x_699); x_701 = l_List_toArrayAux___main___rarg(x_670, x_700); x_702 = l_Lean_Parser_Term_paren___elambda__1___closed__1; @@ -13562,7 +13642,7 @@ lean_ctor_set(x_729, 6, x_726); lean_ctor_set(x_729, 7, x_727); lean_ctor_set(x_729, 8, x_716); lean_ctor_set_uint8(x_729, sizeof(void*)*9, x_728); -x_730 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_663, x_710, x_729, x_719); +x_730 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_663, x_710, x_729, x_719); if (lean_obj_tag(x_730) == 0) { lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; @@ -13593,7 +13673,7 @@ lean_ctor_set(x_738, 2, x_737); lean_ctor_set(x_738, 3, x_677); x_739 = lean_mk_empty_array_with_capacity(x_686); lean_dec(x_686); -x_740 = l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1; +x_740 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; lean_inc(x_739); x_741 = lean_array_push(x_739, x_740); x_742 = l_List_toArrayAux___main___rarg(x_670, x_741); @@ -13629,7 +13709,7 @@ x_761 = lean_array_push(x_760, x_738); lean_inc(x_684); x_762 = lean_array_push(x_761, x_684); x_763 = lean_array_push(x_762, x_684); -x_764 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_764 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_765 = lean_array_push(x_763, x_764); x_766 = lean_array_push(x_765, x_758); x_767 = l_List_toArrayAux___main___rarg(x_670, x_766); @@ -13637,10 +13717,10 @@ x_768 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_769 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_769, 0, x_768); lean_ctor_set(x_769, 1, x_767); -x_770 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1; +x_770 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1; x_771 = lean_array_push(x_749, x_770); x_772 = lean_array_push(x_771, x_769); -x_773 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_773 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_774 = lean_array_push(x_772, x_773); x_775 = lean_array_push(x_774, x_731); x_776 = l_List_toArrayAux___main___rarg(x_670, x_775); @@ -13707,9 +13787,9 @@ x_788 = l_Lean_nullKind___closed__2; x_789 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_789, 0, x_788); lean_ctor_set(x_789, 1, x_786); -x_790 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7; +x_790 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; x_791 = lean_array_push(x_790, x_789); -x_792 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6; +x_792 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6; x_793 = lean_array_push(x_791, x_792); x_794 = lean_array_push(x_793, x_665); x_795 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -13723,10 +13803,10 @@ x_799 = lean_ctor_get(x_797, 1); lean_inc(x_799); lean_dec(x_797); x_800 = lean_box(0); -x_801 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4; +x_801 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; x_802 = lean_name_mk_numeral(x_801, x_798); x_803 = lean_box(0); -x_804 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3; +x_804 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; x_805 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_805, 0, x_800); lean_ctor_set(x_805, 1, x_804); @@ -13819,7 +13899,7 @@ lean_ctor_set(x_833, 6, x_830); lean_ctor_set(x_833, 7, x_831); lean_ctor_set(x_833, 8, x_819); lean_ctor_set_uint8(x_833, sizeof(void*)*9, x_832); -x_834 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_663, x_813, x_833, x_823); +x_834 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_663, x_813, x_833, x_823); if (lean_obj_tag(x_834) == 0) { lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; @@ -13852,16 +13932,16 @@ x_843 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; x_844 = lean_array_push(x_843, x_842); x_845 = lean_array_push(x_844, x_808); x_846 = lean_array_push(x_845, x_808); -x_847 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3; +x_847 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3; x_848 = lean_array_push(x_846, x_847); x_849 = lean_array_push(x_848, x_796); x_850 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_851 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_851, 0, x_850); lean_ctor_set(x_851, 1, x_849); -x_852 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8; +x_852 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; x_853 = lean_array_push(x_852, x_851); -x_854 = l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9; +x_854 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9; x_855 = lean_array_push(x_853, x_854); x_856 = lean_array_push(x_855, x_835); x_857 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -13940,20 +14020,20 @@ return x_867; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1(x_1, x_2, x_3); +x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_11__letBindRhss(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -14047,28 +14127,56 @@ return x_25; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_26 = lean_unsigned_to_nat(0u); x_27 = l_Lean_Syntax_getArg(x_16, x_26); lean_dec(x_16); -x_28 = lean_unsigned_to_nat(3u); -x_29 = l_Lean_Syntax_getArg(x_11, x_28); -x_30 = lean_box(0); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_27); -lean_ctor_set(x_31, 1, x_30); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_29); -x_33 = lean_nat_add(x_2, x_15); -x_34 = x_32; +x_28 = l_Lean_Parser_Term_stxQuot___elambda__1___closed__2; +lean_inc(x_27); +x_29 = l_Lean_Syntax_isOfKind(x_27, x_28); +x_30 = lean_unsigned_to_nat(3u); +x_31 = l_Lean_Syntax_getArg(x_11, x_30); +x_32 = lean_box(0); +if (x_29 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_27); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_31); +x_35 = lean_nat_add(x_2, x_15); +x_36 = x_34; lean_dec(x_11); -x_35 = lean_array_fset(x_14, x_2, x_34); +x_37 = lean_array_fset(x_14, x_2, x_36); lean_dec(x_2); -x_2 = x_33; -x_3 = x_35; +x_2 = x_35; +x_3 = x_37; goto _start; } +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_39 = l_Lean_Syntax_getArg(x_27, x_15); +x_40 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_39); +x_41 = l_Lean_Syntax_setArg(x_27, x_15, x_40); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_32); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_31); +x_44 = lean_nat_add(x_2, x_15); +x_45 = x_43; +lean_dec(x_11); +x_46 = lean_array_fset(x_14, x_2, x_45); +lean_dec(x_2); +x_2 = x_44; +x_3 = x_46; +goto _start; +} +} } } } @@ -14100,7 +14208,7 @@ lean_ctor_set(x_16, 0, x_7); lean_ctor_set(x_16, 1, x_15); x_17 = l_Array_toList___rarg(x_13); lean_dec(x_13); -x_18 = l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main(x_1, x_16, x_17, x_2, x_14); +x_18 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_16, x_17, x_2, x_14); return x_18; } else @@ -14238,7 +14346,7 @@ x_5 = l_Lean_Elab_Term_addBuiltinTermElab(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -14247,15 +14355,15 @@ x_2 = l_Lean_mkMVar(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder() { _start: { lean_object* x_1; -x_1 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1; return x_1; } } -lean_object* _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1() { +lean_object* _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1() { _start: { lean_object* x_1; @@ -14263,7 +14371,7 @@ x_1 = lean_mk_string("fieldNotation"); return x_1; } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14279,7 +14387,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14293,7 +14401,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14309,7 +14417,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14323,7 +14431,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14339,7 +14447,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14353,7 +14461,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14369,7 +14477,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14383,7 +14491,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14399,7 +14507,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14413,7 +14521,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14429,7 +14537,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14443,7 +14551,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14459,7 +14567,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14473,7 +14581,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14489,7 +14597,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14503,7 +14611,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14519,7 +14627,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14533,7 +14641,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14549,7 +14657,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14563,7 +14671,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14579,7 +14687,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14593,7 +14701,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14609,7 +14717,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14623,7 +14731,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14639,7 +14747,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14653,7 +14761,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -14661,22 +14769,22 @@ x_1 = lean_mk_string("HasBeq.beq"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14684,7 +14792,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4() { _start: { lean_object* x_1; @@ -14692,7 +14800,7 @@ x_1 = lean_mk_string("HasBeq"); return x_1; } } -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -14709,7 +14817,7 @@ x_14 = lean_name_mk_string(x_12, x_13); x_15 = l_Lean_Parser_Term_id___elambda__1___closed__1; x_16 = lean_name_mk_string(x_12, x_15); x_17 = lean_box(0); -x_18 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__4; +x_18 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4; lean_inc(x_1); x_19 = lean_name_mk_string(x_1, x_18); x_20 = l_Lean_Parser_Term_beq___elambda__1___closed__1; @@ -14723,7 +14831,7 @@ lean_ctor_set(x_24, 1, x_23); x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__3; +x_26 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_17); lean_ctor_set(x_27, 1, x_26); @@ -14758,7 +14866,7 @@ lean_ctor_set(x_42, 1, x_6); return x_42; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -14767,13 +14875,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_and___elambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__1; +x_3 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14781,7 +14889,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; @@ -14810,7 +14918,7 @@ lean_ctor_set(x_22, 1, x_21); x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); -x_24 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__2; +x_24 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2; x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_17); lean_ctor_set(x_25, 1, x_24); @@ -14845,7 +14953,7 @@ lean_ctor_set(x_40, 1, x_6); return x_40; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1() { _start: { lean_object* x_1; @@ -14853,22 +14961,22 @@ x_1 = lean_mk_string("ite"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14876,7 +14984,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; @@ -14893,7 +15001,7 @@ x_15 = lean_name_mk_string(x_13, x_14); x_16 = l_Lean_Parser_Term_id___elambda__1___closed__1; x_17 = lean_name_mk_string(x_13, x_16); x_18 = lean_box(0); -x_19 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__1; +x_19 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; lean_inc(x_1); x_20 = lean_name_mk_string(x_1, x_19); lean_inc(x_20); @@ -14905,7 +15013,7 @@ lean_ctor_set(x_23, 1, x_22); x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__3; +x_25 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_18); lean_ctor_set(x_26, 1, x_25); @@ -14946,7 +15054,7 @@ lean_ctor_set(x_44, 1, x_7); return x_44; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1() { _start: { lean_object* x_1; @@ -14954,27 +15062,27 @@ x_1 = lean_mk_string("stxQuot: unimplemented kind "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4() { _start: { lean_object* x_1; @@ -14982,7 +15090,7 @@ x_1 = lean_mk_string("expr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -14991,7 +15099,7 @@ x_2 = l_Lean_mkNatLit(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -15000,7 +15108,7 @@ x_2 = l_Lean_mkStrLit(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -15012,7 +15120,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_90; lean_object* x_91; @@ -15031,7 +15139,7 @@ lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_dec(x_4); x_101 = lean_ctor_get(x_90, 1); lean_inc(x_101); -x_102 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__4; +x_102 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4; x_103 = lean_string_dec_eq(x_101, x_102); lean_dec(x_101); if (x_103 == 0) @@ -15140,7 +15248,7 @@ x_134 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_135, 0, x_134); -x_136 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_136 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_137 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_137, 0, x_136); lean_ctor_set(x_137, 1, x_135); @@ -15167,7 +15275,7 @@ x_143 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_143, 0, x_142); x_144 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_144, 0, x_143); -x_145 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_145 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_146 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_144); @@ -15240,7 +15348,7 @@ x_170 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_170, 0, x_169); x_171 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_171, 0, x_170); -x_172 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_172 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_173 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_173, 0, x_172); lean_ctor_set(x_173, 1, x_171); @@ -15267,7 +15375,7 @@ lean_dec(x_176); if (lean_obj_tag(x_178) == 0) { lean_object* x_179; lean_object* x_180; -x_179 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5; +x_179 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; x_180 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_3); @@ -15304,7 +15412,7 @@ lean_dec(x_185); if (lean_obj_tag(x_186) == 0) { lean_object* x_187; lean_object* x_188; -x_187 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6; +x_187 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; x_188 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_188, 0, x_187); lean_ctor_set(x_188, 1, x_3); @@ -15339,7 +15447,7 @@ x_194 = lean_array_get(x_192, x_4, x_193); x_195 = lean_unsigned_to_nat(2u); x_196 = lean_array_get(x_192, x_4, x_195); lean_dec(x_4); -x_197 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___boxed), 6, 3); +x_197 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_197, 0, x_112); lean_closure_set(x_197, 1, x_194); lean_closure_set(x_197, 2, x_196); @@ -15367,7 +15475,7 @@ x_204 = lean_array_get(x_202, x_4, x_203); x_205 = lean_unsigned_to_nat(2u); x_206 = lean_array_get(x_202, x_4, x_205); lean_dec(x_4); -x_207 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___boxed), 6, 3); +x_207 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_207, 0, x_112); lean_closure_set(x_207, 1, x_204); lean_closure_set(x_207, 2, x_206); @@ -15442,7 +15550,7 @@ x_232 = lean_array_get(x_228, x_4, x_231); x_233 = lean_unsigned_to_nat(6u); x_234 = lean_array_get(x_228, x_4, x_233); lean_dec(x_4); -x_235 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___boxed), 7, 4); +x_235 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_235, 0, x_112); lean_closure_set(x_235, 1, x_230); lean_closure_set(x_235, 2, x_232); @@ -15469,7 +15577,7 @@ x_240 = l_Lean_stxInh; x_241 = lean_unsigned_to_nat(0u); x_242 = lean_array_get(x_240, x_4, x_241); lean_inc(x_2); -x_243 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_242, x_2, x_3); +x_243 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_242, x_2, x_3); if (lean_obj_tag(x_243) == 0) { lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; @@ -15481,7 +15589,7 @@ lean_dec(x_243); x_246 = lean_unsigned_to_nat(1u); x_247 = lean_array_get(x_240, x_4, x_246); lean_dec(x_4); -x_248 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_247, x_2, x_245); +x_248 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_247, x_2, x_245); if (lean_obj_tag(x_248) == 0) { uint8_t x_249; @@ -15617,7 +15725,7 @@ lean_dec(x_274); lean_dec(x_273); lean_dec(x_272); lean_dec(x_266); -x_277 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_277 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_278 = l_unreachable_x21___rarg(x_277); x_5 = x_278; goto block_89; @@ -15633,7 +15741,7 @@ lean_object* x_280; lean_object* x_281; lean_dec(x_273); lean_dec(x_272); lean_dec(x_266); -x_280 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_280 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_281 = l_unreachable_x21___rarg(x_280); x_5 = x_281; goto block_89; @@ -15648,7 +15756,7 @@ if (x_282 == 0) lean_object* x_283; lean_object* x_284; lean_dec(x_272); lean_dec(x_266); -x_283 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_283 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_284 = l_unreachable_x21___rarg(x_283); x_5 = x_284; goto block_89; @@ -15668,7 +15776,7 @@ if (x_288 == 0) { lean_object* x_289; lean_object* x_290; lean_dec(x_266); -x_289 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_289 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_290 = l_unreachable_x21___rarg(x_289); x_5 = x_290; goto block_89; @@ -15718,7 +15826,7 @@ lean_dec(x_269); lean_dec(x_268); lean_dec(x_267); lean_dec(x_266); -x_302 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_302 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_303 = l_unreachable_x21___rarg(x_302); x_5 = x_303; goto block_89; @@ -15732,7 +15840,7 @@ lean_dec(x_269); lean_dec(x_268); lean_dec(x_267); lean_dec(x_266); -x_304 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_304 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_305 = l_unreachable_x21___rarg(x_304); x_5 = x_305; goto block_89; @@ -15745,7 +15853,7 @@ lean_dec(x_269); lean_dec(x_268); lean_dec(x_267); lean_dec(x_266); -x_306 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_306 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_307 = l_unreachable_x21___rarg(x_306); x_5 = x_307; goto block_89; @@ -15757,7 +15865,7 @@ lean_object* x_308; lean_object* x_309; lean_dec(x_268); lean_dec(x_267); lean_dec(x_266); -x_308 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_308 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_309 = l_unreachable_x21___rarg(x_308); x_5 = x_309; goto block_89; @@ -15768,7 +15876,7 @@ else lean_object* x_310; lean_object* x_311; lean_dec(x_267); lean_dec(x_266); -x_310 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_310 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_311 = l_unreachable_x21___rarg(x_310); x_5 = x_311; goto block_89; @@ -15832,7 +15940,7 @@ lean_dec(x_333); x_335 = l_Lean_Syntax_getArg(x_334, x_313); lean_dec(x_334); lean_inc(x_2); -x_336 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_335, x_2, x_3); +x_336 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_335, x_2, x_3); if (lean_obj_tag(x_336) == 0) { lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; uint8_t x_356; @@ -15881,7 +15989,7 @@ x_359 = lean_ctor_get(x_357, 1); lean_dec(x_359); lean_inc(x_343); lean_ctor_set(x_357, 1, x_343); -x_360 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_355, x_2, x_346); +x_360 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_355, x_2, x_346); if (lean_obj_tag(x_360) == 0) { uint8_t x_361; @@ -15958,7 +16066,7 @@ lean_ctor_set(x_380, 0, x_378); lean_ctor_set(x_380, 1, x_343); lean_ctor_set(x_380, 2, x_379); lean_ctor_set(x_2, 0, x_380); -x_381 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_355, x_2, x_346); +x_381 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_355, x_2, x_346); if (lean_obj_tag(x_381) == 0) { lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; @@ -16073,7 +16181,7 @@ lean_ctor_set(x_408, 6, x_400); lean_ctor_set(x_408, 7, x_401); lean_ctor_set(x_408, 8, x_402); lean_ctor_set_uint8(x_408, sizeof(void*)*9, x_403); -x_409 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_355, x_408, x_346); +x_409 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_355, x_408, x_346); if (lean_obj_tag(x_409) == 0) { lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; @@ -16172,7 +16280,7 @@ lean_inc(x_429); x_430 = lean_ctor_get(x_428, 1); lean_inc(x_430); lean_dec(x_428); -x_431 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_431 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_432 = 0; lean_inc_n(x_427, 2); x_433 = lean_local_ctx_mk_local_decl(x_429, x_427, x_427, x_431, x_432); @@ -16207,7 +16315,7 @@ x_449 = lean_ctor_get(x_447, 1); lean_dec(x_449); lean_inc(x_433); lean_ctor_set(x_447, 1, x_433); -x_450 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_445, x_2, x_436); +x_450 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_445, x_2, x_436); if (lean_obj_tag(x_450) == 0) { uint8_t x_451; @@ -16284,7 +16392,7 @@ lean_ctor_set(x_470, 0, x_468); lean_ctor_set(x_470, 1, x_433); lean_ctor_set(x_470, 2, x_469); lean_ctor_set(x_2, 0, x_470); -x_471 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_445, x_2, x_436); +x_471 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_445, x_2, x_436); if (lean_obj_tag(x_471) == 0) { lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; @@ -16399,7 +16507,7 @@ lean_ctor_set(x_498, 6, x_490); lean_ctor_set(x_498, 7, x_491); lean_ctor_set(x_498, 8, x_492); lean_ctor_set_uint8(x_498, sizeof(void*)*9, x_493); -x_499 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_445, x_498, x_436); +x_499 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_445, x_498, x_436); if (lean_obj_tag(x_499) == 0) { lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; @@ -16470,7 +16578,7 @@ lean_inc(x_514); x_515 = lean_ctor_get(x_513, 1); lean_inc(x_515); lean_dec(x_513); -x_516 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_516 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_517 = 0; lean_inc_n(x_512, 2); x_518 = lean_local_ctx_mk_local_decl(x_514, x_512, x_512, x_516, x_517); @@ -16505,7 +16613,7 @@ x_534 = lean_ctor_get(x_532, 1); lean_dec(x_534); lean_inc(x_518); lean_ctor_set(x_532, 1, x_518); -x_535 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_530, x_2, x_521); +x_535 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_530, x_2, x_521); if (lean_obj_tag(x_535) == 0) { uint8_t x_536; @@ -16582,7 +16690,7 @@ lean_ctor_set(x_555, 0, x_553); lean_ctor_set(x_555, 1, x_518); lean_ctor_set(x_555, 2, x_554); lean_ctor_set(x_2, 0, x_555); -x_556 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_530, x_2, x_521); +x_556 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_530, x_2, x_521); if (lean_obj_tag(x_556) == 0) { lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; @@ -16697,7 +16805,7 @@ lean_ctor_set(x_583, 6, x_575); lean_ctor_set(x_583, 7, x_576); lean_ctor_set(x_583, 8, x_577); lean_ctor_set_uint8(x_583, sizeof(void*)*9, x_578); -x_584 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_530, x_583, x_521); +x_584 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_530, x_583, x_521); if (lean_obj_tag(x_584) == 0) { lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; @@ -16827,7 +16935,7 @@ lean_dec(x_613); x_614 = lean_ctor_get(x_610, 1); lean_inc(x_614); lean_dec(x_610); -x_615 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1(x_112, x_611, x_614); +x_615 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_112, x_611, x_614); lean_ctor_set(x_604, 0, x_615); return x_604; } @@ -16840,7 +16948,7 @@ lean_dec(x_604); x_617 = lean_ctor_get(x_610, 1); lean_inc(x_617); lean_dec(x_610); -x_618 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1(x_112, x_611, x_617); +x_618 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_112, x_611, x_617); x_619 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_619, 0, x_618); lean_ctor_set(x_619, 1, x_616); @@ -16859,7 +16967,7 @@ lean_dec(x_621); x_622 = lean_ctor_get(x_610, 1); lean_inc(x_622); lean_dec(x_610); -x_623 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__2(x_112, x_611, x_622); +x_623 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_112, x_611, x_622); lean_ctor_set(x_604, 0, x_623); return x_604; } @@ -16872,7 +16980,7 @@ lean_dec(x_604); x_625 = lean_ctor_get(x_610, 1); lean_inc(x_625); lean_dec(x_610); -x_626 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__2(x_112, x_611, x_625); +x_626 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_112, x_611, x_625); x_627 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_627, 0, x_626); lean_ctor_set(x_627, 1, x_624); @@ -16891,7 +16999,7 @@ lean_dec(x_629); x_630 = lean_ctor_get(x_610, 1); lean_inc(x_630); lean_dec(x_610); -x_631 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__3(x_112, x_611, x_630); +x_631 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_112, x_611, x_630); lean_ctor_set(x_604, 0, x_631); return x_604; } @@ -16904,7 +17012,7 @@ lean_dec(x_604); x_633 = lean_ctor_get(x_610, 1); lean_inc(x_633); lean_dec(x_610); -x_634 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__3(x_112, x_611, x_633); +x_634 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_112, x_611, x_633); x_635 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_635, 0, x_634); lean_ctor_set(x_635, 1, x_632); @@ -16923,7 +17031,7 @@ lean_dec(x_637); x_638 = lean_ctor_get(x_610, 1); lean_inc(x_638); lean_dec(x_610); -x_639 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__4(x_112, x_611, x_638); +x_639 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_112, x_611, x_638); lean_ctor_set(x_604, 0, x_639); return x_604; } @@ -16936,7 +17044,7 @@ lean_dec(x_604); x_641 = lean_ctor_get(x_610, 1); lean_inc(x_641); lean_dec(x_610); -x_642 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__4(x_112, x_611, x_641); +x_642 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_112, x_611, x_641); x_643 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_643, 0, x_642); lean_ctor_set(x_643, 1, x_640); @@ -16959,7 +17067,7 @@ x_647 = lean_ctor_get(x_611, 0); lean_inc(x_647); lean_dec(x_611); x_648 = l_Lean_mkConst(x_647, x_603); -x_649 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__5(x_112, x_648, x_646); +x_649 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_112, x_648, x_646); lean_ctor_set(x_604, 0, x_649); return x_604; } @@ -16976,7 +17084,7 @@ x_652 = lean_ctor_get(x_611, 0); lean_inc(x_652); lean_dec(x_611); x_653 = l_Lean_mkConst(x_652, x_603); -x_654 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__5(x_112, x_653, x_651); +x_654 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_112, x_653, x_651); x_655 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_655, 0, x_654); lean_ctor_set(x_655, 1, x_650); @@ -16995,7 +17103,7 @@ lean_dec(x_657); x_658 = lean_ctor_get(x_610, 1); lean_inc(x_658); lean_dec(x_610); -x_659 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__6(x_112, x_611, x_658); +x_659 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_112, x_611, x_658); lean_ctor_set(x_604, 0, x_659); return x_604; } @@ -17008,7 +17116,7 @@ lean_dec(x_604); x_661 = lean_ctor_get(x_610, 1); lean_inc(x_661); lean_dec(x_610); -x_662 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__6(x_112, x_611, x_661); +x_662 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_112, x_611, x_661); x_663 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_663, 0, x_662); lean_ctor_set(x_663, 1, x_660); @@ -17027,7 +17135,7 @@ lean_dec(x_665); x_666 = lean_ctor_get(x_610, 1); lean_inc(x_666); lean_dec(x_610); -x_667 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__7(x_112, x_611, x_666); +x_667 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_112, x_611, x_666); lean_ctor_set(x_604, 0, x_667); return x_604; } @@ -17040,7 +17148,7 @@ lean_dec(x_604); x_669 = lean_ctor_get(x_610, 1); lean_inc(x_669); lean_dec(x_610); -x_670 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__7(x_112, x_611, x_669); +x_670 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_112, x_611, x_669); x_671 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_671, 0, x_670); lean_ctor_set(x_671, 1, x_668); @@ -17059,7 +17167,7 @@ lean_dec(x_673); x_674 = lean_ctor_get(x_610, 1); lean_inc(x_674); lean_dec(x_610); -x_675 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__8(x_112, x_611, x_674); +x_675 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_112, x_611, x_674); lean_ctor_set(x_604, 0, x_675); return x_604; } @@ -17072,7 +17180,7 @@ lean_dec(x_604); x_677 = lean_ctor_get(x_610, 1); lean_inc(x_677); lean_dec(x_610); -x_678 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__8(x_112, x_611, x_677); +x_678 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_112, x_611, x_677); x_679 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_679, 0, x_678); lean_ctor_set(x_679, 1, x_676); @@ -17091,7 +17199,7 @@ lean_dec(x_681); x_682 = lean_ctor_get(x_610, 1); lean_inc(x_682); lean_dec(x_610); -x_683 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__9(x_112, x_611, x_682); +x_683 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_112, x_611, x_682); lean_ctor_set(x_604, 0, x_683); return x_604; } @@ -17104,7 +17212,7 @@ lean_dec(x_604); x_685 = lean_ctor_get(x_610, 1); lean_inc(x_685); lean_dec(x_610); -x_686 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__9(x_112, x_611, x_685); +x_686 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_112, x_611, x_685); x_687 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_687, 0, x_686); lean_ctor_set(x_687, 1, x_684); @@ -17123,7 +17231,7 @@ lean_dec(x_689); x_690 = lean_ctor_get(x_610, 1); lean_inc(x_690); lean_dec(x_610); -x_691 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__10(x_112, x_611, x_690); +x_691 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_112, x_611, x_690); lean_ctor_set(x_604, 0, x_691); return x_604; } @@ -17136,7 +17244,7 @@ lean_dec(x_604); x_693 = lean_ctor_get(x_610, 1); lean_inc(x_693); lean_dec(x_610); -x_694 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__10(x_112, x_611, x_693); +x_694 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_112, x_611, x_693); x_695 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_695, 0, x_694); lean_ctor_set(x_695, 1, x_692); @@ -17155,7 +17263,7 @@ lean_dec(x_697); x_698 = lean_ctor_get(x_610, 1); lean_inc(x_698); lean_dec(x_610); -x_699 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__11(x_112, x_611, x_698); +x_699 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_112, x_611, x_698); lean_ctor_set(x_604, 0, x_699); return x_604; } @@ -17168,7 +17276,7 @@ lean_dec(x_604); x_701 = lean_ctor_get(x_610, 1); lean_inc(x_701); lean_dec(x_610); -x_702 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__11(x_112, x_611, x_701); +x_702 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_112, x_611, x_701); x_703 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_703, 0, x_702); lean_ctor_set(x_703, 1, x_700); @@ -17187,7 +17295,7 @@ lean_dec(x_705); x_706 = lean_ctor_get(x_610, 1); lean_inc(x_706); lean_dec(x_610); -x_707 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__12(x_112, x_611, x_706); +x_707 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_112, x_611, x_706); lean_ctor_set(x_604, 0, x_707); return x_604; } @@ -17200,7 +17308,7 @@ lean_dec(x_604); x_709 = lean_ctor_get(x_610, 1); lean_inc(x_709); lean_dec(x_610); -x_710 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__12(x_112, x_611, x_709); +x_710 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_112, x_611, x_709); x_711 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_711, 0, x_710); lean_ctor_set(x_711, 1, x_708); @@ -17219,7 +17327,7 @@ lean_dec(x_713); x_714 = lean_ctor_get(x_610, 1); lean_inc(x_714); lean_dec(x_610); -x_715 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__13(x_112, x_611, x_714); +x_715 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_112, x_611, x_714); lean_ctor_set(x_604, 0, x_715); return x_604; } @@ -17232,7 +17340,7 @@ lean_dec(x_604); x_717 = lean_ctor_get(x_610, 1); lean_inc(x_717); lean_dec(x_610); -x_718 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__13(x_112, x_611, x_717); +x_718 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_112, x_611, x_717); x_719 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_719, 0, x_718); lean_ctor_set(x_719, 1, x_716); @@ -17301,7 +17409,7 @@ x_732 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_732, 0, x_731); x_733 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_733, 0, x_732); -x_734 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_734 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_735 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_735, 0, x_734); lean_ctor_set(x_735, 1, x_733); @@ -17332,7 +17440,7 @@ x_742 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_742, 0, x_741); x_743 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_743, 0, x_742); -x_744 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_744 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_745 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_745, 0, x_744); lean_ctor_set(x_745, 1, x_743); @@ -17409,7 +17517,7 @@ x_770 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_770, 0, x_769); x_771 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_771, 0, x_770); -x_772 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_772 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_773 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_773, 0, x_772); lean_ctor_set(x_773, 1, x_771); @@ -17435,7 +17543,7 @@ lean_dec(x_776); if (lean_obj_tag(x_778) == 0) { lean_object* x_779; lean_object* x_780; -x_779 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5; +x_779 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; x_780 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_780, 0, x_779); lean_ctor_set(x_780, 1, x_3); @@ -17471,7 +17579,7 @@ lean_dec(x_785); if (lean_obj_tag(x_786) == 0) { lean_object* x_787; lean_object* x_788; -x_787 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6; +x_787 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; x_788 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_788, 0, x_787); lean_ctor_set(x_788, 1, x_3); @@ -17505,7 +17613,7 @@ x_794 = lean_array_get(x_792, x_4, x_793); x_795 = lean_unsigned_to_nat(2u); x_796 = lean_array_get(x_792, x_4, x_795); lean_dec(x_4); -x_797 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___boxed), 6, 3); +x_797 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_797, 0, x_112); lean_closure_set(x_797, 1, x_794); lean_closure_set(x_797, 2, x_796); @@ -17532,7 +17640,7 @@ x_804 = lean_array_get(x_802, x_4, x_803); x_805 = lean_unsigned_to_nat(2u); x_806 = lean_array_get(x_802, x_4, x_805); lean_dec(x_4); -x_807 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___boxed), 6, 3); +x_807 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_807, 0, x_112); lean_closure_set(x_807, 1, x_804); lean_closure_set(x_807, 2, x_806); @@ -17605,7 +17713,7 @@ x_832 = lean_array_get(x_828, x_4, x_831); x_833 = lean_unsigned_to_nat(6u); x_834 = lean_array_get(x_828, x_4, x_833); lean_dec(x_4); -x_835 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___boxed), 7, 4); +x_835 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_835, 0, x_112); lean_closure_set(x_835, 1, x_830); lean_closure_set(x_835, 2, x_832); @@ -17631,7 +17739,7 @@ x_840 = l_Lean_stxInh; x_841 = lean_unsigned_to_nat(0u); x_842 = lean_array_get(x_840, x_4, x_841); lean_inc(x_2); -x_843 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_842, x_2, x_3); +x_843 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_842, x_2, x_3); if (lean_obj_tag(x_843) == 0) { lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; @@ -17643,7 +17751,7 @@ lean_dec(x_843); x_846 = lean_unsigned_to_nat(1u); x_847 = lean_array_get(x_840, x_4, x_846); lean_dec(x_4); -x_848 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_847, x_2, x_845); +x_848 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_847, x_2, x_845); if (lean_obj_tag(x_848) == 0) { lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; @@ -17780,7 +17888,7 @@ lean_dec(x_872); lean_dec(x_871); lean_dec(x_870); lean_dec(x_864); -x_875 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_875 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_876 = l_unreachable_x21___rarg(x_875); x_5 = x_876; goto block_89; @@ -17796,7 +17904,7 @@ lean_object* x_878; lean_object* x_879; lean_dec(x_871); lean_dec(x_870); lean_dec(x_864); -x_878 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_878 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_879 = l_unreachable_x21___rarg(x_878); x_5 = x_879; goto block_89; @@ -17811,7 +17919,7 @@ if (x_880 == 0) lean_object* x_881; lean_object* x_882; lean_dec(x_870); lean_dec(x_864); -x_881 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_881 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_882 = l_unreachable_x21___rarg(x_881); x_5 = x_882; goto block_89; @@ -17831,7 +17939,7 @@ if (x_886 == 0) { lean_object* x_887; lean_object* x_888; lean_dec(x_864); -x_887 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_887 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_888 = l_unreachable_x21___rarg(x_887); x_5 = x_888; goto block_89; @@ -17881,7 +17989,7 @@ lean_dec(x_867); lean_dec(x_866); lean_dec(x_865); lean_dec(x_864); -x_900 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_900 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_901 = l_unreachable_x21___rarg(x_900); x_5 = x_901; goto block_89; @@ -17895,7 +18003,7 @@ lean_dec(x_867); lean_dec(x_866); lean_dec(x_865); lean_dec(x_864); -x_902 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_902 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_903 = l_unreachable_x21___rarg(x_902); x_5 = x_903; goto block_89; @@ -17908,7 +18016,7 @@ lean_dec(x_867); lean_dec(x_866); lean_dec(x_865); lean_dec(x_864); -x_904 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_904 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_905 = l_unreachable_x21___rarg(x_904); x_5 = x_905; goto block_89; @@ -17920,7 +18028,7 @@ lean_object* x_906; lean_object* x_907; lean_dec(x_866); lean_dec(x_865); lean_dec(x_864); -x_906 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_906 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_907 = l_unreachable_x21___rarg(x_906); x_5 = x_907; goto block_89; @@ -17931,7 +18039,7 @@ else lean_object* x_908; lean_object* x_909; lean_dec(x_865); lean_dec(x_864); -x_908 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_908 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_909 = l_unreachable_x21___rarg(x_908); x_5 = x_909; goto block_89; @@ -17994,7 +18102,7 @@ lean_dec(x_931); x_933 = l_Lean_Syntax_getArg(x_932, x_911); lean_dec(x_932); lean_inc(x_2); -x_934 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_933, x_2, x_3); +x_934 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_933, x_2, x_3); if (lean_obj_tag(x_934) == 0) { lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; uint8_t x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; uint8_t x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; @@ -18101,7 +18209,7 @@ lean_ctor_set(x_969, 6, x_960); lean_ctor_set(x_969, 7, x_961); lean_ctor_set(x_969, 8, x_962); lean_ctor_set_uint8(x_969, sizeof(void*)*9, x_963); -x_970 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_953, x_969, x_944); +x_970 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_953, x_969, x_944); if (lean_obj_tag(x_970) == 0) { lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; @@ -18201,7 +18309,7 @@ lean_inc(x_990); x_991 = lean_ctor_get(x_989, 1); lean_inc(x_991); lean_dec(x_989); -x_992 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_992 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_993 = 0; lean_inc_n(x_988, 2); x_994 = lean_local_ctx_mk_local_decl(x_990, x_988, x_988, x_992, x_993); @@ -18294,7 +18402,7 @@ lean_ctor_set(x_1022, 6, x_1013); lean_ctor_set(x_1022, 7, x_1014); lean_ctor_set(x_1022, 8, x_1015); lean_ctor_set_uint8(x_1022, sizeof(void*)*9, x_1016); -x_1023 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1006, x_1022, x_997); +x_1023 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1006, x_1022, x_997); if (lean_obj_tag(x_1023) == 0) { lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; @@ -18364,7 +18472,7 @@ lean_inc(x_1038); x_1039 = lean_ctor_get(x_1037, 1); lean_inc(x_1039); lean_dec(x_1037); -x_1040 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_1040 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_1041 = 0; lean_inc_n(x_1036, 2); x_1042 = lean_local_ctx_mk_local_decl(x_1038, x_1036, x_1036, x_1040, x_1041); @@ -18457,7 +18565,7 @@ lean_ctor_set(x_1070, 6, x_1061); lean_ctor_set(x_1070, 7, x_1062); lean_ctor_set(x_1070, 8, x_1063); lean_ctor_set_uint8(x_1070, sizeof(void*)*9, x_1064); -x_1071 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1054, x_1070, x_1045); +x_1071 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1054, x_1070, x_1045); 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; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; @@ -18589,7 +18697,7 @@ if (lean_is_exclusive(x_1091)) { x_1101 = lean_ctor_get(x_1097, 1); lean_inc(x_1101); lean_dec(x_1097); -x_1102 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1(x_112, x_1098, x_1101); +x_1102 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_112, x_1098, x_1101); if (lean_is_scalar(x_1100)) { x_1103 = lean_alloc_ctor(0, 2, 0); } else { @@ -18615,7 +18723,7 @@ if (lean_is_exclusive(x_1091)) { x_1106 = lean_ctor_get(x_1097, 1); lean_inc(x_1106); lean_dec(x_1097); -x_1107 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__2(x_112, x_1098, x_1106); +x_1107 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_112, x_1098, x_1106); if (lean_is_scalar(x_1105)) { x_1108 = lean_alloc_ctor(0, 2, 0); } else { @@ -18641,7 +18749,7 @@ if (lean_is_exclusive(x_1091)) { x_1111 = lean_ctor_get(x_1097, 1); lean_inc(x_1111); lean_dec(x_1097); -x_1112 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__3(x_112, x_1098, x_1111); +x_1112 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_112, x_1098, x_1111); if (lean_is_scalar(x_1110)) { x_1113 = lean_alloc_ctor(0, 2, 0); } else { @@ -18667,7 +18775,7 @@ if (lean_is_exclusive(x_1091)) { x_1116 = lean_ctor_get(x_1097, 1); lean_inc(x_1116); lean_dec(x_1097); -x_1117 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__4(x_112, x_1098, x_1116); +x_1117 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_112, x_1098, x_1116); if (lean_is_scalar(x_1115)) { x_1118 = lean_alloc_ctor(0, 2, 0); } else { @@ -18697,7 +18805,7 @@ x_1122 = lean_ctor_get(x_1098, 0); lean_inc(x_1122); lean_dec(x_1098); x_1123 = l_Lean_mkConst(x_1122, x_1090); -x_1124 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__5(x_112, x_1123, x_1121); +x_1124 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_112, x_1123, x_1121); if (lean_is_scalar(x_1120)) { x_1125 = lean_alloc_ctor(0, 2, 0); } else { @@ -18723,7 +18831,7 @@ if (lean_is_exclusive(x_1091)) { x_1128 = lean_ctor_get(x_1097, 1); lean_inc(x_1128); lean_dec(x_1097); -x_1129 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__6(x_112, x_1098, x_1128); +x_1129 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_112, x_1098, x_1128); if (lean_is_scalar(x_1127)) { x_1130 = lean_alloc_ctor(0, 2, 0); } else { @@ -18749,7 +18857,7 @@ if (lean_is_exclusive(x_1091)) { x_1133 = lean_ctor_get(x_1097, 1); lean_inc(x_1133); lean_dec(x_1097); -x_1134 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__7(x_112, x_1098, x_1133); +x_1134 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_112, x_1098, x_1133); if (lean_is_scalar(x_1132)) { x_1135 = lean_alloc_ctor(0, 2, 0); } else { @@ -18775,7 +18883,7 @@ if (lean_is_exclusive(x_1091)) { x_1138 = lean_ctor_get(x_1097, 1); lean_inc(x_1138); lean_dec(x_1097); -x_1139 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__8(x_112, x_1098, x_1138); +x_1139 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_112, x_1098, x_1138); if (lean_is_scalar(x_1137)) { x_1140 = lean_alloc_ctor(0, 2, 0); } else { @@ -18801,7 +18909,7 @@ if (lean_is_exclusive(x_1091)) { x_1143 = lean_ctor_get(x_1097, 1); lean_inc(x_1143); lean_dec(x_1097); -x_1144 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__9(x_112, x_1098, x_1143); +x_1144 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_112, x_1098, x_1143); if (lean_is_scalar(x_1142)) { x_1145 = lean_alloc_ctor(0, 2, 0); } else { @@ -18827,7 +18935,7 @@ if (lean_is_exclusive(x_1091)) { x_1148 = lean_ctor_get(x_1097, 1); lean_inc(x_1148); lean_dec(x_1097); -x_1149 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__10(x_112, x_1098, x_1148); +x_1149 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_112, x_1098, x_1148); if (lean_is_scalar(x_1147)) { x_1150 = lean_alloc_ctor(0, 2, 0); } else { @@ -18853,7 +18961,7 @@ if (lean_is_exclusive(x_1091)) { x_1153 = lean_ctor_get(x_1097, 1); lean_inc(x_1153); lean_dec(x_1097); -x_1154 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__11(x_112, x_1098, x_1153); +x_1154 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_112, x_1098, x_1153); if (lean_is_scalar(x_1152)) { x_1155 = lean_alloc_ctor(0, 2, 0); } else { @@ -18879,7 +18987,7 @@ if (lean_is_exclusive(x_1091)) { x_1158 = lean_ctor_get(x_1097, 1); lean_inc(x_1158); lean_dec(x_1097); -x_1159 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__12(x_112, x_1098, x_1158); +x_1159 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_112, x_1098, x_1158); if (lean_is_scalar(x_1157)) { x_1160 = lean_alloc_ctor(0, 2, 0); } else { @@ -18905,7 +19013,7 @@ if (lean_is_exclusive(x_1091)) { x_1163 = lean_ctor_get(x_1097, 1); lean_inc(x_1163); lean_dec(x_1097); -x_1164 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__13(x_112, x_1098, x_1163); +x_1164 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_112, x_1098, x_1163); if (lean_is_scalar(x_1162)) { x_1165 = lean_alloc_ctor(0, 2, 0); } else { @@ -19019,7 +19127,7 @@ x_1185 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1185, 0, x_1184); x_1186 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1186, 0, x_1185); -x_1187 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_1187 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_1188 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1188, 0, x_1187); lean_ctor_set(x_1188, 1, x_1186); @@ -19058,7 +19166,7 @@ x_1196 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1196, 0, x_1195); x_1197 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1197, 0, x_1196); -x_1198 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_1198 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_1199 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1199, 0, x_1198); lean_ctor_set(x_1199, 1, x_1197); @@ -19143,7 +19251,7 @@ x_1225 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1225, 0, x_1224); x_1226 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1226, 0, x_1225); -x_1227 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_1227 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_1228 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1228, 0, x_1227); lean_ctor_set(x_1228, 1, x_1226); @@ -19169,7 +19277,7 @@ lean_dec(x_1231); if (lean_obj_tag(x_1233) == 0) { lean_object* x_1234; lean_object* x_1235; -x_1234 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5; +x_1234 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; x_1235 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1235, 0, x_1234); lean_ctor_set(x_1235, 1, x_3); @@ -19205,7 +19313,7 @@ lean_dec(x_1240); if (lean_obj_tag(x_1241) == 0) { lean_object* x_1242; lean_object* x_1243; -x_1242 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6; +x_1242 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; x_1243 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1243, 0, x_1242); lean_ctor_set(x_1243, 1, x_3); @@ -19239,7 +19347,7 @@ x_1249 = lean_array_get(x_1247, x_4, x_1248); x_1250 = lean_unsigned_to_nat(2u); x_1251 = lean_array_get(x_1247, x_4, x_1250); lean_dec(x_4); -x_1252 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___boxed), 6, 3); +x_1252 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_1252, 0, x_112); lean_closure_set(x_1252, 1, x_1249); lean_closure_set(x_1252, 2, x_1251); @@ -19266,7 +19374,7 @@ x_1259 = lean_array_get(x_1257, x_4, x_1258); x_1260 = lean_unsigned_to_nat(2u); x_1261 = lean_array_get(x_1257, x_4, x_1260); lean_dec(x_4); -x_1262 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___boxed), 6, 3); +x_1262 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_1262, 0, x_112); lean_closure_set(x_1262, 1, x_1259); lean_closure_set(x_1262, 2, x_1261); @@ -19339,7 +19447,7 @@ x_1287 = lean_array_get(x_1283, x_4, x_1286); x_1288 = lean_unsigned_to_nat(6u); x_1289 = lean_array_get(x_1283, x_4, x_1288); lean_dec(x_4); -x_1290 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___boxed), 7, 4); +x_1290 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_1290, 0, x_112); lean_closure_set(x_1290, 1, x_1285); lean_closure_set(x_1290, 2, x_1287); @@ -19365,7 +19473,7 @@ x_1295 = l_Lean_stxInh; x_1296 = lean_unsigned_to_nat(0u); x_1297 = lean_array_get(x_1295, x_4, x_1296); lean_inc(x_2); -x_1298 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1297, x_2, x_3); +x_1298 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1297, x_2, x_3); if (lean_obj_tag(x_1298) == 0) { lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; @@ -19377,7 +19485,7 @@ lean_dec(x_1298); x_1301 = lean_unsigned_to_nat(1u); x_1302 = lean_array_get(x_1295, x_4, x_1301); lean_dec(x_4); -x_1303 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1302, x_2, x_1300); +x_1303 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1302, x_2, x_1300); if (lean_obj_tag(x_1303) == 0) { lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; @@ -19514,7 +19622,7 @@ lean_dec(x_1327); lean_dec(x_1326); lean_dec(x_1325); lean_dec(x_1319); -x_1330 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1330 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1331 = l_unreachable_x21___rarg(x_1330); x_5 = x_1331; goto block_89; @@ -19530,7 +19638,7 @@ lean_object* x_1333; lean_object* x_1334; lean_dec(x_1326); lean_dec(x_1325); lean_dec(x_1319); -x_1333 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1333 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1334 = l_unreachable_x21___rarg(x_1333); x_5 = x_1334; goto block_89; @@ -19545,7 +19653,7 @@ if (x_1335 == 0) lean_object* x_1336; lean_object* x_1337; lean_dec(x_1325); lean_dec(x_1319); -x_1336 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1336 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1337 = l_unreachable_x21___rarg(x_1336); x_5 = x_1337; goto block_89; @@ -19565,7 +19673,7 @@ if (x_1341 == 0) { lean_object* x_1342; lean_object* x_1343; lean_dec(x_1319); -x_1342 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1342 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1343 = l_unreachable_x21___rarg(x_1342); x_5 = x_1343; goto block_89; @@ -19615,7 +19723,7 @@ lean_dec(x_1322); lean_dec(x_1321); lean_dec(x_1320); lean_dec(x_1319); -x_1355 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1355 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1356 = l_unreachable_x21___rarg(x_1355); x_5 = x_1356; goto block_89; @@ -19629,7 +19737,7 @@ lean_dec(x_1322); lean_dec(x_1321); lean_dec(x_1320); lean_dec(x_1319); -x_1357 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1357 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1358 = l_unreachable_x21___rarg(x_1357); x_5 = x_1358; goto block_89; @@ -19642,7 +19750,7 @@ lean_dec(x_1322); lean_dec(x_1321); lean_dec(x_1320); lean_dec(x_1319); -x_1359 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1359 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1360 = l_unreachable_x21___rarg(x_1359); x_5 = x_1360; goto block_89; @@ -19654,7 +19762,7 @@ lean_object* x_1361; lean_object* x_1362; lean_dec(x_1321); lean_dec(x_1320); lean_dec(x_1319); -x_1361 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1361 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1362 = l_unreachable_x21___rarg(x_1361); x_5 = x_1362; goto block_89; @@ -19665,7 +19773,7 @@ else lean_object* x_1363; lean_object* x_1364; lean_dec(x_1320); lean_dec(x_1319); -x_1363 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1363 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1364 = l_unreachable_x21___rarg(x_1363); x_5 = x_1364; goto block_89; @@ -19728,7 +19836,7 @@ lean_dec(x_1386); x_1388 = l_Lean_Syntax_getArg(x_1387, x_1366); lean_dec(x_1387); lean_inc(x_2); -x_1389 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1388, x_2, x_3); +x_1389 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1388, x_2, x_3); if (lean_obj_tag(x_1389) == 0) { lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; uint8_t x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; uint8_t x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; @@ -19835,7 +19943,7 @@ lean_ctor_set(x_1424, 6, x_1415); lean_ctor_set(x_1424, 7, x_1416); lean_ctor_set(x_1424, 8, x_1417); lean_ctor_set_uint8(x_1424, sizeof(void*)*9, x_1418); -x_1425 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1408, x_1424, x_1399); +x_1425 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1408, x_1424, x_1399); if (lean_obj_tag(x_1425) == 0) { lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; @@ -19935,7 +20043,7 @@ lean_inc(x_1445); x_1446 = lean_ctor_get(x_1444, 1); lean_inc(x_1446); lean_dec(x_1444); -x_1447 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_1447 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_1448 = 0; lean_inc_n(x_1443, 2); x_1449 = lean_local_ctx_mk_local_decl(x_1445, x_1443, x_1443, x_1447, x_1448); @@ -20028,7 +20136,7 @@ lean_ctor_set(x_1477, 6, x_1468); lean_ctor_set(x_1477, 7, x_1469); lean_ctor_set(x_1477, 8, x_1470); lean_ctor_set_uint8(x_1477, sizeof(void*)*9, x_1471); -x_1478 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1461, x_1477, x_1452); +x_1478 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1461, x_1477, x_1452); if (lean_obj_tag(x_1478) == 0) { lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; @@ -20098,7 +20206,7 @@ lean_inc(x_1493); x_1494 = lean_ctor_get(x_1492, 1); lean_inc(x_1494); lean_dec(x_1492); -x_1495 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_1495 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_1496 = 0; lean_inc_n(x_1491, 2); x_1497 = lean_local_ctx_mk_local_decl(x_1493, x_1491, x_1491, x_1495, x_1496); @@ -20191,7 +20299,7 @@ lean_ctor_set(x_1525, 6, x_1516); lean_ctor_set(x_1525, 7, x_1517); lean_ctor_set(x_1525, 8, x_1518); lean_ctor_set_uint8(x_1525, sizeof(void*)*9, x_1519); -x_1526 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1509, x_1525, x_1500); +x_1526 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1509, x_1525, x_1500); if (lean_obj_tag(x_1526) == 0) { lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; @@ -20323,7 +20431,7 @@ if (lean_is_exclusive(x_1546)) { x_1556 = lean_ctor_get(x_1552, 1); lean_inc(x_1556); lean_dec(x_1552); -x_1557 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1(x_112, x_1553, x_1556); +x_1557 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_112, x_1553, x_1556); if (lean_is_scalar(x_1555)) { x_1558 = lean_alloc_ctor(0, 2, 0); } else { @@ -20349,7 +20457,7 @@ if (lean_is_exclusive(x_1546)) { x_1561 = lean_ctor_get(x_1552, 1); lean_inc(x_1561); lean_dec(x_1552); -x_1562 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__2(x_112, x_1553, x_1561); +x_1562 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_112, x_1553, x_1561); if (lean_is_scalar(x_1560)) { x_1563 = lean_alloc_ctor(0, 2, 0); } else { @@ -20375,7 +20483,7 @@ if (lean_is_exclusive(x_1546)) { x_1566 = lean_ctor_get(x_1552, 1); lean_inc(x_1566); lean_dec(x_1552); -x_1567 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__3(x_112, x_1553, x_1566); +x_1567 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_112, x_1553, x_1566); if (lean_is_scalar(x_1565)) { x_1568 = lean_alloc_ctor(0, 2, 0); } else { @@ -20401,7 +20509,7 @@ if (lean_is_exclusive(x_1546)) { x_1571 = lean_ctor_get(x_1552, 1); lean_inc(x_1571); lean_dec(x_1552); -x_1572 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__4(x_112, x_1553, x_1571); +x_1572 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_112, x_1553, x_1571); if (lean_is_scalar(x_1570)) { x_1573 = lean_alloc_ctor(0, 2, 0); } else { @@ -20431,7 +20539,7 @@ x_1577 = lean_ctor_get(x_1553, 0); lean_inc(x_1577); lean_dec(x_1553); x_1578 = l_Lean_mkConst(x_1577, x_1545); -x_1579 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__5(x_112, x_1578, x_1576); +x_1579 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_112, x_1578, x_1576); if (lean_is_scalar(x_1575)) { x_1580 = lean_alloc_ctor(0, 2, 0); } else { @@ -20457,7 +20565,7 @@ if (lean_is_exclusive(x_1546)) { x_1583 = lean_ctor_get(x_1552, 1); lean_inc(x_1583); lean_dec(x_1552); -x_1584 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__6(x_112, x_1553, x_1583); +x_1584 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_112, x_1553, x_1583); if (lean_is_scalar(x_1582)) { x_1585 = lean_alloc_ctor(0, 2, 0); } else { @@ -20483,7 +20591,7 @@ if (lean_is_exclusive(x_1546)) { x_1588 = lean_ctor_get(x_1552, 1); lean_inc(x_1588); lean_dec(x_1552); -x_1589 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__7(x_112, x_1553, x_1588); +x_1589 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_112, x_1553, x_1588); if (lean_is_scalar(x_1587)) { x_1590 = lean_alloc_ctor(0, 2, 0); } else { @@ -20509,7 +20617,7 @@ if (lean_is_exclusive(x_1546)) { x_1593 = lean_ctor_get(x_1552, 1); lean_inc(x_1593); lean_dec(x_1552); -x_1594 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__8(x_112, x_1553, x_1593); +x_1594 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_112, x_1553, x_1593); if (lean_is_scalar(x_1592)) { x_1595 = lean_alloc_ctor(0, 2, 0); } else { @@ -20535,7 +20643,7 @@ if (lean_is_exclusive(x_1546)) { x_1598 = lean_ctor_get(x_1552, 1); lean_inc(x_1598); lean_dec(x_1552); -x_1599 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__9(x_112, x_1553, x_1598); +x_1599 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_112, x_1553, x_1598); if (lean_is_scalar(x_1597)) { x_1600 = lean_alloc_ctor(0, 2, 0); } else { @@ -20561,7 +20669,7 @@ if (lean_is_exclusive(x_1546)) { x_1603 = lean_ctor_get(x_1552, 1); lean_inc(x_1603); lean_dec(x_1552); -x_1604 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__10(x_112, x_1553, x_1603); +x_1604 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_112, x_1553, x_1603); if (lean_is_scalar(x_1602)) { x_1605 = lean_alloc_ctor(0, 2, 0); } else { @@ -20587,7 +20695,7 @@ if (lean_is_exclusive(x_1546)) { x_1608 = lean_ctor_get(x_1552, 1); lean_inc(x_1608); lean_dec(x_1552); -x_1609 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__11(x_112, x_1553, x_1608); +x_1609 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_112, x_1553, x_1608); if (lean_is_scalar(x_1607)) { x_1610 = lean_alloc_ctor(0, 2, 0); } else { @@ -20613,7 +20721,7 @@ if (lean_is_exclusive(x_1546)) { x_1613 = lean_ctor_get(x_1552, 1); lean_inc(x_1613); lean_dec(x_1552); -x_1614 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__12(x_112, x_1553, x_1613); +x_1614 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_112, x_1553, x_1613); if (lean_is_scalar(x_1612)) { x_1615 = lean_alloc_ctor(0, 2, 0); } else { @@ -20639,7 +20747,7 @@ if (lean_is_exclusive(x_1546)) { x_1618 = lean_ctor_get(x_1552, 1); lean_inc(x_1618); lean_dec(x_1552); -x_1619 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__13(x_112, x_1553, x_1618); +x_1619 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_112, x_1553, x_1618); if (lean_is_scalar(x_1617)) { x_1620 = lean_alloc_ctor(0, 2, 0); } else { @@ -20772,7 +20880,7 @@ x_1644 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1644, 0, x_1643); x_1645 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1645, 0, x_1644); -x_1646 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_1646 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_1647 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1647, 0, x_1646); lean_ctor_set(x_1647, 1, x_1645); @@ -20818,7 +20926,7 @@ x_1656 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1656, 0, x_1655); x_1657 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1657, 0, x_1656); -x_1658 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_1658 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_1659 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1659, 0, x_1658); lean_ctor_set(x_1659, 1, x_1657); @@ -20910,7 +21018,7 @@ x_1686 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1686, 0, x_1685); x_1687 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1687, 0, x_1686); -x_1688 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_1688 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_1689 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1689, 0, x_1688); lean_ctor_set(x_1689, 1, x_1687); @@ -20936,7 +21044,7 @@ lean_dec(x_1692); if (lean_obj_tag(x_1694) == 0) { lean_object* x_1695; lean_object* x_1696; -x_1695 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5; +x_1695 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; x_1696 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1696, 0, x_1695); lean_ctor_set(x_1696, 1, x_3); @@ -20972,7 +21080,7 @@ lean_dec(x_1701); if (lean_obj_tag(x_1702) == 0) { lean_object* x_1703; lean_object* x_1704; -x_1703 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6; +x_1703 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; x_1704 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1704, 0, x_1703); lean_ctor_set(x_1704, 1, x_3); @@ -21006,7 +21114,7 @@ x_1710 = lean_array_get(x_1708, x_4, x_1709); x_1711 = lean_unsigned_to_nat(2u); x_1712 = lean_array_get(x_1708, x_4, x_1711); lean_dec(x_4); -x_1713 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___boxed), 6, 3); +x_1713 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_1713, 0, x_112); lean_closure_set(x_1713, 1, x_1710); lean_closure_set(x_1713, 2, x_1712); @@ -21033,7 +21141,7 @@ x_1720 = lean_array_get(x_1718, x_4, x_1719); x_1721 = lean_unsigned_to_nat(2u); x_1722 = lean_array_get(x_1718, x_4, x_1721); lean_dec(x_4); -x_1723 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___boxed), 6, 3); +x_1723 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_1723, 0, x_112); lean_closure_set(x_1723, 1, x_1720); lean_closure_set(x_1723, 2, x_1722); @@ -21106,7 +21214,7 @@ x_1748 = lean_array_get(x_1744, x_4, x_1747); x_1749 = lean_unsigned_to_nat(6u); x_1750 = lean_array_get(x_1744, x_4, x_1749); lean_dec(x_4); -x_1751 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___boxed), 7, 4); +x_1751 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_1751, 0, x_112); lean_closure_set(x_1751, 1, x_1746); lean_closure_set(x_1751, 2, x_1748); @@ -21132,7 +21240,7 @@ x_1756 = l_Lean_stxInh; x_1757 = lean_unsigned_to_nat(0u); x_1758 = lean_array_get(x_1756, x_4, x_1757); lean_inc(x_2); -x_1759 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1758, x_2, x_3); +x_1759 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1758, x_2, x_3); if (lean_obj_tag(x_1759) == 0) { lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; @@ -21144,7 +21252,7 @@ lean_dec(x_1759); x_1762 = lean_unsigned_to_nat(1u); x_1763 = lean_array_get(x_1756, x_4, x_1762); lean_dec(x_4); -x_1764 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1763, x_2, x_1761); +x_1764 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1763, x_2, x_1761); if (lean_obj_tag(x_1764) == 0) { lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; @@ -21281,7 +21389,7 @@ lean_dec(x_1788); lean_dec(x_1787); lean_dec(x_1786); lean_dec(x_1780); -x_1791 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1791 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1792 = l_unreachable_x21___rarg(x_1791); x_5 = x_1792; goto block_89; @@ -21297,7 +21405,7 @@ lean_object* x_1794; lean_object* x_1795; lean_dec(x_1787); lean_dec(x_1786); lean_dec(x_1780); -x_1794 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1794 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1795 = l_unreachable_x21___rarg(x_1794); x_5 = x_1795; goto block_89; @@ -21312,7 +21420,7 @@ if (x_1796 == 0) lean_object* x_1797; lean_object* x_1798; lean_dec(x_1786); lean_dec(x_1780); -x_1797 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1797 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1798 = l_unreachable_x21___rarg(x_1797); x_5 = x_1798; goto block_89; @@ -21332,7 +21440,7 @@ if (x_1802 == 0) { lean_object* x_1803; lean_object* x_1804; lean_dec(x_1780); -x_1803 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1803 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1804 = l_unreachable_x21___rarg(x_1803); x_5 = x_1804; goto block_89; @@ -21382,7 +21490,7 @@ lean_dec(x_1783); lean_dec(x_1782); lean_dec(x_1781); lean_dec(x_1780); -x_1816 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1816 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1817 = l_unreachable_x21___rarg(x_1816); x_5 = x_1817; goto block_89; @@ -21396,7 +21504,7 @@ lean_dec(x_1783); lean_dec(x_1782); lean_dec(x_1781); lean_dec(x_1780); -x_1818 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1818 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1819 = l_unreachable_x21___rarg(x_1818); x_5 = x_1819; goto block_89; @@ -21409,7 +21517,7 @@ lean_dec(x_1783); lean_dec(x_1782); lean_dec(x_1781); lean_dec(x_1780); -x_1820 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1820 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1821 = l_unreachable_x21___rarg(x_1820); x_5 = x_1821; goto block_89; @@ -21421,7 +21529,7 @@ lean_object* x_1822; lean_object* x_1823; lean_dec(x_1782); lean_dec(x_1781); lean_dec(x_1780); -x_1822 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1822 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1823 = l_unreachable_x21___rarg(x_1822); x_5 = x_1823; goto block_89; @@ -21432,7 +21540,7 @@ else lean_object* x_1824; lean_object* x_1825; lean_dec(x_1781); lean_dec(x_1780); -x_1824 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_1824 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_1825 = l_unreachable_x21___rarg(x_1824); x_5 = x_1825; goto block_89; @@ -21495,7 +21603,7 @@ lean_dec(x_1847); x_1849 = l_Lean_Syntax_getArg(x_1848, x_1827); lean_dec(x_1848); lean_inc(x_2); -x_1850 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1849, x_2, x_3); +x_1850 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1849, x_2, x_3); if (lean_obj_tag(x_1850) == 0) { lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; lean_object* x_1854; lean_object* x_1855; uint8_t x_1856; lean_object* x_1857; lean_object* x_1858; lean_object* x_1859; lean_object* x_1860; lean_object* x_1861; lean_object* x_1862; lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; lean_object* x_1866; lean_object* x_1867; lean_object* x_1868; lean_object* x_1869; lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; uint8_t 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; @@ -21602,7 +21710,7 @@ lean_ctor_set(x_1885, 6, x_1876); lean_ctor_set(x_1885, 7, x_1877); lean_ctor_set(x_1885, 8, x_1878); lean_ctor_set_uint8(x_1885, sizeof(void*)*9, x_1879); -x_1886 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1869, x_1885, x_1860); +x_1886 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1869, x_1885, x_1860); if (lean_obj_tag(x_1886) == 0) { lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; @@ -21702,7 +21810,7 @@ lean_inc(x_1906); x_1907 = lean_ctor_get(x_1905, 1); lean_inc(x_1907); lean_dec(x_1905); -x_1908 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_1908 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_1909 = 0; lean_inc_n(x_1904, 2); x_1910 = lean_local_ctx_mk_local_decl(x_1906, x_1904, x_1904, x_1908, x_1909); @@ -21795,7 +21903,7 @@ lean_ctor_set(x_1938, 6, x_1929); lean_ctor_set(x_1938, 7, x_1930); lean_ctor_set(x_1938, 8, x_1931); lean_ctor_set_uint8(x_1938, sizeof(void*)*9, x_1932); -x_1939 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1922, x_1938, x_1913); +x_1939 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1922, x_1938, x_1913); if (lean_obj_tag(x_1939) == 0) { lean_object* x_1940; lean_object* x_1941; lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; lean_object* x_1947; @@ -21865,7 +21973,7 @@ lean_inc(x_1954); x_1955 = lean_ctor_get(x_1953, 1); lean_inc(x_1955); lean_dec(x_1953); -x_1956 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_1956 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_1957 = 0; lean_inc_n(x_1952, 2); x_1958 = lean_local_ctx_mk_local_decl(x_1954, x_1952, x_1952, x_1956, x_1957); @@ -21958,7 +22066,7 @@ lean_ctor_set(x_1986, 6, x_1977); lean_ctor_set(x_1986, 7, x_1978); lean_ctor_set(x_1986, 8, x_1979); lean_ctor_set_uint8(x_1986, sizeof(void*)*9, x_1980); -x_1987 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1970, x_1986, x_1961); +x_1987 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1970, x_1986, x_1961); if (lean_obj_tag(x_1987) == 0) { lean_object* x_1988; lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; @@ -22090,7 +22198,7 @@ if (lean_is_exclusive(x_2007)) { x_2017 = lean_ctor_get(x_2013, 1); lean_inc(x_2017); lean_dec(x_2013); -x_2018 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1(x_112, x_2014, x_2017); +x_2018 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_112, x_2014, x_2017); if (lean_is_scalar(x_2016)) { x_2019 = lean_alloc_ctor(0, 2, 0); } else { @@ -22116,7 +22224,7 @@ if (lean_is_exclusive(x_2007)) { x_2022 = lean_ctor_get(x_2013, 1); lean_inc(x_2022); lean_dec(x_2013); -x_2023 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__2(x_112, x_2014, x_2022); +x_2023 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_112, x_2014, x_2022); if (lean_is_scalar(x_2021)) { x_2024 = lean_alloc_ctor(0, 2, 0); } else { @@ -22142,7 +22250,7 @@ if (lean_is_exclusive(x_2007)) { x_2027 = lean_ctor_get(x_2013, 1); lean_inc(x_2027); lean_dec(x_2013); -x_2028 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__3(x_112, x_2014, x_2027); +x_2028 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_112, x_2014, x_2027); if (lean_is_scalar(x_2026)) { x_2029 = lean_alloc_ctor(0, 2, 0); } else { @@ -22168,7 +22276,7 @@ if (lean_is_exclusive(x_2007)) { x_2032 = lean_ctor_get(x_2013, 1); lean_inc(x_2032); lean_dec(x_2013); -x_2033 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__4(x_112, x_2014, x_2032); +x_2033 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_112, x_2014, x_2032); if (lean_is_scalar(x_2031)) { x_2034 = lean_alloc_ctor(0, 2, 0); } else { @@ -22198,7 +22306,7 @@ x_2038 = lean_ctor_get(x_2014, 0); lean_inc(x_2038); lean_dec(x_2014); x_2039 = l_Lean_mkConst(x_2038, x_2006); -x_2040 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__5(x_112, x_2039, x_2037); +x_2040 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_112, x_2039, x_2037); if (lean_is_scalar(x_2036)) { x_2041 = lean_alloc_ctor(0, 2, 0); } else { @@ -22224,7 +22332,7 @@ if (lean_is_exclusive(x_2007)) { x_2044 = lean_ctor_get(x_2013, 1); lean_inc(x_2044); lean_dec(x_2013); -x_2045 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__6(x_112, x_2014, x_2044); +x_2045 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_112, x_2014, x_2044); if (lean_is_scalar(x_2043)) { x_2046 = lean_alloc_ctor(0, 2, 0); } else { @@ -22250,7 +22358,7 @@ if (lean_is_exclusive(x_2007)) { x_2049 = lean_ctor_get(x_2013, 1); lean_inc(x_2049); lean_dec(x_2013); -x_2050 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__7(x_112, x_2014, x_2049); +x_2050 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_112, x_2014, x_2049); if (lean_is_scalar(x_2048)) { x_2051 = lean_alloc_ctor(0, 2, 0); } else { @@ -22276,7 +22384,7 @@ if (lean_is_exclusive(x_2007)) { x_2054 = lean_ctor_get(x_2013, 1); lean_inc(x_2054); lean_dec(x_2013); -x_2055 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__8(x_112, x_2014, x_2054); +x_2055 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_112, x_2014, x_2054); if (lean_is_scalar(x_2053)) { x_2056 = lean_alloc_ctor(0, 2, 0); } else { @@ -22302,7 +22410,7 @@ if (lean_is_exclusive(x_2007)) { x_2059 = lean_ctor_get(x_2013, 1); lean_inc(x_2059); lean_dec(x_2013); -x_2060 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__9(x_112, x_2014, x_2059); +x_2060 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_112, x_2014, x_2059); if (lean_is_scalar(x_2058)) { x_2061 = lean_alloc_ctor(0, 2, 0); } else { @@ -22328,7 +22436,7 @@ if (lean_is_exclusive(x_2007)) { x_2064 = lean_ctor_get(x_2013, 1); lean_inc(x_2064); lean_dec(x_2013); -x_2065 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__10(x_112, x_2014, x_2064); +x_2065 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_112, x_2014, x_2064); if (lean_is_scalar(x_2063)) { x_2066 = lean_alloc_ctor(0, 2, 0); } else { @@ -22354,7 +22462,7 @@ if (lean_is_exclusive(x_2007)) { x_2069 = lean_ctor_get(x_2013, 1); lean_inc(x_2069); lean_dec(x_2013); -x_2070 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__11(x_112, x_2014, x_2069); +x_2070 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_112, x_2014, x_2069); if (lean_is_scalar(x_2068)) { x_2071 = lean_alloc_ctor(0, 2, 0); } else { @@ -22380,7 +22488,7 @@ if (lean_is_exclusive(x_2007)) { x_2074 = lean_ctor_get(x_2013, 1); lean_inc(x_2074); lean_dec(x_2013); -x_2075 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__12(x_112, x_2014, x_2074); +x_2075 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_112, x_2014, x_2074); if (lean_is_scalar(x_2073)) { x_2076 = lean_alloc_ctor(0, 2, 0); } else { @@ -22406,7 +22514,7 @@ if (lean_is_exclusive(x_2007)) { x_2079 = lean_ctor_get(x_2013, 1); lean_inc(x_2079); lean_dec(x_2013); -x_2080 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__13(x_112, x_2014, x_2079); +x_2080 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_112, x_2014, x_2079); if (lean_is_scalar(x_2078)) { x_2081 = lean_alloc_ctor(0, 2, 0); } else { @@ -22558,7 +22666,7 @@ x_2110 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2110, 0, x_2109); x_2111 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2111, 0, x_2110); -x_2112 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_2112 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_2113 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_2113, 0, x_2112); lean_ctor_set(x_2113, 1, x_2111); @@ -22611,7 +22719,7 @@ x_2123 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2123, 0, x_2122); x_2124 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2124, 0, x_2123); -x_2125 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_2125 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_2126 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_2126, 0, x_2125); lean_ctor_set(x_2126, 1, x_2124); @@ -22709,7 +22817,7 @@ x_2154 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2154, 0, x_2153); x_2155 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2155, 0, x_2154); -x_2156 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_2156 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_2157 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_2157, 0, x_2156); lean_ctor_set(x_2157, 1, x_2155); @@ -22735,7 +22843,7 @@ lean_dec(x_2160); if (lean_obj_tag(x_2162) == 0) { lean_object* x_2163; lean_object* x_2164; -x_2163 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5; +x_2163 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; x_2164 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2164, 0, x_2163); lean_ctor_set(x_2164, 1, x_3); @@ -22771,7 +22879,7 @@ lean_dec(x_2169); if (lean_obj_tag(x_2170) == 0) { lean_object* x_2171; lean_object* x_2172; -x_2171 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6; +x_2171 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; x_2172 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2172, 0, x_2171); lean_ctor_set(x_2172, 1, x_3); @@ -22805,7 +22913,7 @@ x_2178 = lean_array_get(x_2176, x_4, x_2177); x_2179 = lean_unsigned_to_nat(2u); x_2180 = lean_array_get(x_2176, x_4, x_2179); lean_dec(x_4); -x_2181 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___boxed), 6, 3); +x_2181 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_2181, 0, x_112); lean_closure_set(x_2181, 1, x_2178); lean_closure_set(x_2181, 2, x_2180); @@ -22832,7 +22940,7 @@ x_2188 = lean_array_get(x_2186, x_4, x_2187); x_2189 = lean_unsigned_to_nat(2u); x_2190 = lean_array_get(x_2186, x_4, x_2189); lean_dec(x_4); -x_2191 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___boxed), 6, 3); +x_2191 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_2191, 0, x_112); lean_closure_set(x_2191, 1, x_2188); lean_closure_set(x_2191, 2, x_2190); @@ -22905,7 +23013,7 @@ x_2216 = lean_array_get(x_2212, x_4, x_2215); x_2217 = lean_unsigned_to_nat(6u); x_2218 = lean_array_get(x_2212, x_4, x_2217); lean_dec(x_4); -x_2219 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___boxed), 7, 4); +x_2219 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_2219, 0, x_112); lean_closure_set(x_2219, 1, x_2214); lean_closure_set(x_2219, 2, x_2216); @@ -22931,7 +23039,7 @@ x_2224 = l_Lean_stxInh; x_2225 = lean_unsigned_to_nat(0u); x_2226 = lean_array_get(x_2224, x_4, x_2225); lean_inc(x_2); -x_2227 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_2226, x_2, x_3); +x_2227 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2226, x_2, x_3); 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; @@ -22943,7 +23051,7 @@ lean_dec(x_2227); x_2230 = lean_unsigned_to_nat(1u); x_2231 = lean_array_get(x_2224, x_4, x_2230); lean_dec(x_4); -x_2232 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_2231, x_2, x_2229); +x_2232 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2231, x_2, 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; @@ -23080,7 +23188,7 @@ lean_dec(x_2256); lean_dec(x_2255); lean_dec(x_2254); lean_dec(x_2248); -x_2259 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2259 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2260 = l_unreachable_x21___rarg(x_2259); x_5 = x_2260; goto block_89; @@ -23096,7 +23204,7 @@ lean_object* x_2262; lean_object* x_2263; lean_dec(x_2255); lean_dec(x_2254); lean_dec(x_2248); -x_2262 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2262 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2263 = l_unreachable_x21___rarg(x_2262); x_5 = x_2263; goto block_89; @@ -23111,7 +23219,7 @@ if (x_2264 == 0) lean_object* x_2265; lean_object* x_2266; lean_dec(x_2254); lean_dec(x_2248); -x_2265 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2265 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2266 = l_unreachable_x21___rarg(x_2265); x_5 = x_2266; goto block_89; @@ -23131,7 +23239,7 @@ if (x_2270 == 0) { lean_object* x_2271; lean_object* x_2272; lean_dec(x_2248); -x_2271 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2271 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2272 = l_unreachable_x21___rarg(x_2271); x_5 = x_2272; goto block_89; @@ -23181,7 +23289,7 @@ lean_dec(x_2251); lean_dec(x_2250); lean_dec(x_2249); lean_dec(x_2248); -x_2284 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2284 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2285 = l_unreachable_x21___rarg(x_2284); x_5 = x_2285; goto block_89; @@ -23195,7 +23303,7 @@ lean_dec(x_2251); lean_dec(x_2250); lean_dec(x_2249); lean_dec(x_2248); -x_2286 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2286 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2287 = l_unreachable_x21___rarg(x_2286); x_5 = x_2287; goto block_89; @@ -23208,7 +23316,7 @@ lean_dec(x_2251); lean_dec(x_2250); lean_dec(x_2249); lean_dec(x_2248); -x_2288 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2288 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2289 = l_unreachable_x21___rarg(x_2288); x_5 = x_2289; goto block_89; @@ -23220,7 +23328,7 @@ lean_object* x_2290; lean_object* x_2291; lean_dec(x_2250); lean_dec(x_2249); lean_dec(x_2248); -x_2290 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2290 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2291 = l_unreachable_x21___rarg(x_2290); x_5 = x_2291; goto block_89; @@ -23231,7 +23339,7 @@ else lean_object* x_2292; lean_object* x_2293; lean_dec(x_2249); lean_dec(x_2248); -x_2292 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7; +x_2292 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; x_2293 = l_unreachable_x21___rarg(x_2292); x_5 = x_2293; goto block_89; @@ -23294,7 +23402,7 @@ lean_dec(x_2315); x_2317 = l_Lean_Syntax_getArg(x_2316, x_2295); lean_dec(x_2316); lean_inc(x_2); -x_2318 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_2317, x_2, x_3); +x_2318 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2317, x_2, x_3); if (lean_obj_tag(x_2318) == 0) { lean_object* x_2319; lean_object* x_2320; lean_object* x_2321; lean_object* x_2322; lean_object* x_2323; uint8_t x_2324; lean_object* x_2325; lean_object* x_2326; lean_object* x_2327; lean_object* x_2328; lean_object* x_2329; lean_object* x_2330; lean_object* x_2331; lean_object* x_2332; lean_object* x_2333; lean_object* x_2334; lean_object* x_2335; lean_object* x_2336; lean_object* x_2337; lean_object* x_2338; lean_object* x_2339; lean_object* x_2340; lean_object* x_2341; lean_object* x_2342; lean_object* x_2343; lean_object* x_2344; lean_object* x_2345; lean_object* x_2346; uint8_t 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; @@ -23401,7 +23509,7 @@ lean_ctor_set(x_2353, 6, x_2344); lean_ctor_set(x_2353, 7, x_2345); lean_ctor_set(x_2353, 8, x_2346); lean_ctor_set_uint8(x_2353, sizeof(void*)*9, x_2347); -x_2354 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_2337, x_2353, x_2328); +x_2354 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2337, x_2353, x_2328); if (lean_obj_tag(x_2354) == 0) { lean_object* x_2355; lean_object* x_2356; lean_object* x_2357; lean_object* x_2358; lean_object* x_2359; lean_object* x_2360; lean_object* x_2361; lean_object* x_2362; @@ -23501,7 +23609,7 @@ lean_inc(x_2374); x_2375 = lean_ctor_get(x_2373, 1); lean_inc(x_2375); lean_dec(x_2373); -x_2376 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_2376 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_2377 = 0; lean_inc_n(x_2372, 2); x_2378 = lean_local_ctx_mk_local_decl(x_2374, x_2372, x_2372, x_2376, x_2377); @@ -23594,7 +23702,7 @@ lean_ctor_set(x_2406, 6, x_2397); lean_ctor_set(x_2406, 7, x_2398); lean_ctor_set(x_2406, 8, x_2399); lean_ctor_set_uint8(x_2406, sizeof(void*)*9, x_2400); -x_2407 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_2390, x_2406, x_2381); +x_2407 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2390, x_2406, x_2381); 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; @@ -23664,7 +23772,7 @@ lean_inc(x_2422); x_2423 = lean_ctor_get(x_2421, 1); lean_inc(x_2423); lean_dec(x_2421); -x_2424 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_2424 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_2425 = 0; lean_inc_n(x_2420, 2); x_2426 = lean_local_ctx_mk_local_decl(x_2422, x_2420, x_2420, x_2424, x_2425); @@ -23757,7 +23865,7 @@ lean_ctor_set(x_2454, 6, x_2445); lean_ctor_set(x_2454, 7, x_2446); lean_ctor_set(x_2454, 8, x_2447); lean_ctor_set_uint8(x_2454, sizeof(void*)*9, x_2448); -x_2455 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_2438, x_2454, x_2429); +x_2455 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2438, x_2454, x_2429); if (lean_obj_tag(x_2455) == 0) { lean_object* x_2456; lean_object* x_2457; lean_object* x_2458; lean_object* x_2459; lean_object* x_2460; lean_object* x_2461; lean_object* x_2462; lean_object* x_2463; @@ -23889,7 +23997,7 @@ if (lean_is_exclusive(x_2475)) { x_2485 = lean_ctor_get(x_2481, 1); lean_inc(x_2485); lean_dec(x_2481); -x_2486 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1(x_112, x_2482, x_2485); +x_2486 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_112, x_2482, x_2485); if (lean_is_scalar(x_2484)) { x_2487 = lean_alloc_ctor(0, 2, 0); } else { @@ -23915,7 +24023,7 @@ if (lean_is_exclusive(x_2475)) { x_2490 = lean_ctor_get(x_2481, 1); lean_inc(x_2490); lean_dec(x_2481); -x_2491 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__2(x_112, x_2482, x_2490); +x_2491 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_112, x_2482, x_2490); if (lean_is_scalar(x_2489)) { x_2492 = lean_alloc_ctor(0, 2, 0); } else { @@ -23941,7 +24049,7 @@ if (lean_is_exclusive(x_2475)) { x_2495 = lean_ctor_get(x_2481, 1); lean_inc(x_2495); lean_dec(x_2481); -x_2496 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__3(x_112, x_2482, x_2495); +x_2496 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_112, x_2482, x_2495); if (lean_is_scalar(x_2494)) { x_2497 = lean_alloc_ctor(0, 2, 0); } else { @@ -23967,7 +24075,7 @@ if (lean_is_exclusive(x_2475)) { x_2500 = lean_ctor_get(x_2481, 1); lean_inc(x_2500); lean_dec(x_2481); -x_2501 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__4(x_112, x_2482, x_2500); +x_2501 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_112, x_2482, x_2500); if (lean_is_scalar(x_2499)) { x_2502 = lean_alloc_ctor(0, 2, 0); } else { @@ -23997,7 +24105,7 @@ x_2506 = lean_ctor_get(x_2482, 0); lean_inc(x_2506); lean_dec(x_2482); x_2507 = l_Lean_mkConst(x_2506, x_2474); -x_2508 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__5(x_112, x_2507, x_2505); +x_2508 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_112, x_2507, x_2505); if (lean_is_scalar(x_2504)) { x_2509 = lean_alloc_ctor(0, 2, 0); } else { @@ -24023,7 +24131,7 @@ if (lean_is_exclusive(x_2475)) { x_2512 = lean_ctor_get(x_2481, 1); lean_inc(x_2512); lean_dec(x_2481); -x_2513 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__6(x_112, x_2482, x_2512); +x_2513 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_112, x_2482, x_2512); if (lean_is_scalar(x_2511)) { x_2514 = lean_alloc_ctor(0, 2, 0); } else { @@ -24049,7 +24157,7 @@ if (lean_is_exclusive(x_2475)) { x_2517 = lean_ctor_get(x_2481, 1); lean_inc(x_2517); lean_dec(x_2481); -x_2518 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__7(x_112, x_2482, x_2517); +x_2518 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_112, x_2482, x_2517); if (lean_is_scalar(x_2516)) { x_2519 = lean_alloc_ctor(0, 2, 0); } else { @@ -24075,7 +24183,7 @@ if (lean_is_exclusive(x_2475)) { x_2522 = lean_ctor_get(x_2481, 1); lean_inc(x_2522); lean_dec(x_2481); -x_2523 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__8(x_112, x_2482, x_2522); +x_2523 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_112, x_2482, x_2522); if (lean_is_scalar(x_2521)) { x_2524 = lean_alloc_ctor(0, 2, 0); } else { @@ -24101,7 +24209,7 @@ if (lean_is_exclusive(x_2475)) { x_2527 = lean_ctor_get(x_2481, 1); lean_inc(x_2527); lean_dec(x_2481); -x_2528 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__9(x_112, x_2482, x_2527); +x_2528 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_112, x_2482, x_2527); if (lean_is_scalar(x_2526)) { x_2529 = lean_alloc_ctor(0, 2, 0); } else { @@ -24127,7 +24235,7 @@ if (lean_is_exclusive(x_2475)) { x_2532 = lean_ctor_get(x_2481, 1); lean_inc(x_2532); lean_dec(x_2481); -x_2533 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__10(x_112, x_2482, x_2532); +x_2533 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_112, x_2482, x_2532); if (lean_is_scalar(x_2531)) { x_2534 = lean_alloc_ctor(0, 2, 0); } else { @@ -24153,7 +24261,7 @@ if (lean_is_exclusive(x_2475)) { x_2537 = lean_ctor_get(x_2481, 1); lean_inc(x_2537); lean_dec(x_2481); -x_2538 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__11(x_112, x_2482, x_2537); +x_2538 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_112, x_2482, x_2537); if (lean_is_scalar(x_2536)) { x_2539 = lean_alloc_ctor(0, 2, 0); } else { @@ -24179,7 +24287,7 @@ if (lean_is_exclusive(x_2475)) { x_2542 = lean_ctor_get(x_2481, 1); lean_inc(x_2542); lean_dec(x_2481); -x_2543 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__12(x_112, x_2482, x_2542); +x_2543 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_112, x_2482, x_2542); if (lean_is_scalar(x_2541)) { x_2544 = lean_alloc_ctor(0, 2, 0); } else { @@ -24205,7 +24313,7 @@ if (lean_is_exclusive(x_2475)) { x_2547 = lean_ctor_get(x_2481, 1); lean_inc(x_2547); lean_dec(x_2481); -x_2548 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__13(x_112, x_2482, x_2547); +x_2548 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_112, x_2482, x_2547); if (lean_is_scalar(x_2546)) { x_2549 = lean_alloc_ctor(0, 2, 0); } else { @@ -24324,7 +24432,7 @@ x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); lean_inc(x_2); -x_8 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_7, x_2, x_3); +x_8 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_7, x_2, x_3); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -24339,7 +24447,7 @@ lean_inc(x_12); x_13 = lean_ctor_get(x_11, 1); lean_inc(x_13); lean_dec(x_11); -x_14 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_14 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; lean_inc_n(x_6, 2); x_15 = lean_local_ctx_mk_let_decl(x_12, x_6, x_6, x_14, x_9); x_16 = l_Lean_stxInh; @@ -24359,7 +24467,7 @@ x_22 = lean_ctor_get(x_20, 1); lean_dec(x_22); lean_inc(x_15); lean_ctor_set(x_20, 1, x_15); -x_23 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_18, x_2, x_13); +x_23 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_18, x_2, x_13); if (lean_obj_tag(x_23) == 0) { uint8_t x_24; @@ -24436,7 +24544,7 @@ lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_15); lean_ctor_set(x_43, 2, x_42); lean_ctor_set(x_2, 0, x_43); -x_44 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_18, x_2, x_13); +x_44 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_18, x_2, x_13); if (lean_obj_tag(x_44) == 0) { lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; @@ -24551,7 +24659,7 @@ lean_ctor_set(x_71, 6, x_63); lean_ctor_set(x_71, 7, x_64); lean_ctor_set(x_71, 8, x_65); lean_ctor_set_uint8(x_71, sizeof(void*)*9, x_66); -x_72 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_18, x_71, x_13); +x_72 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_18, x_71, x_13); if (lean_obj_tag(x_72) == 0) { lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; @@ -24646,7 +24754,7 @@ x_94 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_94, 0, x_93); x_95 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_95, 0, x_94); -x_96 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3; +x_96 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; x_97 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_95); @@ -24657,38 +24765,38 @@ return x_98; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Quotation_13__toPreterm(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1, x_2, x_3); return x_4; } } @@ -24749,7 +24857,7 @@ return x_20; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -24764,7 +24872,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_2, 1); lean_inc(x_4); lean_dec(x_2); -x_5 = l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder; +x_5 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; x_6 = 0; lean_inc(x_3); x_7 = lean_local_ctx_mk_local_decl(x_1, x_3, x_3, x_5, x_6); @@ -24774,7 +24882,7 @@ goto _start; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -24797,7 +24905,7 @@ lean_inc(x_1); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_5); lean_ctor_set(x_7, 1, x_1); -x_8 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___spec__2(x_1, x_6); +x_8 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(x_1, x_6); lean_ctor_set(x_2, 1, x_8); lean_ctor_set(x_2, 0, x_7); return x_2; @@ -24814,7 +24922,7 @@ lean_inc(x_1); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_1); -x_12 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___spec__2(x_1, x_10); +x_12 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(x_1, x_10); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -24823,7 +24931,7 @@ return x_13; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -24832,7 +24940,7 @@ x_2 = lean_mk_empty_local_ctx(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -24841,7 +24949,7 @@ x_2 = l_Lean_FileMap_ofString(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3() { _start: { lean_object* x_1; @@ -24849,7 +24957,7 @@ x_1 = lean_mk_string("foo"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -24859,7 +24967,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; @@ -24870,8 +24978,8 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 2); lean_inc(x_5); lean_dec(x_1); -x_6 = l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__1; -x_7 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___spec__1(x_6, x_4); +x_6 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1; +x_7 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__1(x_6, x_4); x_8 = l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1; x_9 = l_Array_empty___closed__1; x_10 = lean_alloc_ctor(0, 3, 0); @@ -24881,9 +24989,9 @@ lean_ctor_set(x_10, 2, x_9); lean_inc(x_3); x_11 = lean_get_namespace(x_3); x_12 = lean_box(0); -x_13 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___spec__2(x_12, x_5); -x_14 = l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__3; -x_15 = l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__2; +x_13 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(x_12, x_5); +x_14 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3; +x_15 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2; x_16 = lean_unsigned_to_nat(0u); x_17 = 1; x_18 = lean_alloc_ctor(0, 9, 1); @@ -24948,17 +25056,17 @@ return x_33; else { lean_object* x_34; -x_34 = l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__4; +x_34 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4; return x_34; } } } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg), 2, 0); return x_2; } } @@ -24966,7 +25074,7 @@ lean_object* _init_l_Lean_Elab_Term_oldExpandStxQuot___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main), 3, 0); return x_1; } } @@ -24980,7 +25088,7 @@ x_4 = l_Lean_Elab_Term_oldExpandStxQuot___closed__1; x_5 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg), 4, 2); lean_closure_set(x_5, 0, x_3); lean_closure_set(x_5, 1, x_4); -x_6 = l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg(x_1, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(x_1, x_5); return x_6; } } @@ -25126,7 +25234,7 @@ lean_object* lean_get_antiquot_vars(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_3 = lean_alloc_closure((void*)(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___spec__1___boxed), 3, 1); +x_3 = lean_alloc_closure((void*)(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1___boxed), 3, 1); lean_closure_set(x_3, 0, x_2); x_4 = l_Lean_Elab_Term_oldGetAntiquotVars___closed__1; x_5 = lean_alloc_closure((void*)(l_ReaderT_map___at_Lean_Elab_Term_oldGetAntiquotVars___spec__1___rarg), 4, 2); @@ -25136,7 +25244,7 @@ x_6 = l_Lean_Elab_Term_oldGetAntiquotVars___closed__2; x_7 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg), 4, 2); lean_closure_set(x_7, 0, x_5); lean_closure_set(x_7, 1, x_6); -x_8 = l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg(x_1, x_7); +x_8 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(x_1, x_7); return x_8; } } @@ -25149,7 +25257,49 @@ lean_dec(x_2); return x_4; } } -lean_object* l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_1, 1); +x_6 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_4); +x_7 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_5); +lean_ctor_set(x_1, 1, x_7); +lean_ctor_set(x_1, 0, x_6); +return x_1; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +lean_inc(x_9); +lean_inc(x_8); +lean_dec(x_1); +x_10 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_8); +x_11 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +return x_12; +} +} +} +} +lean_object* l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -25166,87 +25316,57 @@ uint8_t x_5; x_5 = !lean_is_exclusive(x_3); if (x_5 == 0) { -lean_object* x_6; uint8_t x_7; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; x_6 = lean_ctor_get(x_3, 0); -x_7 = !lean_is_exclusive(x_6); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_8 = lean_ctor_get(x_3, 1); -x_9 = lean_ctor_get(x_6, 1); -lean_inc(x_2); -x_10 = lean_array_push(x_2, x_9); -lean_inc(x_1); -x_11 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_11, 0, x_1); -lean_ctor_set(x_11, 1, x_10); -lean_ctor_set(x_6, 1, x_11); -x_12 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_1, x_2, x_8); -lean_ctor_set(x_3, 1, x_12); -return x_3; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_13 = lean_ctor_get(x_3, 1); -x_14 = lean_ctor_get(x_6, 0); -x_15 = lean_ctor_get(x_6, 1); -lean_inc(x_15); -lean_inc(x_14); +x_7 = lean_ctor_get(x_3, 1); +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_8); +x_9 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_8); +x_10 = lean_ctor_get(x_6, 1); +lean_inc(x_10); lean_dec(x_6); lean_inc(x_2); -x_16 = lean_array_push(x_2, x_15); +x_11 = lean_array_push(x_2, x_10); lean_inc(x_1); -x_17 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_17, 0, x_1); -lean_ctor_set(x_17, 1, x_16); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_14); -lean_ctor_set(x_18, 1, x_17); -x_19 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_1, x_2, x_13); -lean_ctor_set(x_3, 1, x_19); -lean_ctor_set(x_3, 0, x_18); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_1); +lean_ctor_set(x_12, 1, x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_9); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__2(x_1, x_2, x_7); +lean_ctor_set(x_3, 1, x_14); +lean_ctor_set(x_3, 0, x_13); return x_3; } -} else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_20 = lean_ctor_get(x_3, 0); -x_21 = lean_ctor_get(x_3, 1); -lean_inc(x_21); -lean_inc(x_20); +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_15 = lean_ctor_get(x_3, 0); +x_16 = lean_ctor_get(x_3, 1); +lean_inc(x_16); +lean_inc(x_15); lean_dec(x_3); -x_22 = lean_ctor_get(x_20, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_20, 1); -lean_inc(x_23); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - lean_ctor_release(x_20, 1); - x_24 = x_20; -} else { - lean_dec_ref(x_20); - x_24 = lean_box(0); -} +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +x_18 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_17); +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); lean_inc(x_2); -x_25 = lean_array_push(x_2, x_23); +x_20 = lean_array_push(x_2, x_19); lean_inc(x_1); -x_26 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_25); -if (lean_is_scalar(x_24)) { - x_27 = lean_alloc_ctor(0, 2, 0); -} else { - x_27 = x_24; -} -lean_ctor_set(x_27, 0, x_22); -lean_ctor_set(x_27, 1, x_26); -x_28 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_1, x_2, 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; +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_1); +lean_ctor_set(x_21, 1, x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_18); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__2(x_1, x_2, x_16); +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; } } } @@ -25256,7 +25376,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__4; +x_2 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -25272,12 +25392,12 @@ x_7 = l_Lean_Elab_Term_oldExpandMatchSyntax___closed__1; x_8 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); -x_9 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_7, x_5, x_3); +x_9 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__2(x_7, x_5, x_3); x_10 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_10, 0, x_8); lean_ctor_set(x_10, 1, x_4); x_11 = lean_box(0); -x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___boxed), 5, 3); +x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___boxed), 5, 3); lean_closure_set(x_12, 0, x_11); lean_closure_set(x_12, 1, x_10); lean_closure_set(x_12, 2, x_9); @@ -25285,7 +25405,7 @@ x_13 = l_Lean_Elab_Term_oldExpandStxQuot___closed__1; x_14 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg), 4, 2); lean_closure_set(x_14, 0, x_12); lean_closure_set(x_14, 1, x_13); -x_15 = l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg(x_1, x_14); +x_15 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(x_1, x_14); return x_15; } } @@ -25398,134 +25518,136 @@ l_Lean_Array_HasQuote___rarg___lambda__1___closed__3 = _init_l_Lean_Array_HasQuo lean_mark_persistent(l_Lean_Array_HasQuote___rarg___lambda__1___closed__3); l_Lean_Array_HasQuote___rarg___lambda__1___closed__4 = _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__4(); lean_mark_persistent(l_Lean_Array_HasQuote___rarg___lambda__1___closed__4); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__1); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__2); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__3); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__4); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__5); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__6); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__7); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__8); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__9); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__10); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__11); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__12); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__13); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__14); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__15); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__16); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__17); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__18); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__19); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__20); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__21); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__22); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__23); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__24); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__25); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__26); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__27); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__28); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__29(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__29); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__30); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__31); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__32(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__32); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__33(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__33); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__34(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__34); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__35(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__35); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__36); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__37); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__38 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__38(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__38); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__39 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__39(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__39); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__40 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__40(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__40); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__41 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__41(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__41); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__42 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__42(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__42); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__43 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__43(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__43); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__44 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__44(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__44); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__45 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__45(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__45); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__46); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__47); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__48 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__48(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__48); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__49 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__49(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__49); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__50 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__50(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__50); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__51 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__51(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__51); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__52 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__52(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__52); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__53 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__53(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__53); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__54 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__54(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__54); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__55); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__56 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__56(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__56); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__57 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__57(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__57); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__58 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__58(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__58); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__59 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__59(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__59); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__60); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__61 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__61(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__61); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__62 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__62(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__62); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__63); -l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteSyntax___main___closed__64); +l_Lean_Elab_Term_antiquotKind_x3f___closed__1 = _init_l_Lean_Elab_Term_antiquotKind_x3f___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_antiquotKind_x3f___closed__1); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63); +l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64); l_Lean_Elab_Term_stxQuot_expand___closed__1 = _init_l_Lean_Elab_Term_stxQuot_expand___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_stxQuot_expand___closed__1); l_Lean_Elab_Term_stxQuot_expand___closed__2 = _init_l_Lean_Elab_Term_stxQuot_expand___closed__2(); @@ -25595,188 +25717,180 @@ l_Lean_Elab_Term_HeadInfo_Inhabited___closed__2 = _init_l_Lean_Elab_Term_HeadInf lean_mark_persistent(l_Lean_Elab_Term_HeadInfo_Inhabited___closed__2); l_Lean_Elab_Term_HeadInfo_Inhabited = _init_l_Lean_Elab_Term_HeadInfo_Inhabited(); lean_mark_persistent(l_Lean_Elab_Term_HeadInfo_Inhabited); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__1); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__2); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__3); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__4); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__5); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__6); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__7); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__8); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__9); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___elambda__4___closed__10); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__1 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__1(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__1); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__2 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__2(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_6__getHeadInfo___spec__2___closed__2); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__1___closed__3); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__1); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__2); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__3); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__4); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__2___closed__5); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__1); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__2); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___lambda__4___closed__3); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__1); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__2); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__3); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__4); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__5); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__6); -l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__getHeadInfo___closed__7); -l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___lambda__1___closed__3); -l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__1); -l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__2); -l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__explodeHeadPat___closed__3); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__1 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__1(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__1); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__2 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__2(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__2); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__3 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__3(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__2___closed__3); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__5___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__2 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__2(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__2); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__3 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__3(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__3); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__4 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__4(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__4); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__5 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__5(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__5); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__6 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__6(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__6); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__7 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__7(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__7); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__8 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__8(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___spec__8___closed__8); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__1); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__2); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__3); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__4); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__5); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__6); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__7); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__8); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__9); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__10); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__11); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__12); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__13); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__14); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__15); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__16); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__17); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__18); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__19); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__20); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__21); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__22); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__23); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__24); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__25); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__26); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__27); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__28); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__29(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__29); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__30(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__30); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__31(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__31); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__32(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__32); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__33(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__33); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__34(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__34); -l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__35(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__compileStxMatch___main___closed__35); -l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__1); -l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__2); -l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__3); -l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__4); -l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__5); -l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__6); -l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__7); -l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__letBindRhss___main___closed__8); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__1); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__2); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__3); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__4); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__5); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__6); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__7); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__8); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__9); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___closed__10); +l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1); +l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2); +l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3); +l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1); +l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2); +l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3); +l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1); +l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2); +l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3); +l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1(); +lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1); +l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2(); +lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2); +l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3(); +lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34); +l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35); +l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1); +l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2); +l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3); +l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4); +l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5); +l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6); +l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7); +l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8); l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__1 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__1(); lean_mark_persistent(l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__1); l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__2 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__2(); @@ -25792,54 +25906,54 @@ lean_mark_persistent(l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax___clo res = l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder___closed__1); -l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder = _init_l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__exprPlaceholder); -l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1 = _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1(); -lean_mark_persistent(l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_13__toPreterm___main___spec__1___closed__1); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__3); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__1___closed__4); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__1); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__2___closed__2); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__1); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__2); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___lambda__3___closed__3); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__1); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__2); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__3); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__4); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__5); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__6); -l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__toPreterm___main___closed__7); +l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1); +l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder = _init_l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder); +l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1 = _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1(); +lean_mark_persistent(l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6); +l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7); l_Lean_Elab_Term_oldParseExpr___closed__1 = _init_l_Lean_Elab_Term_oldParseExpr___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_oldParseExpr___closed__1); -l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__1); -l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__2); -l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__3); -l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__oldRunTermElabM___rarg___closed__4); +l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1); +l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2); +l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3); +l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4); l_Lean_Elab_Term_oldExpandStxQuot___closed__1 = _init_l_Lean_Elab_Term_oldExpandStxQuot___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_oldExpandStxQuot___closed__1); l_Lean_Elab_Term_oldGetAntiquotVars___closed__1 = _init_l_Lean_Elab_Term_oldGetAntiquotVars___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Term.c b/stage0/stdlib/Init/Lean/Elab/Term.c index 2d1ab96746..2ed10d5a7b 100644 --- a/stage0/stdlib/Init/Lean/Elab/Term.c +++ b/stage0/stdlib/Init/Lean/Elab/Term.c @@ -120,6 +120,7 @@ lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabBadCDot(lean_object*); lean_object* l_Lean_Elab_Term_unfoldDefinition_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_Elab_Term_addBuiltinTermElab___spec__15(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__3; lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__1; lean_object* lean_io_ref_get(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -173,7 +174,6 @@ lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___closed__3; lean_object* l_Lean_WHNF_unfoldDefinitionAux___at_Lean_Meta_unfoldDefinition_x3f___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Elab_Term_mkTermElabAttribute___spec__4___closed__1; extern lean_object* l_List_repr___rarg___closed__3; -lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__3; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_throwError(lean_object*); lean_object* l_Lean_Elab_Term_elabSort___boxed(lean_object*, lean_object*, lean_object*); @@ -273,7 +273,6 @@ lean_object* l___private_Init_Lean_Elab_Term_22__mkConsts(lean_object*, lean_obj uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withMVarContext(lean_object*); extern lean_object* l_Lean_Name_appendIndexAfter___closed__1; -lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__1; lean_object* l_Lean_Elab_Term_observing(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkLet___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_TermElabM_MonadLog___lambda__4(lean_object*, lean_object*, lean_object*); @@ -283,6 +282,7 @@ lean_object* l_Lean_Elab_Term_withMacroExpansion(lean_object*); lean_object* l_Lean_Elab_Term_getTraceState___rarg(lean_object*); lean_object* l_Lean_Elab_Term_State_inhabited___closed__1; extern lean_object* l_Lean_EnvExtension_Inhabited___rarg___closed__1; +lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_dbgTrace(lean_object*); extern lean_object* l_Lean_Parser_Term_id___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabArrayLit___closed__11; @@ -308,7 +308,6 @@ lean_object* l_Lean_Elab_Term_elabNum___closed__3; lean_object* l_Lean_Elab_Term_termElabAttribute___closed__1; lean_object* l_Lean_Elab_Term_mkFreshInstanceName(lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__2; lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__1___closed__9; lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__3; lean_object* l_Lean_Elab_mkMessageCore(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); @@ -520,7 +519,9 @@ lean_object* l_Lean_Elab_Term_elabStr(lean_object*, lean_object*, lean_object*, lean_object* l_Array_iterateMAux___main___at_Lean_mkAppStx___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareBuiltinTermElab___closed__5; lean_object* l___private_Init_Lean_Elab_Term_19__resolveLocalNameAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_getLCtx(lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_traceAtCmdPos(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___closed__2; @@ -746,6 +747,7 @@ lean_object* l_Lean_Elab_Term_resettingSynthInstanceCache(lean_object*); lean_object* l_HashMapImp_insert___at_Lean_Elab_Term_addBuiltinTermElab___spec__12(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_registerSyntheticMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__2; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__10; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabBadCDot___closed__3; @@ -773,6 +775,7 @@ lean_object* l_Lean_Elab_Term_TermElabM_MonadLog___lambda__2___boxed(lean_object lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Term_22__mkConsts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_liftMetaM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrayLit___closed__7; +lean_object* l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__5; lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__1; lean_object* l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__2; lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); @@ -16360,7 +16363,7 @@ lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_1 _start: { lean_object* x_1; -x_1 = lean_mk_string("resuming"); +x_1 = lean_mk_string("resuming ?"); return x_1; } } @@ -16399,7 +16402,7 @@ return x_6; } else { -lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; x_7 = lean_ctor_get(x_2, 0); lean_inc(x_7); x_8 = lean_ctor_get(x_2, 1); @@ -16415,33 +16418,41 @@ if (lean_is_exclusive(x_2)) { x_16 = l___private_Init_Lean_Elab_Term_8__postponeElabTerm___closed__1; lean_inc(x_1); x_17 = lean_name_mk_string(x_1, x_16); -x_18 = lean_ctor_get(x_7, 1); +x_18 = lean_ctor_get(x_7, 0); lean_inc(x_18); -x_44 = l_Lean_Elab_Term_getOptions(x_4, x_5); -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -x_46 = lean_ctor_get(x_44, 1); +x_19 = lean_ctor_get(x_7, 1); +lean_inc(x_19); +x_45 = l_Lean_Elab_Term_getOptions(x_4, x_5); +x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); -lean_dec(x_44); -lean_inc(x_17); -x_47 = l_Lean_checkTraceOption(x_45, x_17); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); lean_dec(x_45); -if (x_47 == 0) +lean_inc(x_17); +x_48 = l_Lean_checkTraceOption(x_46, x_17); +lean_dec(x_46); +if (x_48 == 0) { -x_19 = x_46; -goto block_43; +lean_dec(x_18); +x_20 = x_47; +goto block_44; } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__1___closed__9; +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_49 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_49, 0, x_18); +x_50 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__1___closed__9; +x_51 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); lean_inc(x_17); -x_49 = l_Lean_Elab_Term_logTrace(x_17, x_18, x_48, x_4, x_46); -x_50 = lean_ctor_get(x_49, 1); -lean_inc(x_50); -lean_dec(x_49); -x_19 = x_50; -goto block_43; +x_52 = l_Lean_Elab_Term_logTrace(x_17, x_19, x_51, x_4, x_47); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +lean_dec(x_52); +x_20 = x_53; +goto block_44; } block_15: { @@ -16469,92 +16480,92 @@ x_5 = x_11; goto _start; } } -block_43: +block_44: { -lean_object* x_20; +lean_object* x_21; lean_inc(x_4); lean_inc(x_7); -x_20 = l___private_Init_Lean_Elab_Term_13__synthesizeSyntheticMVar(x_7, x_4, x_19); -if (lean_obj_tag(x_20) == 0) +x_21 = l___private_Init_Lean_Elab_Term_13__synthesizeSyntheticMVar(x_7, x_4, x_20); +if (lean_obj_tag(x_21) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; -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; lean_object* x_26; uint8_t x_27; +x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_Elab_Term_getOptions(x_4, x_22); -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_17); -x_26 = l_Lean_checkTraceOption(x_24, x_17); -lean_dec(x_24); -if (x_26 == 0) -{ -uint8_t x_27; -lean_dec(x_18); -lean_dec(x_17); -x_27 = lean_unbox(x_21); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); lean_dec(x_21); +x_24 = l_Lean_Elab_Term_getOptions(x_4, x_23); +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +lean_inc(x_17); +x_27 = l_Lean_checkTraceOption(x_25, x_17); +lean_dec(x_25); if (x_27 == 0) { uint8_t x_28; -x_28 = 1; -x_10 = x_28; -x_11 = x_25; -goto block_15; -} -else +lean_dec(x_19); +lean_dec(x_17); +x_28 = lean_unbox(x_22); +lean_dec(x_22); +if (x_28 == 0) { uint8_t x_29; -x_29 = 0; +x_29 = 1; x_10 = x_29; -x_11 = x_25; +x_11 = x_26; goto block_15; } -} else { uint8_t x_30; -x_30 = lean_unbox(x_21); -lean_dec(x_21); -if (x_30 == 0) +x_30 = 0; +x_10 = x_30; +x_11 = x_26; +goto block_15; +} +} +else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_31 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__1___closed__3; -x_32 = l_Lean_Elab_Term_logTrace(x_17, x_18, x_31, x_4, x_25); -lean_dec(x_18); -x_33 = lean_ctor_get(x_32, 1); -lean_inc(x_33); -lean_dec(x_32); -x_34 = 1; -x_10 = x_34; -x_11 = x_33; +uint8_t x_31; +x_31 = lean_unbox(x_22); +lean_dec(x_22); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_32 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__1___closed__3; +x_33 = l_Lean_Elab_Term_logTrace(x_17, x_19, x_32, x_4, x_26); +lean_dec(x_19); +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +lean_dec(x_33); +x_35 = 1; +x_10 = x_35; +x_11 = x_34; goto block_15; } else { -lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_35 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__1___closed__6; -x_36 = l_Lean_Elab_Term_logTrace(x_17, x_18, x_35, x_4, x_25); -lean_dec(x_18); -x_37 = lean_ctor_get(x_36, 1); -lean_inc(x_37); -lean_dec(x_36); -x_38 = 0; -x_10 = x_38; -x_11 = x_37; +lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_36 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__1___closed__6; +x_37 = l_Lean_Elab_Term_logTrace(x_17, x_19, x_36, x_4, x_26); +lean_dec(x_19); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = 0; +x_10 = x_39; +x_11 = x_38; goto block_15; } } } else { -uint8_t x_39; -lean_dec(x_18); +uint8_t x_40; +lean_dec(x_19); lean_dec(x_17); lean_dec(x_9); lean_dec(x_8); @@ -16562,23 +16573,23 @@ lean_dec(x_7); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_39 = !lean_is_exclusive(x_20); -if (x_39 == 0) +x_40 = !lean_is_exclusive(x_21); +if (x_40 == 0) { -return x_20; +return x_21; } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_20, 0); -x_41 = lean_ctor_get(x_20, 1); +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_21, 0); +x_42 = lean_ctor_get(x_21, 1); +lean_inc(x_42); lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_20); -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; +lean_dec(x_21); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } } @@ -16605,14 +16616,22 @@ return x_3; lean_object* _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__1() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("resuming"); +return x_1; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__2() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Lean_Elab_Util_1__regTraceClasses___closed__2; -x_2 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__1___closed__7; +x_2 = l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__3() { _start: { lean_object* x_1; @@ -16620,21 +16639,21 @@ x_1 = lean_mk_string("resuming synthetic metavariables, mayPostpone: "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__2; -x_2 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} lean_object* _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__4() { _start: { lean_object* x_1; lean_object* x_2; x_1 = l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__3; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -16650,7 +16669,7 @@ lean_inc(x_101); x_102 = lean_ctor_get(x_100, 1); lean_inc(x_102); lean_dec(x_100); -x_103 = l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__1; +x_103 = l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__2; x_104 = l_Lean_checkTraceOption(x_101, x_103); lean_dec(x_101); if (x_104 == 0) @@ -16665,7 +16684,7 @@ x_105 = lean_ctor_get_uint8(x_1, sizeof(void*)*9); x_106 = l_Lean_fmt___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___spec__2(x_105); x_107 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_107, 0, x_106); -x_108 = l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__4; +x_108 = l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__5; x_109 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -17032,7 +17051,7 @@ x_3 = l_Lean_fmt___at___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVars return x_3; } } -lean_object* _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__1() { +lean_object* _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -17040,26 +17059,142 @@ x_1 = lean_mk_string("failed to assign default value to metavariable"); return x_1; } } -lean_object* _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__2() { +lean_object* _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__1; +x_1 = l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__3() { +lean_object* _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__2; +x_1 = l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } +lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = l_Lean_Expr_getAppFn___main(x_3); +x_7 = l_Lean_Expr_isMVar(x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +uint8_t x_8; lean_object* x_9; lean_object* x_10; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_8 = 0; +x_9 = lean_box(x_8); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_5); +return x_10; +} +else +{ +lean_object* x_11; +lean_inc(x_4); +x_11 = l_Lean_Elab_Term_isDefEq(x_1, x_3, x_2, x_4, x_5); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_unbox(x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__3; +x_16 = l_Lean_Elab_Term_throwError___rarg(x_1, x_15, x_4, x_14); +lean_dec(x_4); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +return x_16; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_16, 0); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_16); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +else +{ +uint8_t x_21; +lean_dec(x_4); +x_21 = !lean_is_exclusive(x_11); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_11, 0); +lean_dec(x_22); +x_23 = 0; +x_24 = lean_box(x_23); +lean_ctor_set(x_11, 0, x_24); +return x_11; +} +else +{ +lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; +x_25 = lean_ctor_get(x_11, 1); +lean_inc(x_25); +lean_dec(x_11); +x_26 = 0; +x_27 = lean_box(x_26); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_25); +return x_28; +} +} +} +else +{ +uint8_t x_29; +lean_dec(x_4); +x_29 = !lean_is_exclusive(x_11); +if (x_29 == 0) +{ +return x_11; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_11, 0); +x_31 = lean_ctor_get(x_11, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_11); +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; +} +} +} +} +} lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -17074,173 +17209,230 @@ return x_5; } else { -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_15; +lean_object* x_6; lean_object* x_7; x_6 = lean_ctor_get(x_1, 0); lean_inc(x_6); -x_7 = lean_ctor_get(x_1, 1); +x_7 = lean_ctor_get(x_6, 2); lean_inc(x_7); -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_8 = x_1; -} else { - lean_dec_ref(x_1); - x_8 = lean_box(0); -} -x_15 = lean_ctor_get(x_6, 2); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 3) +if (lean_obj_tag(x_7) == 3) { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec(x_15); -x_17 = lean_ctor_get(x_6, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_6, 0); -lean_inc(x_18); -x_19 = l_Lean_mkMVar(x_18); +uint8_t x_8; +x_8 = !lean_is_exclusive(x_1); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_9 = lean_ctor_get(x_1, 1); +x_10 = lean_ctor_get(x_1, 0); +lean_dec(x_10); +x_11 = lean_ctor_get(x_7, 0); +lean_inc(x_11); +lean_dec(x_7); +x_12 = lean_ctor_get(x_6, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_6, 1); +lean_inc(x_13); +lean_inc(x_12); +x_14 = l_Lean_mkMVar(x_12); +lean_inc(x_13); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Term_instantiateMVars___boxed), 4, 2); +lean_closure_set(x_15, 0, x_13); +lean_closure_set(x_15, 1, x_14); +x_16 = lean_alloc_closure((void*)(l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___boxed), 5, 2); +lean_closure_set(x_16, 0, x_13); +lean_closure_set(x_16, 1, x_11); +x_17 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg), 4, 2); +lean_closure_set(x_17, 0, x_15); +lean_closure_set(x_17, 1, x_16); lean_inc(x_3); -x_20 = l_Lean_Elab_Term_instantiateMVars(x_17, x_19, x_3, x_4); -x_21 = lean_ctor_get(x_20, 0); +x_18 = l_Lean_Elab_Term_withMVarContext___rarg(x_12, x_17, x_3, x_4); +lean_dec(x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_unbox(x_19); +lean_dec(x_19); +if (x_20 == 0) +{ +lean_object* x_21; +lean_free_object(x_1); +lean_dec(x_6); +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_Expr_getAppFn___main(x_21); -x_24 = l_Lean_Expr_isMVar(x_23); -lean_dec(x_23); -if (x_24 == 0) -{ -uint8_t x_25; -lean_dec(x_21); -lean_dec(x_17); -lean_dec(x_16); -x_25 = 0; -x_9 = x_25; -x_10 = x_22; -goto block_14; -} -else -{ -lean_object* x_26; -lean_inc(x_3); -x_26 = l_Lean_Elab_Term_isDefEq(x_17, x_21, x_16, x_3, x_22); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; uint8_t x_28; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_unbox(x_27); -lean_dec(x_27); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); -x_29 = lean_ctor_get(x_26, 1); -lean_inc(x_29); -lean_dec(x_26); -x_30 = l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__3; -x_31 = l_Lean_Elab_Term_throwError___rarg(x_17, x_30, x_3, x_29); -lean_dec(x_3); -lean_dec(x_17); -x_32 = !lean_is_exclusive(x_31); -if (x_32 == 0) -{ -return x_31; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_31, 0); -x_34 = lean_ctor_get(x_31, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_31); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -return x_35; -} -} -else -{ -lean_object* x_36; uint8_t x_37; -lean_dec(x_17); -x_36 = lean_ctor_get(x_26, 1); -lean_inc(x_36); -lean_dec(x_26); -x_37 = 0; -x_9 = x_37; -x_10 = x_36; -goto block_14; -} -} -else -{ -uint8_t x_38; -lean_dec(x_17); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_3); -lean_dec(x_2); -x_38 = !lean_is_exclusive(x_26); -if (x_38 == 0) -{ -return x_26; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_26, 0); -x_40 = lean_ctor_get(x_26, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_26); -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_15); -x_42 = 1; -x_9 = x_42; -x_10 = x_4; -goto block_14; -} -block_14: -{ -if (x_9 == 0) -{ -lean_dec(x_8); -lean_dec(x_6); -x_1 = x_7; -x_4 = x_10; +lean_dec(x_18); +x_1 = x_9; +x_4 = x_21; goto _start; } else { -lean_object* x_12; -if (lean_is_scalar(x_8)) { - x_12 = lean_alloc_ctor(1, 2, 0); -} else { - x_12 = x_8; +lean_object* x_23; +x_23 = lean_ctor_get(x_18, 1); +lean_inc(x_23); +lean_dec(x_18); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_9; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_3 = x_23; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_4 = _tmp_3; } -lean_ctor_set(x_12, 0, x_6); -lean_ctor_set(x_12, 1, x_2); -x_1 = x_7; -x_2 = x_12; -x_4 = x_10; +goto _start; +} +} +else +{ +uint8_t x_25; +lean_free_object(x_1); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +x_25 = !lean_is_exclusive(x_18); +if (x_25 == 0) +{ +return x_18; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_18, 0); +x_27 = lean_ctor_get(x_18, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_18); +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; +} +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_29 = lean_ctor_get(x_1, 1); +lean_inc(x_29); +lean_dec(x_1); +x_30 = lean_ctor_get(x_7, 0); +lean_inc(x_30); +lean_dec(x_7); +x_31 = lean_ctor_get(x_6, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_6, 1); +lean_inc(x_32); +lean_inc(x_31); +x_33 = l_Lean_mkMVar(x_31); +lean_inc(x_32); +x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Term_instantiateMVars___boxed), 4, 2); +lean_closure_set(x_34, 0, x_32); +lean_closure_set(x_34, 1, x_33); +x_35 = lean_alloc_closure((void*)(l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___boxed), 5, 2); +lean_closure_set(x_35, 0, x_32); +lean_closure_set(x_35, 1, x_30); +x_36 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg), 4, 2); +lean_closure_set(x_36, 0, x_34); +lean_closure_set(x_36, 1, x_35); +lean_inc(x_3); +x_37 = l_Lean_Elab_Term_withMVarContext___rarg(x_31, x_36, x_3, x_4); +lean_dec(x_31); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; uint8_t x_39; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_unbox(x_38); +lean_dec(x_38); +if (x_39 == 0) +{ +lean_object* x_40; +lean_dec(x_6); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_dec(x_37); +x_1 = x_29; +x_4 = x_40; +goto _start; +} +else +{ +lean_object* x_42; lean_object* x_43; +x_42 = lean_ctor_get(x_37, 1); +lean_inc(x_42); +lean_dec(x_37); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_6); +lean_ctor_set(x_43, 1, x_2); +x_1 = x_29; +x_2 = x_43; +x_4 = x_42; +goto _start; +} +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_29); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +x_45 = lean_ctor_get(x_37, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_37, 1); +lean_inc(x_46); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + x_47 = x_37; +} else { + lean_dec_ref(x_37); + x_47 = lean_box(0); +} +if (lean_is_scalar(x_47)) { + x_48 = lean_alloc_ctor(1, 2, 0); +} else { + x_48 = x_47; +} +lean_ctor_set(x_48, 0, x_45); +lean_ctor_set(x_48, 1, x_46); +return x_48; +} +} +} +else +{ +uint8_t x_49; +lean_dec(x_7); +x_49 = !lean_is_exclusive(x_1); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; +x_50 = lean_ctor_get(x_1, 1); +x_51 = lean_ctor_get(x_1, 0); +lean_dec(x_51); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_50; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_1, 1); +lean_inc(x_53); +lean_dec(x_1); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_6); +lean_ctor_set(x_54, 1, x_2); +x_1 = x_53; +x_2 = x_54; goto _start; } } @@ -17439,6 +17631,15 @@ return x_53; } } } +lean_object* l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} lean_object* _init_l_List_forM___main___at___private_Init_Lean_Elab_Term_15__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1() { _start: { @@ -21762,12 +21963,14 @@ l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__3 = _ lean_mark_persistent(l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__3); l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__4 = _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__4(); lean_mark_persistent(l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__4); -l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__1 = _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__1(); -lean_mark_persistent(l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__1); -l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__2 = _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__2(); -lean_mark_persistent(l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__2); -l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__3 = _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__3(); -lean_mark_persistent(l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___closed__3); +l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__5 = _init_l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Term_14__synthesizeSyntheticMVarsStep___closed__5); +l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__1 = _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__1(); +lean_mark_persistent(l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__1); +l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__2 = _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__2(); +lean_mark_persistent(l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__2); +l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__3 = _init_l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__3(); +lean_mark_persistent(l_List_filterAuxM___main___at_Lean_Elab_Term_synthesizeUsingDefault___spec__1___lambda__1___closed__3); l_List_forM___main___at___private_Init_Lean_Elab_Term_15__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1 = _init_l_List_forM___main___at___private_Init_Lean_Elab_Term_15__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1(); lean_mark_persistent(l_List_forM___main___at___private_Init_Lean_Elab_Term_15__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1); l_List_forM___main___at___private_Init_Lean_Elab_Term_15__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2 = _init_l_List_forM___main___at___private_Init_Lean_Elab_Term_15__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Level.c b/stage0/stdlib/Init/Lean/Level.c index e80a59feb9..01ec608d4b 100644 --- a/stage0/stdlib/Init/Lean/Level.c +++ b/stage0/stdlib/Init/Lean/Level.c @@ -3898,7 +3898,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Level_mkData___closed__2; x_2 = lean_unsigned_to_nat(419u); -x_3 = lean_unsigned_to_nat(19u); +x_3 = lean_unsigned_to_nat(20u); x_4 = l_Lean_Level_updateIMax_x21___closed__1; x_5 = l___private_Init_Util_1__mkPanicMessage(x_1, x_2, x_3, x_4); return x_5; @@ -3907,44 +3907,22 @@ return x_5; lean_object* l_Lean_Level_updateIMax_x21(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -if (lean_obj_tag(x_1) == 2) +if (lean_obj_tag(x_1) == 3) { -uint8_t x_4; -x_4 = !lean_is_exclusive(x_1); -if (x_4 == 0) -{ -lean_object* x_5; -lean_ctor_set_tag(x_1, 3); -x_5 = lean_level_update_imax(x_1, x_2, x_3); -return x_5; +lean_object* x_4; +x_4 = lean_level_update_imax(x_1, x_2, x_3); +return x_4; } else { -lean_object* x_6; lean_object* x_7; uint64_t x_8; lean_object* x_9; lean_object* x_10; -x_6 = lean_ctor_get(x_1, 0); -x_7 = lean_ctor_get(x_1, 1); -x_8 = lean_ctor_get_uint64(x_1, sizeof(void*)*2); -lean_inc(x_7); -lean_inc(x_6); -lean_dec(x_1); -x_9 = lean_alloc_ctor(3, 2, 8); -lean_ctor_set(x_9, 0, x_6); -lean_ctor_set(x_9, 1, x_7); -lean_ctor_set_uint64(x_9, sizeof(void*)*2, x_8); -x_10 = lean_level_update_imax(x_9, x_2, x_3); -return x_10; -} -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_11 = l_Lean_Level_Inhabited; -x_12 = l_Lean_Level_updateIMax_x21___closed__2; -x_13 = lean_panic_fn(x_11, x_12); -return x_13; +x_5 = l_Lean_Level_Inhabited; +x_6 = l_Lean_Level_updateIMax_x21___closed__2; +x_7 = lean_panic_fn(x_5, x_6); +return x_7; } } } diff --git a/stage0/stdlib/Init/Lean/Meta/SynthInstance.c b/stage0/stdlib/Init/Lean/Meta/SynthInstance.c index dba8d588c1..c74b3b16a9 100644 --- a/stage0/stdlib/Init/Lean/Meta/SynthInstance.c +++ b/stage0/stdlib/Init/Lean/Meta/SynthInstance.c @@ -89,7 +89,6 @@ lean_object* l_Lean_Meta_SynthInstance_resume(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); lean_object* l_Lean_Meta_SynthInstance_withMCtx(lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); -extern lean_object* l_Lean_Level_Inhabited; lean_object* l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1; extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__5; @@ -243,6 +242,7 @@ lean_object* l_HashMapImp_insert___at_Lean_Meta_SynthInstance_newSubgoal___spec_ lean_object* l_Lean_Meta_DiscrTree_getUnify___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_wakeUp___closed__2; +lean_object* lean_level_update_imax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_trySynthInstance(lean_object*, lean_object*, lean_object*, lean_object*); @@ -355,7 +355,6 @@ lean_object* l_Array_umapMAux___main___at_Lean_Meta_SynthInstance_getInstances__ lean_object* lean_name_mk_numeral(lean_object*, lean_object*); lean_object* l_HashMapImp_moveEntries___main___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_const(lean_object*, lean_object*); -extern lean_object* l_Lean_Level_updateIMax_x21___closed__2; lean_object* l_AssocList_contains___main___at_Lean_Meta_SynthInstance_newSubgoal___spec__2___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_resume___closed__2; @@ -908,148 +907,146 @@ return x_27; } case 3: { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; x_28 = lean_ctor_get(x_1, 0); lean_inc(x_28); x_29 = lean_ctor_get(x_1, 1); lean_inc(x_29); -lean_dec(x_1); lean_inc(x_2); x_30 = l_Lean_Meta_SynthInstance_MkTableKey_normLevel___main(x_28, x_2, x_3); -x_31 = lean_ctor_get(x_30, 1); +x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); lean_dec(x_30); -x_32 = l_Lean_Meta_SynthInstance_MkTableKey_normLevel___main(x_29, x_2, x_31); -x_33 = !lean_is_exclusive(x_32); -if (x_33 == 0) +x_33 = l_Lean_Meta_SynthInstance_MkTableKey_normLevel___main(x_29, x_2, x_32); +x_34 = !lean_is_exclusive(x_33); +if (x_34 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_34 = lean_ctor_get(x_32, 0); -lean_dec(x_34); -x_35 = l_Lean_Level_Inhabited; -x_36 = l_Lean_Level_updateIMax_x21___closed__2; -x_37 = lean_panic_fn(x_35, x_36); -lean_ctor_set(x_32, 0, x_37); -return x_32; +lean_object* x_35; lean_object* x_36; +x_35 = lean_ctor_get(x_33, 0); +x_36 = lean_level_update_imax(x_1, x_31, x_35); +lean_ctor_set(x_33, 0, x_36); +return x_33; } else { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_38 = lean_ctor_get(x_32, 1); +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_37 = lean_ctor_get(x_33, 0); +x_38 = lean_ctor_get(x_33, 1); lean_inc(x_38); -lean_dec(x_32); -x_39 = l_Lean_Level_Inhabited; -x_40 = l_Lean_Level_updateIMax_x21___closed__2; -x_41 = lean_panic_fn(x_39, x_40); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_38); -return x_42; +lean_inc(x_37); +lean_dec(x_33); +x_39 = lean_level_update_imax(x_1, x_31, x_37); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_38); +return x_40; } } case 5: { -lean_object* x_43; uint8_t x_44; -x_43 = lean_ctor_get(x_1, 0); -lean_inc(x_43); -x_44 = l_Lean_MetavarContext_isLevelAssignable(x_2, x_43); -if (x_44 == 0) +lean_object* x_41; uint8_t x_42; +x_41 = lean_ctor_get(x_1, 0); +lean_inc(x_41); +x_42 = l_Lean_MetavarContext_isLevelAssignable(x_2, x_41); +if (x_42 == 0) { -lean_object* x_45; -lean_dec(x_43); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_1); -lean_ctor_set(x_45, 1, x_3); -return x_45; +lean_object* x_43; +lean_dec(x_41); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_1); +lean_ctor_set(x_43, 1, x_3); +return x_43; } else { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_dec(x_1); -x_46 = lean_ctor_get(x_3, 0); +x_44 = lean_ctor_get(x_3, 0); +lean_inc(x_44); +x_45 = lean_ctor_get(x_3, 1); +lean_inc(x_45); +x_46 = lean_ctor_get(x_3, 2); lean_inc(x_46); -x_47 = lean_ctor_get(x_3, 1); -lean_inc(x_47); -x_48 = lean_ctor_get(x_3, 2); -lean_inc(x_48); -x_49 = l_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__1(x_47, x_43); -if (lean_obj_tag(x_49) == 0) +x_47 = l_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__1(x_45, x_41); +if (lean_obj_tag(x_47) == 0) { -uint8_t x_50; -x_50 = !lean_is_exclusive(x_3); -if (x_50 == 0) +uint8_t x_48; +x_48 = !lean_is_exclusive(x_3); +if (x_48 == 0) { -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_51 = lean_ctor_get(x_3, 2); -lean_dec(x_51); -x_52 = lean_ctor_get(x_3, 1); -lean_dec(x_52); -x_53 = lean_ctor_get(x_3, 0); -lean_dec(x_53); -x_54 = l_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___closed__2; -lean_inc(x_46); -x_55 = lean_name_mk_numeral(x_54, x_46); -x_56 = l_Lean_mkLevelParam(x_55); -x_57 = lean_unsigned_to_nat(1u); -x_58 = lean_nat_add(x_46, x_57); -lean_dec(x_46); -lean_inc(x_56); -x_59 = l_HashMapImp_insert___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__3(x_47, x_43, x_56); -lean_ctor_set(x_3, 1, x_59); -lean_ctor_set(x_3, 0, x_58); -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_56); -lean_ctor_set(x_60, 1, x_3); -return x_60; -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -lean_dec(x_3); -x_61 = l_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___closed__2; -lean_inc(x_46); -x_62 = lean_name_mk_numeral(x_61, x_46); -x_63 = l_Lean_mkLevelParam(x_62); -x_64 = lean_unsigned_to_nat(1u); -x_65 = lean_nat_add(x_46, x_64); -lean_dec(x_46); -lean_inc(x_63); -x_66 = l_HashMapImp_insert___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__3(x_47, x_43, x_63); -x_67 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -lean_ctor_set(x_67, 2, x_48); -x_68 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_68, 0, x_63); -lean_ctor_set(x_68, 1, x_67); -return x_68; -} -} -else -{ -lean_object* x_69; lean_object* x_70; -lean_dec(x_48); -lean_dec(x_47); -lean_dec(x_46); -lean_dec(x_43); -x_69 = lean_ctor_get(x_49, 0); -lean_inc(x_69); +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; +x_49 = lean_ctor_get(x_3, 2); lean_dec(x_49); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_3); -return x_70; +x_50 = lean_ctor_get(x_3, 1); +lean_dec(x_50); +x_51 = lean_ctor_get(x_3, 0); +lean_dec(x_51); +x_52 = l_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___closed__2; +lean_inc(x_44); +x_53 = lean_name_mk_numeral(x_52, x_44); +x_54 = l_Lean_mkLevelParam(x_53); +x_55 = lean_unsigned_to_nat(1u); +x_56 = lean_nat_add(x_44, x_55); +lean_dec(x_44); +lean_inc(x_54); +x_57 = l_HashMapImp_insert___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__3(x_45, x_41, x_54); +lean_ctor_set(x_3, 1, x_57); +lean_ctor_set(x_3, 0, x_56); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_54); +lean_ctor_set(x_58, 1, x_3); +return x_58; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_dec(x_3); +x_59 = l_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___closed__2; +lean_inc(x_44); +x_60 = lean_name_mk_numeral(x_59, x_44); +x_61 = l_Lean_mkLevelParam(x_60); +x_62 = lean_unsigned_to_nat(1u); +x_63 = lean_nat_add(x_44, x_62); +lean_dec(x_44); +lean_inc(x_61); +x_64 = l_HashMapImp_insert___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__3(x_45, x_41, x_61); +x_65 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +lean_ctor_set(x_65, 2, x_46); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_61); +lean_ctor_set(x_66, 1, x_65); +return x_66; +} +} +else +{ +lean_object* x_67; lean_object* x_68; +lean_dec(x_46); +lean_dec(x_45); +lean_dec(x_44); +lean_dec(x_41); +x_67 = lean_ctor_get(x_47, 0); +lean_inc(x_67); +lean_dec(x_47); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_3); +return x_68; } } } default: { -lean_object* x_71; +lean_object* x_69; lean_dec(x_2); -x_71 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_71, 0, x_1); -lean_ctor_set(x_71, 1, x_3); -return x_71; +x_69 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_69, 0, x_1); +lean_ctor_set(x_69, 1, x_3); +return x_69; } } } diff --git a/stage0/stdlib/Init/Lean/MetavarContext.c b/stage0/stdlib/Init/Lean/MetavarContext.c index e076466c94..c1eac1319b 100644 --- a/stage0/stdlib/Init/Lean/MetavarContext.c +++ b/stage0/stdlib/Init/Lean/MetavarContext.c @@ -124,7 +124,6 @@ uint8_t l_PersistentHashMap_contains___at_Lean_MetavarContext_isLevelAssigned___ lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_getExprAssignment_x3f___spec__2(lean_object*, size_t, lean_object*); lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_20__anyDependsOn___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Level_Inhabited; extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -343,6 +342,7 @@ uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext lean_object* l_Lean_MetavarContext_hasAssignedLevelMVar___main___boxed(lean_object*, lean_object*); lean_object* l_AssocList_replace___main___at___private_Init_Lean_MetavarContext_2__visit___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignableLevelMVar___main___boxed(lean_object*, lean_object*); +lean_object* lean_level_update_imax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter; lean_object* l___private_Init_Lean_MetavarContext_15__withFreshCache___rarg(lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_index(lean_object*); @@ -527,7 +527,6 @@ extern lean_object* l_Lean_Expr_updateForallE_x21___closed__1; lean_object* lean_name_mk_numeral(lean_object*, lean_object*); lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___lambda__1___boxed(lean_object*, lean_object*); lean_object* lean_expr_update_const(lean_object*, lean_object*); -extern lean_object* l_Lean_Level_updateIMax_x21___closed__2; lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalContext_isSubPrefixOf(lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -7139,118 +7138,116 @@ return x_24; } case 3: { -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; x_25 = lean_ctor_get(x_1, 0); lean_inc(x_25); x_26 = lean_ctor_get(x_1, 1); lean_inc(x_26); -lean_dec(x_1); x_27 = l_Lean_MetavarContext_instantiateLevelMVars___main(x_25, x_2); -x_28 = lean_ctor_get(x_27, 1); +x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); +x_29 = lean_ctor_get(x_27, 1); +lean_inc(x_29); lean_dec(x_27); -x_29 = l_Lean_MetavarContext_instantiateLevelMVars___main(x_26, x_28); -x_30 = !lean_is_exclusive(x_29); -if (x_30 == 0) +x_30 = l_Lean_MetavarContext_instantiateLevelMVars___main(x_26, x_29); +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_31 = lean_ctor_get(x_29, 0); -lean_dec(x_31); -x_32 = l_Lean_Level_Inhabited; -x_33 = l_Lean_Level_updateIMax_x21___closed__2; -x_34 = lean_panic_fn(x_32, x_33); -lean_ctor_set(x_29, 0, x_34); -return x_29; +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_30, 0); +x_33 = lean_level_update_imax(x_1, x_28, x_32); +lean_ctor_set(x_30, 0, x_33); +return x_30; } else { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_29, 1); +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_34 = lean_ctor_get(x_30, 0); +x_35 = lean_ctor_get(x_30, 1); lean_inc(x_35); -lean_dec(x_29); -x_36 = l_Lean_Level_Inhabited; -x_37 = l_Lean_Level_updateIMax_x21___closed__2; -x_38 = lean_panic_fn(x_36, x_37); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_35); -return x_39; +lean_inc(x_34); +lean_dec(x_30); +x_36 = lean_level_update_imax(x_1, x_28, x_34); +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; } } case 5: { -lean_object* x_40; lean_object* x_41; -x_40 = lean_ctor_get(x_1, 0); -lean_inc(x_40); -lean_inc(x_40); +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_1, 0); +lean_inc(x_38); +lean_inc(x_38); lean_inc(x_2); -x_41 = lean_metavar_ctx_get_level_assignment(x_2, x_40); -if (lean_obj_tag(x_41) == 0) +x_39 = lean_metavar_ctx_get_level_assignment(x_2, x_38); +if (lean_obj_tag(x_39) == 0) { -lean_object* x_42; -lean_dec(x_40); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_1); -lean_ctor_set(x_42, 1, x_2); -return x_42; +lean_object* x_40; +lean_dec(x_38); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_1); +lean_ctor_set(x_40, 1, x_2); +return x_40; } else { -lean_object* x_43; uint8_t x_44; +lean_object* x_41; uint8_t x_42; lean_dec(x_1); -x_43 = lean_ctor_get(x_41, 0); -lean_inc(x_43); -lean_dec(x_41); -x_44 = l_Lean_Level_hasMVar(x_43); -if (x_44 == 0) +x_41 = lean_ctor_get(x_39, 0); +lean_inc(x_41); +lean_dec(x_39); +x_42 = l_Lean_Level_hasMVar(x_41); +if (x_42 == 0) { -lean_object* x_45; -lean_dec(x_40); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_2); -return x_45; +lean_object* x_43; +lean_dec(x_38); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_2); +return x_43; } else { -lean_object* x_46; uint8_t x_47; -x_46 = l_Lean_MetavarContext_instantiateLevelMVars___main(x_43, x_2); -x_47 = !lean_is_exclusive(x_46); -if (x_47 == 0) +lean_object* x_44; uint8_t x_45; +x_44 = l_Lean_MetavarContext_instantiateLevelMVars___main(x_41, x_2); +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) { -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_46, 0); -x_49 = lean_ctor_get(x_46, 1); -lean_inc(x_48); -x_50 = lean_metavar_ctx_assign_level(x_49, x_40, x_48); -lean_ctor_set(x_46, 1, x_50); -return x_46; +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_44, 0); +x_47 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +x_48 = lean_metavar_ctx_assign_level(x_47, x_38, x_46); +lean_ctor_set(x_44, 1, x_48); +return x_44; } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_46, 0); -x_52 = lean_ctor_get(x_46, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_46); -lean_inc(x_51); -x_53 = lean_metavar_ctx_assign_level(x_52, x_40, x_51); -x_54 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_53); -return x_54; +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_49 = lean_ctor_get(x_44, 0); +x_50 = lean_ctor_get(x_44, 1); +lean_inc(x_50); +lean_inc(x_49); +lean_dec(x_44); +lean_inc(x_49); +x_51 = lean_metavar_ctx_assign_level(x_50, x_38, x_49); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_49); +lean_ctor_set(x_52, 1, x_51); +return x_52; } } } } default: { -lean_object* x_55; -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_1); -lean_ctor_set(x_55, 1, x_2); -return x_55; +lean_object* x_53; +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_1); +lean_ctor_set(x_53, 1, x_2); +return x_53; } } } diff --git a/stage0/stdlib/Init/Lean/Parser/Command.c b/stage0/stdlib/Init/Lean/Parser/Command.c index 18d7a0abfb..5ba2204f23 100644 --- a/stage0/stdlib/Init/Lean/Parser/Command.c +++ b/stage0/stdlib/Init/Lean/Parser/Command.c @@ -118,6 +118,7 @@ lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_classInductive___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openHiding; +extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_declModifiers___closed__8; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__8; @@ -292,7 +293,6 @@ lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_ lean_object* l_Lean_Parser_Command_instance___closed__8; lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openOnly___elambda__1(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15; lean_object* l_Lean_Parser_Command_structFields___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_export___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_variables___closed__1; @@ -562,6 +562,7 @@ lean_object* l_Lean_Parser_Command_openSimple___closed__3; extern lean_object* l_Lean_Parser_Term_explicitUniv___closed__3; lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_openRenamingItem___closed__2; +extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_unsafe___closed__5; @@ -1113,7 +1114,6 @@ lean_object* l_Lean_Parser_Command_structureTk___closed__5; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_set__option___closed__1; extern lean_object* l_Lean_Parser_Term_matchAlt___closed__1; -extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; lean_object* l_Lean_Parser_Command_protected___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_introRule___closed__5; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__7; @@ -1613,7 +1613,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_docComment___elambda__1___closed__3; x_3 = l_Lean_Parser_Command_docComment___elambda__1___closed__5; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -2136,7 +2136,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_attrInstance___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_attrInstance___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -2502,7 +2502,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_attributes___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_attributes___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -2935,7 +2935,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_private___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_private___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -3208,7 +3208,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_protected___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_protected___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -3579,7 +3579,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_noncomputable___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_noncomputable___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -3852,7 +3852,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_unsafe___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_unsafe___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -4125,7 +4125,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_partial___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_partial___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -4398,7 +4398,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_declModifiers___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_declModifiers___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -5215,7 +5215,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_declId___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_declId___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -5317,7 +5317,7 @@ lean_dec(x_70); if (x_72 == 0) { lean_object* x_73; lean_object* x_74; -x_73 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15; +x_73 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16; lean_inc(x_23); x_74 = l_Lean_Parser_ParserState_mkErrorsAt(x_66, x_73, x_23); x_45 = x_74; @@ -5333,7 +5333,7 @@ else { lean_object* x_75; lean_object* x_76; lean_dec(x_69); -x_75 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15; +x_75 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16; lean_inc(x_23); x_76 = l_Lean_Parser_ParserState_mkErrorsAt(x_66, x_75, x_23); x_45 = x_76; @@ -5344,7 +5344,7 @@ else { lean_object* x_77; lean_object* x_78; lean_dec(x_67); -x_77 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15; +x_77 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16; lean_inc(x_23); x_78 = l_Lean_Parser_ParserState_mkErrorsAt(x_66, x_77, x_23); x_45 = x_78; @@ -5442,7 +5442,7 @@ lean_dec(x_56); if (x_58 == 0) { lean_object* x_59; lean_object* x_60; -x_59 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_59 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_60 = l_Lean_Parser_ParserState_mkErrorsAt(x_52, x_59, x_51); x_24 = x_60; goto block_44; @@ -5458,7 +5458,7 @@ else { lean_object* x_61; lean_object* x_62; lean_dec(x_55); -x_61 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_61 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_62 = l_Lean_Parser_ParserState_mkErrorsAt(x_52, x_61, x_51); x_24 = x_62; goto block_44; @@ -5468,7 +5468,7 @@ else { lean_object* x_63; lean_object* x_64; lean_dec(x_53); -x_63 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_63 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_64 = l_Lean_Parser_ParserState_mkErrorsAt(x_52, x_63, x_51); x_24 = x_64; goto block_44; @@ -5672,7 +5672,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_declSig___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_declSig___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -5869,7 +5869,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_optDeclSig___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_optDeclSig___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -6054,7 +6054,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_declValSimple___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_declValSimple___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -6541,7 +6541,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -7160,7 +7160,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_abbrev___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_abbrev___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -7530,7 +7530,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_def___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_def___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -7874,7 +7874,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_theorem___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_theorem___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -8244,7 +8244,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_constant___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -8671,7 +8671,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_instance___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_instance___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -9164,7 +9164,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_axiom___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_axiom___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -9501,7 +9501,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_example___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_example___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -9824,7 +9824,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_relaxedInferMod___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_relaxedInferMod___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -10018,7 +10018,7 @@ lean_dec(x_38); if (x_40 == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_41 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_41 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_42 = l_Lean_Parser_ParserState_mkErrorsAt(x_34, x_41, x_33); x_43 = lean_ctor_get(x_42, 0); lean_inc(x_43); @@ -10053,7 +10053,7 @@ else { lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_dec(x_37); -x_49 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_49 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_50 = l_Lean_Parser_ParserState_mkErrorsAt(x_34, x_49, x_33); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); @@ -10072,7 +10072,7 @@ else { lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_dec(x_35); -x_54 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_54 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_55 = l_Lean_Parser_ParserState_mkErrorsAt(x_34, x_54, x_33); x_56 = lean_ctor_get(x_55, 0); lean_inc(x_56); @@ -10204,7 +10204,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_strictInferMod___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_strictInferMod___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -10682,7 +10682,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_introRule___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_introRule___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -11159,7 +11159,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_inductive___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_inductive___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -11555,7 +11555,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_classInductive___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_classInductive___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -12077,7 +12077,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -12634,7 +12634,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -12794,7 +12794,7 @@ lean_dec(x_28); if (x_30 == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_31 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_32 = l_Lean_Parser_ParserState_mkErrorsAt(x_24, x_31, x_23); x_33 = l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__2; x_34 = l_Lean_Parser_ParserState_mkNode(x_32, x_33, x_18); @@ -12817,7 +12817,7 @@ else { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_dec(x_27); -x_39 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_39 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_40 = l_Lean_Parser_ParserState_mkErrorsAt(x_24, x_39, x_23); x_41 = l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__2; x_42 = l_Lean_Parser_ParserState_mkNode(x_40, x_41, x_18); @@ -12830,7 +12830,7 @@ else { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_dec(x_25); -x_44 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_44 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_45 = l_Lean_Parser_ParserState_mkErrorsAt(x_24, x_44, x_23); x_46 = l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__2; x_47 = l_Lean_Parser_ParserState_mkNode(x_45, x_46, x_18); @@ -13090,7 +13090,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_structInstBinder___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_structInstBinder___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -13696,7 +13696,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_structFields___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_structFields___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -13900,7 +13900,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_structCtor___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_structCtor___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -14283,7 +14283,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_structureTk___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_structureTk___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -14556,7 +14556,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_classTk___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_classTk___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -14770,7 +14770,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_extends___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_extends___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -15075,7 +15075,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_structure___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_structure___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -15731,7 +15731,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_declaration___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -16610,7 +16610,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_section___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_section___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -16988,7 +16988,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_namespace___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -17309,7 +17309,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_end___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_end___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -17676,7 +17676,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_variable___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_variable___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -17997,7 +17997,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_variables___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_variables___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -18350,7 +18350,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_universe___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_universe___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -18671,7 +18671,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_universes___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_universes___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -19024,7 +19024,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_check___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_check___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -19335,7 +19335,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_exit___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_exit___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -19619,7 +19619,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_resolve__name___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_resolve__name___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -19940,7 +19940,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_elab___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_elab___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -20251,7 +20251,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_init__quot___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_init__quot___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -20527,7 +20527,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_set__option___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -21142,7 +21142,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_attribute___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -21908,7 +21908,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_export___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_export___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -22478,7 +22478,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_openHiding___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_openHiding___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -22938,7 +22938,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -23420,7 +23420,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_openRenaming___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_openRenaming___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -23883,7 +23883,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_openOnly___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_openOnly___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -24365,7 +24365,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_openSimple___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_openSimple___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -24557,7 +24557,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_open___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_open___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -25082,7 +25082,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_maxPrec___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_maxPrec___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -25331,7 +25331,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_precedence___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_precedence___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -25576,7 +25576,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_quotedSymbolPrec___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_quotedSymbolPrec___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -25934,7 +25934,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_prefix___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_prefix___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -26199,7 +26199,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_infix___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_infix___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -26464,7 +26464,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_infixl___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_infixl___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -26729,7 +26729,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_infixr___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_infixr___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -26994,7 +26994,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_postfix___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_postfix___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -27546,7 +27546,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_reserve___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_reserve___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -27975,7 +27975,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_mixfix___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_mixfix___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -28274,7 +28274,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_identPrec___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_identPrec___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -28620,7 +28620,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Command_notation___elambda__1___closed__1; x_3 = l_Lean_Parser_Command_notation___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } diff --git a/stage0/stdlib/Init/Lean/Parser/Level.c b/stage0/stdlib/Init/Lean/Parser/Level.c index b28ae68585..3cb79e07bc 100644 --- a/stage0/stdlib/Init/Lean/Parser/Level.c +++ b/stage0/stdlib/Init/Lean/Parser/Level.c @@ -383,7 +383,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Level_paren___elambda__1___closed__3; x_3 = l_Lean_Parser_Level_paren___elambda__1___closed__5; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -894,7 +894,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Level_LevelToFormat_Result_format___main___closed__3; x_3 = l_Lean_Parser_Level_max___elambda__1___closed__2; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -1165,7 +1165,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Level_LevelToFormat_Result_format___main___closed__5; x_3 = l_Lean_Parser_Level_imax___elambda__1___closed__2; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -1433,7 +1433,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Level_hole___elambda__1___closed__1; x_3 = l_Lean_Parser_Level_hole___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -1709,7 +1709,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Level_num___elambda__1___closed__1; x_3 = l_Lean_Parser_Level_num___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -1864,7 +1864,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Syntax_getKind___closed__3; x_3 = l_Lean_Parser_Level_ident___elambda__1___closed__2; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } diff --git a/stage0/stdlib/Init/Lean/Parser/Module.c b/stage0/stdlib/Init/Lean/Parser/Module.c index 0548f74d07..324864bb7a 100644 --- a/stage0/stdlib/Init/Lean/Parser/Module.c +++ b/stage0/stdlib/Init/Lean/Parser/Module.c @@ -233,7 +233,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Module_prelude___elambda__1___closed__3; x_3 = l_Lean_Parser_Module_prelude___elambda__1___closed__5; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -498,7 +498,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Module_import___elambda__1___closed__1; x_3 = l_Lean_Parser_Module_import___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -1118,7 +1118,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Module_header___elambda__1___closed__1; x_3 = l_Lean_Parser_Module_header___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } diff --git a/stage0/stdlib/Init/Lean/Parser/Parser.c b/stage0/stdlib/Init/Lean/Parser/Parser.c index f22ec8afff..fd5e2ec752 100644 --- a/stage0/stdlib/Init/Lean/Parser/Parser.c +++ b/stage0/stdlib/Init/Lean/Parser/Parser.c @@ -122,6 +122,7 @@ lean_object* l_AssocList_replace___main___at_Lean_Parser_nodeInfo___elambda__1__ lean_object* l_Lean_Parser_Trie_matchPrefix___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_octalNumberFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_stackSize___boxed(lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1(uint8_t, lean_object*); lean_object* l_Lean_Parser_octalNumberFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_identFnAux___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_hexNumberFn(lean_object*, lean_object*, lean_object*); @@ -169,11 +170,13 @@ lean_object* l_Lean_Parser_satisfyFn___boxed(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Parser_declareBuiltinParser___closed__5; lean_object* l_Lean_Parser_strLit___boxed(lean_object*); lean_object* l_Lean_Syntax_getOptionalIdent(lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__9; lean_object* l_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__5(lean_object*); lean_object* l_Lean_Parser_symbolNoWsFn___closed__1; uint8_t l_Lean_isIdBeginEscape(uint32_t); lean_object* l_Lean_Parser_declareBuiltinParser___closed__3; +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___closed__1; lean_object* l_Array_foldSepByM(lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_Inhabited___rarg___lambda__1(lean_object*); lean_object* l_Lean_Parser_orelseFn(uint8_t); @@ -241,6 +244,7 @@ lean_object* l_Lean_Parser_checkColGeFn___boxed(lean_object*, lean_object*, lean lean_object* l_Lean_Parser_declareBuiltinParser___closed__4; lean_object* l_Lean_Parser_quotedSymbolFn(uint8_t); lean_object* l_Lean_Parser_quotedSymbolFn___rarg___closed__4; +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_insertToken(lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_HasOfNat___closed__1; lean_object* l_Lean_Parser_tokenTableAttribute; @@ -294,6 +298,7 @@ lean_object* l_Lean_Parser_mkAntiquot___closed__5; lean_object* l_Lean_Parser_TokenConfig_HasToString; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_binNumberFn___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___boxed(lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_forArgsM(lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__3; lean_object* l_Lean_Parser_unicodeSymbolCheckPrecFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -343,6 +348,7 @@ lean_object* l_Lean_Parser_mkAtomicInfo___elambda__2(lean_object*); lean_object* l_Lean_Parser_manyAux___main(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone(uint8_t); lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg(lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_rawCh___elambda__1___spec__1(uint32_t, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -414,6 +420,7 @@ lean_object* l_Lean_Parser_trailingLoop___main___boxed(lean_object*, lean_object uint8_t l_Lean_Parser_Error_beq(lean_object*, lean_object*); lean_object* l_Lean_Parser_runParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_keepNewError(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_symbol(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_anyOfFn___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_octalNumberFn___spec__2(lean_object*, lean_object*); @@ -515,6 +522,7 @@ lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_octalNumberFn___s lean_object* l___private_Init_Lean_Parser_Parser_3__rawAux___boxed(lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); lean_object* l_Lean_Parser_declareBuiltinParser___closed__7; +lean_object* l_Lean_Parser_mkAntiquot___closed__13; lean_object* l_Lean_Parser_termParser___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkTokenTableAttribute(lean_object*); extern lean_object* l_Lean_Options_empty; @@ -566,7 +574,6 @@ lean_object* l_Lean_Parser_rawCh(uint8_t, uint32_t, uint8_t); lean_object* l_mkHashMapImp___rarg(lean_object*); lean_object* l_Lean_Parser_many1Indent___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepByInfo___elambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_mkAntiquot___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_restore___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(lean_object*); lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); @@ -690,6 +697,7 @@ lean_object* l_Lean_Parser_takeWhileFn___lambda__1___boxed(lean_object*, lean_ob lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_Inhabited; lean_object* l_RBNode_find___main___at_Lean_Parser_TokenMap_insert___spec__1___rarg(lean_object*, lean_object*); +extern lean_object* l_Lean_Syntax_asNode___closed__1; lean_object* l_Lean_nameToExprAux___main(lean_object*); lean_object* l_Lean_Parser_unicodeSymbolCheckPrecFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); @@ -723,6 +731,7 @@ lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_octalNumberFn___spec__1___ extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; lean_object* l_Lean_Syntax_foldArgsAuxM___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo; +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___boxed(lean_object*); lean_object* l_Lean_Parser_lookaheadFn___boxed(lean_object*); lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__6(lean_object*); lean_object* l_Lean_Parser_anyOfFn___main(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -767,7 +776,6 @@ lean_object* l_RBNode_setBlack___rarg(lean_object*); lean_object* l_Lean_Parser_noFirstTokenInfo___elambda__2(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Trie_empty___closed__1; lean_object* l_Lean_Parser_symbolOrIdent___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_mkAntiquot___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_chFn___rarg(uint32_t, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgsAuxM___main___at_Lean_Syntax_forArgsM___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___closed__2; @@ -816,6 +824,7 @@ lean_object* l_Lean_Syntax_isNone___boxed(lean_object*); lean_object* l_Lean_Syntax_foldArgsAuxM___main___at_Lean_Syntax_foldSepRevArgsM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_currLbp(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhile1Fn(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1___rarg(lean_object*); lean_object* lean_io_initializing(lean_object*); lean_object* l_Array_getEvenElems___boxed(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; @@ -852,6 +861,7 @@ lean_object* l_Lean_Parser_manyFn(uint8_t, lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_ParserState_next___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Parser_inhabited___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_chFn___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Info___elambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___elambda__2(lean_object*); @@ -922,6 +932,7 @@ lean_object* l_Lean_Parser_orelseFn___boxed(lean_object*); lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__4(lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Parser_FirstTokens_toStr___spec__2___boxed(lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__5___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone___boxed(lean_object*); lean_object* l_Lean_Parser_unicodeSymbolInfo___closed__1; lean_object* l_Lean_Parser_checkColGe___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLitFn___rarg(lean_object*, lean_object*); @@ -961,6 +972,7 @@ lean_object* l_Lean_Parser_manyAux___boxed(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_group___boxed(lean_object*, lean_object*); lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_many1Indent___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon(uint8_t); lean_object* l_Lean_Parser_sepBy1Info___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit(uint8_t); lean_object* l_Lean_Parser_many1(uint8_t, lean_object*); @@ -29014,6 +29026,168 @@ x_3 = l_Lean_Parser_dollarSymbol(x_2); return x_3; } } +lean_object* _init_l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("unexpected ':'"); +return x_1; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +x_4 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_3); +lean_dec(x_3); +x_5 = l_Lean_Parser_checkTailNoWs(x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +return x_2; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_6, 0); +x_8 = lean_ctor_get(x_2, 1); +lean_inc(x_8); +x_9 = lean_string_utf8_at_end(x_7, x_8); +if (x_9 == 0) +{ +uint32_t x_10; uint32_t x_11; uint8_t x_12; +x_10 = lean_string_utf8_get(x_7, x_8); +lean_dec(x_8); +x_11 = 58; +x_12 = x_10 == x_11; +if (x_12 == 0) +{ +return x_2; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___closed__1; +x_14 = l_Lean_Parser_ParserState_mkUnexpectedError(x_2, x_13); +return x_14; +} +} +else +{ +lean_dec(x_8); +return x_2; +} +} +} +} +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1(uint8_t x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___boxed), 2, 0); +return x_3; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon(uint8_t x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = lean_box(x_1); +x_3 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___boxed), 2, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l_Lean_Parser_Parser_inhabited___closed__1; +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = lean_unbox(x_1); +lean_dec(x_1); +x_4 = l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1(x_3, x_2); +lean_dec(x_2); +return x_4; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_9__noImmediateColon___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = l___private_Init_Lean_Parser_Parser_9__noImmediateColon(x_2); +return x_3; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Syntax_asNode___closed__1; +x_3 = l_Lean_Parser_ParserState_pushSyntax(x_1, x_2); +return x_3; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1___rarg), 1, 0); +return x_4; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone(uint8_t x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = lean_box(x_1); +x_3 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1___boxed), 3, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l_Lean_Parser_Parser_inhabited___closed__1; +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = lean_unbox(x_1); +lean_dec(x_1); +x_5 = l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1(x_4, x_2, x_3); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +lean_object* l___private_Init_Lean_Parser_Parser_10__pushNone___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = l___private_Init_Lean_Parser_Parser_10__pushNone(x_2); +return x_3; +} +} lean_object* l_Lean_Parser_mkAntiquot___elambda__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -29056,16 +29230,6 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot___elambda__2___rarg), return x_2; } } -lean_object* l_Lean_Parser_mkAntiquot___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = l_Lean_Parser_termParserAttribute; -x_5 = l_Lean_Parser_appPrec; -x_6 = l_Lean_Parser_ParserAttribute_runParser(x_4, x_5, x_2, x_3); -return x_6; -} -} lean_object* _init_l_Lean_Parser_mkAntiquot___closed__1() { _start: { @@ -29095,9 +29259,11 @@ return x_1; lean_object* _init_l_Lean_Parser_mkAntiquot___closed__4() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("*"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_appPrec; +x_2 = lean_unsigned_to_nat(1u); +x_3 = lean_nat_add(x_1, x_2); +return x_3; } } lean_object* _init_l_Lean_Parser_mkAntiquot___closed__5() { @@ -29105,37 +29271,36 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_mkAntiquot___closed__4; -x_2 = l_String_trim(x_1); +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_termParser___lambda__1___boxed), 4, 1); +lean_closure_set(x_2, 0, x_1); return x_2; } } lean_object* _init_l_Lean_Parser_mkAntiquot___closed__6() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Parser_mkAntiquot___closed__5; -x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("*"); +return x_1; } } lean_object* _init_l_Lean_Parser_mkAntiquot___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___rarg___boxed), 4, 1); -lean_closure_set(x_2, 0, x_1); +x_1 = l_Lean_Parser_mkAntiquot___closed__6; +x_2 = l_String_trim(x_1); return x_2; } } lean_object* _init_l_Lean_Parser_mkAntiquot___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot___closed__6; -x_2 = l_Lean_Parser_optionaInfo(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_mkAntiquot___closed__7; +x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); +return x_3; } } lean_object* _init_l_Lean_Parser_mkAntiquot___closed__9() { @@ -29143,7 +29308,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_mkAntiquot___closed__7; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optionalFn___rarg), 4, 1); +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___rarg___boxed), 4, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -29151,17 +29316,18 @@ return x_2; lean_object* _init_l_Lean_Parser_mkAntiquot___closed__10() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("no space before"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_mkAntiquot___closed__8; +x_2 = l_Lean_Parser_optionaInfo(x_1); +return x_2; } } lean_object* _init_l_Lean_Parser_mkAntiquot___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot___closed__10; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_checkNoWsBefore___elambda__1___rarg___boxed), 4, 1); +x_1 = l_Lean_Parser_mkAntiquot___closed__9; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optionalFn___rarg), 4, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -29170,10 +29336,20 @@ lean_object* _init_l_Lean_Parser_mkAntiquot___closed__12() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot___lambda__1___boxed), 3, 0); +x_1 = lean_mk_string("no space before"); return x_1; } } +lean_object* _init_l_Lean_Parser_mkAntiquot___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_mkAntiquot___closed__12; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_checkNoWsBefore___elambda__1___rarg___boxed), 4, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} lean_object* l_Lean_Parser_mkAntiquot(uint8_t x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { _start: { @@ -29207,21 +29383,21 @@ x_22 = lean_alloc_closure((void*)(l_Lean_Parser_dollarSymbol___elambda__1___boxe lean_closure_set(x_22, 0, x_21); if (lean_obj_tag(x_3) == 0) { -lean_object* x_63; -x_63 = lean_box(0); -x_23 = x_63; -goto block_62; +lean_object* x_73; +x_73 = lean_box(0); +x_23 = x_73; +goto block_72; } else { -lean_object* x_64; -x_64 = lean_ctor_get(x_3, 0); -lean_inc(x_64); +lean_object* x_74; +x_74 = lean_ctor_get(x_3, 0); +lean_inc(x_74); lean_dec(x_3); -x_23 = x_64; -goto block_62; +x_23 = x_74; +goto block_72; } -block_62: +block_72: { lean_object* x_24; lean_object* x_25; x_24 = l_Lean_Parser_mkAntiquot___closed__2; @@ -29230,20 +29406,20 @@ lean_dec(x_23); if (x_4 == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_26 = l_Lean_Parser_mkAntiquot___closed__8; +x_26 = l_Lean_Parser_mkAntiquot___closed__10; x_27 = l_Lean_Parser_andthenInfo(x_16, x_26); -x_28 = l_Lean_Parser_mkAntiquot___closed__9; +x_28 = l_Lean_Parser_mkAntiquot___closed__11; x_29 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); lean_closure_set(x_29, 0, x_18); lean_closure_set(x_29, 1, x_28); x_30 = l_Lean_Parser_Parser_inhabited___closed__1; x_31 = l_Lean_Parser_andthenInfo(x_30, x_27); -x_32 = l_Lean_Parser_mkAntiquot___closed__12; +x_32 = l_Lean_Parser_mkAntiquot___closed__5; x_33 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); lean_closure_set(x_33, 0, x_32); lean_closure_set(x_33, 1, x_29); x_34 = l_Lean_Parser_andthenInfo(x_15, x_31); -x_35 = l_Lean_Parser_mkAntiquot___closed__11; +x_35 = l_Lean_Parser_mkAntiquot___closed__13; x_36 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); lean_closure_set(x_36, 0, x_35); lean_closure_set(x_36, 1, x_33); @@ -29265,42 +29441,61 @@ return x_42; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_43 = l_Lean_Parser_optionaInfo(x_16); -x_44 = lean_alloc_closure((void*)(l_Lean_Parser_optionalFn___rarg), 4, 1); -lean_closure_set(x_44, 0, x_18); -x_45 = l_Lean_Parser_mkAntiquot___closed__8; -x_46 = l_Lean_Parser_andthenInfo(x_43, x_45); -x_47 = l_Lean_Parser_mkAntiquot___closed__9; -x_48 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); -lean_closure_set(x_48, 0, x_44); -lean_closure_set(x_48, 1, x_47); -x_49 = l_Lean_Parser_Parser_inhabited___closed__1; -x_50 = l_Lean_Parser_andthenInfo(x_49, x_46); -x_51 = l_Lean_Parser_mkAntiquot___closed__12; +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_43 = l___private_Init_Lean_Parser_Parser_9__noImmediateColon(x_1); +x_44 = l___private_Init_Lean_Parser_Parser_10__pushNone(x_1); +x_45 = lean_ctor_get(x_43, 0); +lean_inc(x_45); +lean_dec(x_43); +x_46 = lean_ctor_get(x_44, 0); +lean_inc(x_46); +lean_dec(x_44); +x_47 = l_Lean_Parser_andthenInfo(x_45, x_46); +x_48 = lean_box(x_1); +x_49 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___boxed), 2, 1); +lean_closure_set(x_49, 0, x_48); +x_50 = lean_box(x_1); +x_51 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_10__pushNone___elambda__1___boxed), 3, 1); +lean_closure_set(x_51, 0, x_50); x_52 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); -lean_closure_set(x_52, 0, x_51); -lean_closure_set(x_52, 1, x_48); -x_53 = l_Lean_Parser_andthenInfo(x_15, x_50); -x_54 = l_Lean_Parser_mkAntiquot___closed__11; -x_55 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); -lean_closure_set(x_55, 0, x_54); -lean_closure_set(x_55, 1, x_52); -x_56 = l_Lean_Parser_andthenInfo(x_20, x_53); -x_57 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); -lean_closure_set(x_57, 0, x_22); -lean_closure_set(x_57, 1, x_55); -x_58 = lean_alloc_closure((void*)(l_Lean_Parser_tryFn___rarg), 4, 1); -lean_closure_set(x_58, 0, x_57); +lean_closure_set(x_52, 0, x_49); +lean_closure_set(x_52, 1, x_51); +x_53 = l_Lean_Parser_orelseInfo(x_16, x_47); +x_54 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn___rarg), 5, 2); +lean_closure_set(x_54, 0, x_18); +lean_closure_set(x_54, 1, x_52); +x_55 = l_Lean_Parser_mkAntiquot___closed__10; +x_56 = l_Lean_Parser_andthenInfo(x_53, x_55); +x_57 = l_Lean_Parser_mkAntiquot___closed__11; +x_58 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); +lean_closure_set(x_58, 0, x_54); +lean_closure_set(x_58, 1, x_57); +x_59 = l_Lean_Parser_Parser_inhabited___closed__1; +x_60 = l_Lean_Parser_andthenInfo(x_59, x_56); +x_61 = l_Lean_Parser_mkAntiquot___closed__5; +x_62 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); +lean_closure_set(x_62, 0, x_61); +lean_closure_set(x_62, 1, x_58); +x_63 = l_Lean_Parser_andthenInfo(x_15, x_60); +x_64 = l_Lean_Parser_mkAntiquot___closed__13; +x_65 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); +lean_closure_set(x_65, 0, x_64); +lean_closure_set(x_65, 1, x_62); +x_66 = l_Lean_Parser_andthenInfo(x_20, x_63); +x_67 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); +lean_closure_set(x_67, 0, x_22); +lean_closure_set(x_67, 1, x_65); +x_68 = lean_alloc_closure((void*)(l_Lean_Parser_tryFn___rarg), 4, 1); +lean_closure_set(x_68, 0, x_67); lean_inc(x_25); -x_59 = l_Lean_Parser_nodeInfo(x_25, x_56); -x_60 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot___elambda__2___rarg), 5, 2); -lean_closure_set(x_60, 0, x_25); -lean_closure_set(x_60, 1, x_58); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -return x_61; +x_69 = l_Lean_Parser_nodeInfo(x_25, x_66); +x_70 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot___elambda__2___rarg), 5, 2); +lean_closure_set(x_70, 0, x_25); +lean_closure_set(x_70, 1, x_68); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_69); +lean_ctor_set(x_71, 1, x_70); +return x_71; } } } @@ -29325,15 +29520,6 @@ x_3 = l_Lean_Parser_mkAntiquot___elambda__2(x_2); return x_3; } } -lean_object* l_Lean_Parser_mkAntiquot___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Parser_mkAntiquot___lambda__1(x_1, x_2, x_3); -lean_dec(x_1); -return x_4; -} -} lean_object* l_Lean_Parser_mkAntiquot___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -29429,7 +29615,7 @@ _start: lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_2 = l_Lean_Syntax_getKind___closed__3; x_3 = l_Lean_Parser_ident___closed__1; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); x_6 = lean_box(x_1); x_7 = lean_alloc_closure((void*)(l_Lean_Parser_identFn___boxed), 2, 1); @@ -29568,7 +29754,7 @@ _start: lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_2 = l_Lean_fieldIdxKind___closed__1; x_3 = l_Lean_Parser_fieldIdx___closed__1; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); x_6 = lean_ctor_get(x_5, 0); lean_inc(x_6); @@ -30987,6 +31173,8 @@ l_Lean_Parser_dollarSymbol___closed__1 = _init_l_Lean_Parser_dollarSymbol___clos lean_mark_persistent(l_Lean_Parser_dollarSymbol___closed__1); l_Lean_Parser_dollarSymbol___closed__2 = _init_l_Lean_Parser_dollarSymbol___closed__2(); lean_mark_persistent(l_Lean_Parser_dollarSymbol___closed__2); +l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___closed__1 = _init_l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Parser_Parser_9__noImmediateColon___elambda__1___rarg___closed__1); l_Lean_Parser_mkAntiquot___closed__1 = _init_l_Lean_Parser_mkAntiquot___closed__1(); lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__1); l_Lean_Parser_mkAntiquot___closed__2 = _init_l_Lean_Parser_mkAntiquot___closed__2(); @@ -31011,6 +31199,8 @@ l_Lean_Parser_mkAntiquot___closed__11 = _init_l_Lean_Parser_mkAntiquot___closed_ lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__11); l_Lean_Parser_mkAntiquot___closed__12 = _init_l_Lean_Parser_mkAntiquot___closed__12(); lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__12); +l_Lean_Parser_mkAntiquot___closed__13 = _init_l_Lean_Parser_mkAntiquot___closed__13(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__13); l_Lean_Parser_ident___closed__1 = _init_l_Lean_Parser_ident___closed__1(); lean_mark_persistent(l_Lean_Parser_ident___closed__1); l_Lean_Parser_fieldIdxFn___closed__1 = _init_l_Lean_Parser_fieldIdxFn___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Parser/Term.c b/stage0/stdlib/Init/Lean/Parser/Term.c index d1af1ddf3b..f80ab03f43 100644 --- a/stage0/stdlib/Init/Lean/Parser/Term.c +++ b/stage0/stdlib/Init/Lean/Parser/Term.c @@ -149,7 +149,6 @@ lean_object* l_Lean_Parser_Term_subtype___closed__6; lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Term_append(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__5; -lean_object* l_Lean_Parser_Term_proj___closed__10; lean_object* l_Lean_Parser_Term_haveAssign___closed__2; lean_object* l_Lean_Parser_Term_forall___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstSource___elambda__1(lean_object*, lean_object*, lean_object*); @@ -161,6 +160,7 @@ lean_object* l_Lean_Parser_Term_match___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Term_pow(lean_object*); lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_listLit___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_doExpr___closed__4; lean_object* l_Lean_Parser_Term_quotedName___closed__1; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__1; @@ -350,6 +350,7 @@ lean_object* l_Lean_Parser_Term_match___elambda__1___closed__11; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_match__syntax___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_not___closed__3; +extern lean_object* l_Lean_Parser_mkAntiquot___closed__4; lean_object* l_Lean_Parser_Term_quotedName___closed__6; lean_object* l_Lean_Parser_Term_letEqns___closed__3; lean_object* l_Lean_Parser_Term_optIdent___closed__4; @@ -1705,6 +1706,7 @@ lean_object* l_Lean_Parser_Term_beq___closed__2; lean_object* l_Lean_Parser_Term_arrayLit___closed__2; lean_object* l_Lean_Parser_Term_ne___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_paren___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_explicitUniv___closed__11; lean_object* l_Lean_Parser_Term_arrayLit___closed__1; lean_object* l_Lean_Parser_Term_stxQuot___closed__1; lean_object* l_Lean_Parser_Term_nomatch___closed__5; @@ -2424,7 +2426,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__3; x_3 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__5; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -2458,19 +2460,17 @@ return x_2; lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Char_HasRepr___closed__1; -x_2 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; -x_3 = lean_string_append(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("no space before '.{'"); +return x_1; } } lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__10; -x_2 = l_Char_HasRepr___closed__1; +x_1 = l_Char_HasRepr___closed__1; +x_2 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; x_3 = lean_string_append(x_1, x_2); return x_3; } @@ -2479,15 +2479,25 @@ lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; +x_2 = l_Char_HasRepr___closed__1; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; +x_2 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13() { +lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2497,22 +2507,22 @@ x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__14() { +lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; +x_1 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__14; x_2 = l_Char_HasRepr___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15() { +lean_object* _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__14; +x_2 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -2522,230 +2532,246 @@ return x_3; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_4 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); -x_6 = lean_ctor_get(x_3, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = lean_ctor_get(x_3, 1); +x_6 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__10; +x_7 = l_Lean_Parser_checkNoWsBeforeFn(x_6, x_2, x_3); +x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +x_10 = lean_array_get_size(x_9); +lean_dec(x_9); +x_11 = lean_ctor_get(x_7, 1); +lean_inc(x_11); lean_inc(x_2); lean_inc(x_1); -x_9 = lean_apply_3(x_5, x_1, x_2, x_3); -x_10 = lean_ctor_get(x_9, 3); -lean_inc(x_10); -if (lean_obj_tag(x_10) == 0) -{ -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -return x_9; -} -else -{ -lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -lean_dec(x_10); -x_12 = lean_ctor_get(x_9, 1); -lean_inc(x_12); -x_13 = lean_nat_dec_eq(x_12, x_8); -lean_dec(x_12); -if (x_13 == 0) +x_12 = lean_apply_3(x_5, x_1, x_2, x_7); +x_13 = lean_ctor_get(x_12, 3); +lean_inc(x_13); +if (lean_obj_tag(x_13) == 0) { lean_dec(x_11); -lean_dec(x_8); -lean_dec(x_7); +lean_dec(x_10); lean_dec(x_2); lean_dec(x_1); -return x_9; +return x_12; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_56; lean_object* x_57; -lean_inc(x_8); -x_14 = l_Lean_Parser_ParserState_restore(x_9, x_7, x_8); -lean_dec(x_7); -x_15 = lean_ctor_get(x_14, 0); +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_ctor_get(x_12, 1); lean_inc(x_15); -x_16 = lean_array_get_size(x_15); +x_16 = lean_nat_dec_eq(x_15, x_11); lean_dec(x_15); -lean_inc(x_2); -x_56 = l_Lean_Parser_tokenFn(x_2, x_14); -x_57 = lean_ctor_get(x_56, 3); -lean_inc(x_57); -if (lean_obj_tag(x_57) == 0) +if (x_16 == 0) { -lean_object* x_58; lean_object* x_59; -x_58 = lean_ctor_get(x_56, 0); -lean_inc(x_58); -x_59 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_58); -lean_dec(x_58); -if (lean_obj_tag(x_59) == 2) -{ -lean_object* x_60; lean_object* x_61; uint8_t x_62; -x_60 = lean_ctor_get(x_59, 1); -lean_inc(x_60); -lean_dec(x_59); -x_61 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__8; -x_62 = lean_string_dec_eq(x_60, x_61); -lean_dec(x_60); -if (x_62 == 0) -{ -lean_object* x_63; lean_object* x_64; -x_63 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15; -lean_inc(x_8); -x_64 = l_Lean_Parser_ParserState_mkErrorsAt(x_56, x_63, x_8); -x_17 = x_64; -goto block_55; -} -else -{ -x_17 = x_56; -goto block_55; -} -} -else -{ -lean_object* x_65; lean_object* x_66; -lean_dec(x_59); -x_65 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15; -lean_inc(x_8); -x_66 = l_Lean_Parser_ParserState_mkErrorsAt(x_56, x_65, x_8); -x_17 = x_66; -goto block_55; -} -} -else -{ -lean_object* x_67; lean_object* x_68; -lean_dec(x_57); -x_67 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15; -lean_inc(x_8); -x_68 = l_Lean_Parser_ParserState_mkErrorsAt(x_56, x_67, x_8); -x_17 = x_68; -goto block_55; -} -block_55: -{ -lean_object* x_18; -x_18 = lean_ctor_get(x_17, 3); -lean_inc(x_18); -if (lean_obj_tag(x_18) == 0) -{ -uint8_t x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; -x_19 = 0; -x_20 = 0; -lean_inc(x_2); -x_21 = l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__1(x_19, x_20, x_1, x_2, x_17); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_2); lean_dec(x_1); -x_22 = lean_ctor_get(x_21, 3); -lean_inc(x_22); -if (lean_obj_tag(x_22) == 0) +return x_12; +} +else { -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -x_24 = l_Lean_Parser_tokenFn(x_2, x_21); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_59; lean_object* x_60; +lean_inc(x_11); +x_17 = l_Lean_Parser_ParserState_restore(x_12, x_10, x_11); +lean_dec(x_10); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_array_get_size(x_18); +lean_dec(x_18); +lean_inc(x_2); +x_59 = l_Lean_Parser_tokenFn(x_2, x_17); +x_60 = lean_ctor_get(x_59, 3); +lean_inc(x_60); +if (lean_obj_tag(x_60) == 0) +{ +lean_object* x_61; lean_object* x_62; +x_61 = lean_ctor_get(x_59, 0); +lean_inc(x_61); +x_62 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_61); +lean_dec(x_61); +if (lean_obj_tag(x_62) == 2) +{ +lean_object* x_63; lean_object* x_64; uint8_t x_65; +x_63 = lean_ctor_get(x_62, 1); +lean_inc(x_63); +lean_dec(x_62); +x_64 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__8; +x_65 = lean_string_dec_eq(x_63, x_64); +lean_dec(x_63); +if (x_65 == 0) +{ +lean_object* x_66; lean_object* x_67; +x_66 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16; +lean_inc(x_11); +x_67 = l_Lean_Parser_ParserState_mkErrorsAt(x_59, x_66, x_11); +x_20 = x_67; +goto block_58; +} +else +{ +x_20 = x_59; +goto block_58; +} +} +else +{ +lean_object* x_68; lean_object* x_69; +lean_dec(x_62); +x_68 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16; +lean_inc(x_11); +x_69 = l_Lean_Parser_ParserState_mkErrorsAt(x_59, x_68, x_11); +x_20 = x_69; +goto block_58; +} +} +else +{ +lean_object* x_70; lean_object* x_71; +lean_dec(x_60); +x_70 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16; +lean_inc(x_11); +x_71 = l_Lean_Parser_ParserState_mkErrorsAt(x_59, x_70, x_11); +x_20 = x_71; +goto block_58; +} +block_58: +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 3); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; +x_22 = 0; +x_23 = 0; +lean_inc(x_2); +x_24 = l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__1(x_22, x_23, x_1, x_2, x_20); +lean_dec(x_1); x_25 = lean_ctor_get(x_24, 3); lean_inc(x_25); if (lean_obj_tag(x_25) == 0) { -lean_object* x_26; lean_object* x_27; -x_26 = lean_ctor_get(x_24, 0); +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); -x_27 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_26); -lean_dec(x_26); -if (lean_obj_tag(x_27) == 2) -{ -lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_28 = lean_ctor_get(x_27, 1); +x_27 = l_Lean_Parser_tokenFn(x_2, x_24); +x_28 = lean_ctor_get(x_27, 3); lean_inc(x_28); -lean_dec(x_27); -x_29 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; -x_30 = lean_string_dec_eq(x_28, x_29); -lean_dec(x_28); -if (x_30 == 0) +if (lean_obj_tag(x_28) == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; -x_32 = l_Lean_Parser_ParserState_mkErrorsAt(x_24, x_31, x_23); -x_33 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; -x_34 = l_Lean_Parser_ParserState_mkNode(x_32, x_33, x_16); -x_35 = l_Lean_Parser_mergeOrElseErrors(x_34, x_11, x_8); -lean_dec(x_8); -return x_35; -} -else +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_27, 0); +lean_inc(x_29); +x_30 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_29); +lean_dec(x_29); +if (lean_obj_tag(x_30) == 2) { -lean_object* x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_23); +lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +lean_dec(x_30); +x_32 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; +x_33 = lean_string_dec_eq(x_31, x_32); +lean_dec(x_31); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_34 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; +x_35 = l_Lean_Parser_ParserState_mkErrorsAt(x_27, x_34, x_26); x_36 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; -x_37 = l_Lean_Parser_ParserState_mkNode(x_24, x_36, x_16); -x_38 = l_Lean_Parser_mergeOrElseErrors(x_37, x_11, x_8); -lean_dec(x_8); +x_37 = l_Lean_Parser_ParserState_mkNode(x_35, x_36, x_19); +x_38 = l_Lean_Parser_mergeOrElseErrors(x_37, x_14, x_11); +lean_dec(x_11); return x_38; } -} else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -lean_dec(x_27); -x_39 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; -x_40 = l_Lean_Parser_ParserState_mkErrorsAt(x_24, x_39, x_23); -x_41 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; -x_42 = l_Lean_Parser_ParserState_mkNode(x_40, x_41, x_16); -x_43 = l_Lean_Parser_mergeOrElseErrors(x_42, x_11, x_8); -lean_dec(x_8); -return x_43; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_26); +x_39 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; +x_40 = l_Lean_Parser_ParserState_mkNode(x_27, x_39, x_19); +x_41 = l_Lean_Parser_mergeOrElseErrors(x_40, x_14, x_11); +lean_dec(x_11); +return x_41; } } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_25); -x_44 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; -x_45 = l_Lean_Parser_ParserState_mkErrorsAt(x_24, x_44, x_23); -x_46 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; -x_47 = l_Lean_Parser_ParserState_mkNode(x_45, x_46, x_16); -x_48 = l_Lean_Parser_mergeOrElseErrors(x_47, x_11, x_8); -lean_dec(x_8); -return x_48; +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +lean_dec(x_30); +x_42 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; +x_43 = l_Lean_Parser_ParserState_mkErrorsAt(x_27, x_42, x_26); +x_44 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; +x_45 = l_Lean_Parser_ParserState_mkNode(x_43, x_44, x_19); +x_46 = l_Lean_Parser_mergeOrElseErrors(x_45, x_14, x_11); +lean_dec(x_11); +return x_46; } } else { -lean_object* x_49; lean_object* x_50; lean_object* x_51; -lean_dec(x_22); -lean_dec(x_2); +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +lean_dec(x_28); +x_47 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; +x_48 = l_Lean_Parser_ParserState_mkErrorsAt(x_27, x_47, x_26); x_49 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; -x_50 = l_Lean_Parser_ParserState_mkNode(x_21, x_49, x_16); -x_51 = l_Lean_Parser_mergeOrElseErrors(x_50, x_11, x_8); -lean_dec(x_8); +x_50 = l_Lean_Parser_ParserState_mkNode(x_48, x_49, x_19); +x_51 = l_Lean_Parser_mergeOrElseErrors(x_50, x_14, x_11); +lean_dec(x_11); return x_51; } } else { lean_object* x_52; lean_object* x_53; lean_object* x_54; -lean_dec(x_18); +lean_dec(x_25); lean_dec(x_2); -lean_dec(x_1); x_52 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; -x_53 = l_Lean_Parser_ParserState_mkNode(x_17, x_52, x_16); -x_54 = l_Lean_Parser_mergeOrElseErrors(x_53, x_11, x_8); -lean_dec(x_8); +x_53 = l_Lean_Parser_ParserState_mkNode(x_24, x_52, x_19); +x_54 = l_Lean_Parser_mergeOrElseErrors(x_53, x_14, x_11); +lean_dec(x_11); return x_54; } } +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +lean_dec(x_21); +lean_dec(x_2); +lean_dec(x_1); +x_55 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; +x_56 = l_Lean_Parser_ParserState_mkNode(x_20, x_55, x_19); +x_57 = l_Lean_Parser_mergeOrElseErrors(x_56, x_14, x_11); +lean_dec(x_11); +return x_57; } } } } +} +else +{ +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +} lean_object* _init_l_Lean_Parser_Term_explicitUniv___closed__1() { _start: { @@ -2831,17 +2857,27 @@ return x_4; lean_object* _init_l_Lean_Parser_Term_explicitUniv___closed__9() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_explicitUniv___elambda__1), 3, 0); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Term_explicitUniv___closed__8; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; } } lean_object* _init_l_Lean_Parser_Term_explicitUniv___closed__10() { _start: { +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_explicitUniv___elambda__1), 3, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitUniv___closed__11() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_explicitUniv___closed__8; -x_2 = l_Lean_Parser_Term_explicitUniv___closed__9; +x_1 = l_Lean_Parser_Term_explicitUniv___closed__9; +x_2 = l_Lean_Parser_Term_explicitUniv___closed__10; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -2852,7 +2888,7 @@ lean_object* _init_l_Lean_Parser_Term_explicitUniv() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Term_explicitUniv___closed__10; +x_1 = l_Lean_Parser_Term_explicitUniv___closed__11; return x_1; } } @@ -2919,7 +2955,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -2984,150 +3020,157 @@ return x_3; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_4 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__4; x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); -x_6 = lean_ctor_get(x_3, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = lean_ctor_get(x_3, 1); +x_6 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__7; +x_7 = l_Lean_Parser_checkNoWsBeforeFn(x_6, x_2, x_3); +x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -lean_inc(x_2); -x_9 = lean_apply_3(x_5, x_1, x_2, x_3); -x_10 = lean_ctor_get(x_9, 3); -lean_inc(x_10); -if (lean_obj_tag(x_10) == 0) +if (lean_obj_tag(x_8) == 0) { -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -return x_9; -} -else -{ -lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_11 = lean_ctor_get(x_10, 0); +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +x_10 = lean_array_get_size(x_9); +lean_dec(x_9); +x_11 = lean_ctor_get(x_7, 1); lean_inc(x_11); -lean_dec(x_10); -x_12 = lean_ctor_get(x_9, 1); -lean_inc(x_12); -x_13 = lean_nat_dec_eq(x_12, x_8); -lean_dec(x_12); -if (x_13 == 0) +lean_inc(x_2); +x_12 = lean_apply_3(x_5, x_1, x_2, x_7); +x_13 = lean_ctor_get(x_12, 3); +lean_inc(x_13); +if (lean_obj_tag(x_13) == 0) { lean_dec(x_11); -lean_dec(x_8); -lean_dec(x_7); +lean_dec(x_10); lean_dec(x_2); -return x_9; +return x_12; } else { -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_inc(x_8); -x_14 = l_Lean_Parser_ParserState_restore(x_9, x_7, x_8); -lean_dec(x_7); -x_15 = lean_ctor_get(x_14, 0); +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_ctor_get(x_12, 1); lean_inc(x_15); -x_16 = lean_array_get_size(x_15); +x_16 = lean_nat_dec_eq(x_15, x_11); lean_dec(x_15); -x_17 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__7; -x_18 = l_Lean_Parser_checkNoWsBeforeFn(x_17, x_2, x_14); -x_19 = lean_ctor_get(x_18, 3); -lean_inc(x_19); -if (lean_obj_tag(x_19) == 0) +if (x_16 == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_2); +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_32; lean_object* x_33; +lean_inc(x_11); +x_17 = l_Lean_Parser_ParserState_restore(x_12, x_10, x_11); +lean_dec(x_10); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_array_get_size(x_18); +lean_dec(x_18); lean_inc(x_2); -x_21 = l_Lean_Parser_tokenFn(x_2, x_18); -x_22 = lean_ctor_get(x_21, 3); -lean_inc(x_22); -if (lean_obj_tag(x_22) == 0) +x_32 = l_Lean_Parser_tokenFn(x_2, x_17); +x_33 = lean_ctor_get(x_32, 3); +lean_inc(x_33); +if (lean_obj_tag(x_33) == 0) { -lean_object* x_23; lean_object* x_24; -x_23 = lean_ctor_get(x_21, 0); -lean_inc(x_23); -x_24 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_23); -lean_dec(x_23); -if (lean_obj_tag(x_24) == 2) +lean_object* x_34; lean_object* x_35; +x_34 = lean_ctor_get(x_32, 0); +lean_inc(x_34); +x_35 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_34); +lean_dec(x_34); +if (lean_obj_tag(x_35) == 2) { -lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_25 = lean_ctor_get(x_24, 1); -lean_inc(x_25); -lean_dec(x_24); -x_26 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__6; -x_27 = lean_string_dec_eq(x_25, x_26); -lean_dec(x_25); -if (x_27 == 0) +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__6; +x_38 = lean_string_dec_eq(x_36, x_37); +lean_dec(x_36); +if (x_38 == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -lean_dec(x_2); -x_28 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__10; -x_29 = l_Lean_Parser_ParserState_mkErrorsAt(x_21, x_28, x_20); -x_30 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_31 = l_Lean_Parser_ParserState_mkNode(x_29, x_30, x_16); -x_32 = l_Lean_Parser_mergeOrElseErrors(x_31, x_11, x_8); -lean_dec(x_8); -return x_32; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_20); -x_33 = l_Lean_Parser_termParserAttribute; -x_34 = l_Lean_Parser_appPrec; -x_35 = l_Lean_Parser_ParserAttribute_runParser(x_33, x_34, x_2, x_21); -x_36 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_37 = l_Lean_Parser_ParserState_mkNode(x_35, x_36, x_16); -x_38 = l_Lean_Parser_mergeOrElseErrors(x_37, x_11, x_8); -lean_dec(x_8); -return x_38; -} -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -lean_dec(x_24); -lean_dec(x_2); +lean_object* x_39; lean_object* x_40; x_39 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__10; -x_40 = l_Lean_Parser_ParserState_mkErrorsAt(x_21, x_39, x_20); -x_41 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_42 = l_Lean_Parser_ParserState_mkNode(x_40, x_41, x_16); -x_43 = l_Lean_Parser_mergeOrElseErrors(x_42, x_11, x_8); -lean_dec(x_8); -return x_43; +lean_inc(x_11); +x_40 = l_Lean_Parser_ParserState_mkErrorsAt(x_32, x_39, x_11); +x_20 = x_40; +goto block_31; +} +else +{ +x_20 = x_32; +goto block_31; } } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_22); -lean_dec(x_2); -x_44 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__10; -x_45 = l_Lean_Parser_ParserState_mkErrorsAt(x_21, x_44, x_20); -x_46 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_47 = l_Lean_Parser_ParserState_mkNode(x_45, x_46, x_16); -x_48 = l_Lean_Parser_mergeOrElseErrors(x_47, x_11, x_8); -lean_dec(x_8); -return x_48; +lean_object* x_41; lean_object* x_42; +lean_dec(x_35); +x_41 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__10; +lean_inc(x_11); +x_42 = l_Lean_Parser_ParserState_mkErrorsAt(x_32, x_41, x_11); +x_20 = x_42; +goto block_31; } } else { -lean_object* x_49; lean_object* x_50; lean_object* x_51; -lean_dec(x_19); +lean_object* x_43; lean_object* x_44; +lean_dec(x_33); +x_43 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__10; +lean_inc(x_11); +x_44 = l_Lean_Parser_ParserState_mkErrorsAt(x_32, x_43, x_11); +x_20 = x_44; +goto block_31; +} +block_31: +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 3); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_22 = l_Lean_Parser_termParserAttribute; +x_23 = l_Lean_Parser_appPrec; +x_24 = l_Lean_Parser_ParserAttribute_runParser(x_22, x_23, x_2, x_20); +x_25 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_26 = l_Lean_Parser_ParserState_mkNode(x_24, x_25, x_19); +x_27 = l_Lean_Parser_mergeOrElseErrors(x_26, x_14, x_11); +lean_dec(x_11); +return x_27; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_21); lean_dec(x_2); -x_49 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_50 = l_Lean_Parser_ParserState_mkNode(x_18, x_49, x_16); -x_51 = l_Lean_Parser_mergeOrElseErrors(x_50, x_11, x_8); +x_28 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_29 = l_Lean_Parser_ParserState_mkNode(x_20, x_28, x_19); +x_30 = l_Lean_Parser_mergeOrElseErrors(x_29, x_14, x_11); +lean_dec(x_11); +return x_30; +} +} +} +} +} +else +{ lean_dec(x_8); -return x_51; -} -} +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_7; } } } @@ -3155,32 +3198,32 @@ lean_object* _init_l_Lean_Parser_Term_namedPattern___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; +x_1 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; x_2 = l_Lean_Parser_Term_namedPattern___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; } } lean_object* _init_l_Lean_Parser_Term_namedPattern___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_namedPattern___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__4; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Term_namedPattern___closed__3; +x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); +return x_4; } } lean_object* _init_l_Lean_Parser_Term_namedPattern___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_namedPattern___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Term_namedPattern___closed__4; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; } } lean_object* _init_l_Lean_Parser_Term_namedPattern___closed__6() { @@ -3246,7 +3289,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_id___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_id___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -3565,7 +3608,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Level_num___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_num___elambda__1___closed__2; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -3728,7 +3771,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_str___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_str___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -3891,7 +3934,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_char___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_char___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -4054,7 +4097,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_type___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_type___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -4338,7 +4381,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_sort___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_sort___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -4622,7 +4665,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_prop___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_prop___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -4898,7 +4941,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Level_hole___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_hole___elambda__1___closed__2; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -5133,7 +5176,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_sorry___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -5409,7 +5452,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_cdot___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_cdot___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -5693,7 +5736,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_emptyC___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_emptyC___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -5977,7 +6020,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -6430,7 +6473,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_tupleTail___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_tupleTail___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -6849,7 +6892,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Level_paren___elambda__1___closed__3; x_3 = l_Lean_Parser_Term_paren___elambda__1___closed__2; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -7314,7 +7357,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -8041,7 +8084,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_if___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_if___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -8745,7 +8788,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -9045,7 +9088,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -9337,7 +9380,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_have___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -10014,7 +10057,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_suffices___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -10490,7 +10533,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_show___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -10901,7 +10944,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_fun___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_fun___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -11431,7 +11474,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_structInstField___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_structInstField___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -11691,7 +11734,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_structInstSource___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_structInstSource___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -12234,7 +12277,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_structInst___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_structInst___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -12486,7 +12529,7 @@ lean_dec(x_30); if (x_32 == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_33 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_34 = l_Lean_Parser_ParserState_mkErrorsAt(x_26, x_33, x_25); x_35 = l_Lean_Parser_Term_structInst___elambda__1___closed__2; x_36 = l_Lean_Parser_ParserState_mkNode(x_34, x_35, x_18); @@ -12509,7 +12552,7 @@ else { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_dec(x_29); -x_41 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_41 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_42 = l_Lean_Parser_ParserState_mkErrorsAt(x_26, x_41, x_25); x_43 = l_Lean_Parser_Term_structInst___elambda__1___closed__2; x_44 = l_Lean_Parser_ParserState_mkNode(x_42, x_43, x_18); @@ -12522,7 +12565,7 @@ else { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_dec(x_27); -x_46 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_46 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_47 = l_Lean_Parser_ParserState_mkErrorsAt(x_26, x_46, x_25); x_48 = l_Lean_Parser_Term_structInst___elambda__1___closed__2; x_49 = l_Lean_Parser_ParserState_mkNode(x_47, x_48, x_18); @@ -13002,7 +13045,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_typeSpec___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_typeSpec___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -13320,7 +13363,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_subtype___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_subtype___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -13531,7 +13574,7 @@ lean_dec(x_30); if (x_32 == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_33 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_34 = l_Lean_Parser_ParserState_mkErrorsAt(x_26, x_33, x_25); x_35 = l_Lean_Parser_Term_subtype___elambda__1___closed__2; x_36 = l_Lean_Parser_ParserState_mkNode(x_34, x_35, x_18); @@ -13554,7 +13597,7 @@ else { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_dec(x_29); -x_41 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_41 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_42 = l_Lean_Parser_ParserState_mkErrorsAt(x_26, x_41, x_25); x_43 = l_Lean_Parser_Term_subtype___elambda__1___closed__2; x_44 = l_Lean_Parser_ParserState_mkNode(x_42, x_43, x_18); @@ -13567,7 +13610,7 @@ else { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_dec(x_27); -x_46 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_46 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_47 = l_Lean_Parser_ParserState_mkErrorsAt(x_26, x_46, x_25); x_48 = l_Lean_Parser_Term_subtype___elambda__1___closed__2; x_49 = l_Lean_Parser_ParserState_mkNode(x_47, x_48, x_18); @@ -14087,7 +14130,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_listLit___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_listLit___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -14585,7 +14628,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -14974,7 +15017,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_explicit___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_explicit___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -15240,7 +15283,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -16086,7 +16129,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_binderDefault___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_binderDefault___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -16317,7 +16360,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_binderTactic___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_binderTactic___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -16558,7 +16601,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -16826,7 +16869,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_implicitBinder___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_implicitBinder___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -17004,7 +17047,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_instBinder___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_instBinder___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -17483,7 +17526,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_depArrow___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_depArrow___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -17937,7 +17980,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -18251,7 +18294,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_forall___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_forall___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -18952,7 +18995,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_matchAlt___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_matchAlt___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -19578,7 +19621,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_match___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_match___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -20473,7 +20516,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_nomatch___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_nomatch___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -20784,7 +20827,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_parser_x21___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_parser_x21___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -21095,7 +21138,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_tparser_x21___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_tparser_x21___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -21406,7 +21449,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_borrowed___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_borrowed___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -21727,7 +21770,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_quotedName___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_quotedName___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -22029,7 +22072,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_stxQuot___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_stxQuot___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -22718,7 +22761,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_match__syntax___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_match__syntax___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -23642,7 +23685,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -24272,7 +24315,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_letEqns___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_letEqns___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -24982,7 +25025,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -25485,7 +25528,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_let___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_let___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -26061,7 +26104,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_doLet___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_doLet___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -26306,7 +26349,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_doId___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_doId___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -26629,7 +26672,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_doPat___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_doPat___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -27129,7 +27172,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_doExpr___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_doExpr___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -27659,7 +27702,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_doSeq___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_doSeq___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -27854,7 +27897,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -28009,7 +28052,7 @@ lean_dec(x_26); if (x_28 == 0) { lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_29 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_29 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_30 = l_Lean_Parser_ParserState_mkErrorsAt(x_22, x_29, x_21); x_31 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_16); @@ -28032,7 +28075,7 @@ else { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_dec(x_25); -x_37 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_37 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_38 = l_Lean_Parser_ParserState_mkErrorsAt(x_22, x_37, x_21); x_39 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_40 = l_Lean_Parser_ParserState_mkNode(x_38, x_39, x_16); @@ -28045,7 +28088,7 @@ else { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_dec(x_23); -x_42 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +x_42 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__13; x_43 = l_Lean_Parser_ParserState_mkErrorsAt(x_22, x_42, x_21); x_44 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_45 = l_Lean_Parser_ParserState_mkNode(x_43, x_44, x_16); @@ -28190,7 +28233,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_do___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_do___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -28575,7 +28618,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_not___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_not___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -28896,7 +28939,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_bnot___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_bnot___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -29207,7 +29250,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_Parser_Term_uminus___elambda__1___closed__1; x_3 = l_Lean_Parser_Term_uminus___elambda__1___closed__3; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -30311,7 +30354,7 @@ uint8_t x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = 1; x_2 = l_Lean_fieldIdxKind___closed__1; x_3 = l_Lean_Parser_fieldIdx___closed__1; -x_4 = 0; +x_4 = 1; x_5 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3, x_4); return x_5; } @@ -30569,34 +30612,24 @@ return x_41; lean_object* _init_l_Lean_Parser_Term_proj___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_appPrec; -x_2 = lean_unsigned_to_nat(1u); -x_3 = lean_nat_add(x_1, x_2); -return x_3; -} -} -lean_object* _init_l_Lean_Parser_Term_proj___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_proj___closed__1; +x_1 = l_Lean_Parser_mkAntiquot___closed__4; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_Lean_Parser_Term_proj___closed__3() { +lean_object* _init_l_Lean_Parser_Term_proj___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_proj___elambda__1___closed__3; -x_2 = l_Lean_Parser_Term_proj___closed__2; +x_2 = l_Lean_Parser_Term_proj___closed__1; x_3 = l_Lean_Parser_symbolNoWsInfo(x_1, x_2); return x_3; } } -lean_object* _init_l_Lean_Parser_Term_proj___closed__4() { +lean_object* _init_l_Lean_Parser_Term_proj___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -30608,23 +30641,33 @@ x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } -lean_object* _init_l_Lean_Parser_Term_proj___closed__5() { +lean_object* _init_l_Lean_Parser_Term_proj___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_namedArgument___elambda__1___closed__3; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Term_proj___closed__4; +x_3 = l_Lean_Parser_Term_proj___closed__3; x_4 = l_Lean_Parser_orelseInfo(x_3, x_2); return x_4; } } +lean_object* _init_l_Lean_Parser_Term_proj___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_proj___closed__2; +x_2 = l_Lean_Parser_Term_proj___closed__4; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} lean_object* _init_l_Lean_Parser_Term_proj___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_proj___closed__3; +x_1 = l_Lean_Parser_epsilonInfo; x_2 = l_Lean_Parser_Term_proj___closed__5; x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; @@ -30634,23 +30677,13 @@ lean_object* _init_l_Lean_Parser_Term_proj___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Term_proj___closed__6; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -lean_object* _init_l_Lean_Parser_Term_proj___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_proj___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_proj___closed__7; +x_2 = l_Lean_Parser_Term_proj___closed__6; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; } } -lean_object* _init_l_Lean_Parser_Term_proj___closed__9() { +lean_object* _init_l_Lean_Parser_Term_proj___closed__8() { _start: { lean_object* x_1; @@ -30658,12 +30691,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_proj___elambda__1), 3, 0); return x_1; } } -lean_object* _init_l_Lean_Parser_Term_proj___closed__10() { +lean_object* _init_l_Lean_Parser_Term_proj___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_proj___closed__8; -x_2 = l_Lean_Parser_Term_proj___closed__9; +x_1 = l_Lean_Parser_Term_proj___closed__7; +x_2 = l_Lean_Parser_Term_proj___closed__8; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -30674,7 +30707,7 @@ lean_object* _init_l_Lean_Parser_Term_proj() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Term_proj___closed__10; +x_1 = l_Lean_Parser_Term_proj___closed__9; return x_1; } } @@ -31020,7 +31053,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_listLit___elambda__1___closed__5; -x_2 = l_Lean_Parser_Term_proj___closed__2; +x_2 = l_Lean_Parser_Term_proj___closed__1; x_3 = l_Lean_Parser_symbolNoWsInfo(x_1, x_2); return x_3; } @@ -31625,7 +31658,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_dollarProj___closed__1; -x_2 = l_Lean_Parser_Term_proj___closed__5; +x_2 = l_Lean_Parser_Term_proj___closed__4; x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; } @@ -36054,6 +36087,8 @@ l_Lean_Parser_Term_explicitUniv___elambda__1___closed__14 = _init_l_Lean_Parser_ lean_mark_persistent(l_Lean_Parser_Term_explicitUniv___elambda__1___closed__14); l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15 = _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15(); lean_mark_persistent(l_Lean_Parser_Term_explicitUniv___elambda__1___closed__15); +l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16 = _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16(); +lean_mark_persistent(l_Lean_Parser_Term_explicitUniv___elambda__1___closed__16); l_Lean_Parser_Term_explicitUniv___closed__1 = _init_l_Lean_Parser_Term_explicitUniv___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_explicitUniv___closed__1); l_Lean_Parser_Term_explicitUniv___closed__2 = _init_l_Lean_Parser_Term_explicitUniv___closed__2(); @@ -36074,6 +36109,8 @@ l_Lean_Parser_Term_explicitUniv___closed__9 = _init_l_Lean_Parser_Term_explicitU lean_mark_persistent(l_Lean_Parser_Term_explicitUniv___closed__9); l_Lean_Parser_Term_explicitUniv___closed__10 = _init_l_Lean_Parser_Term_explicitUniv___closed__10(); lean_mark_persistent(l_Lean_Parser_Term_explicitUniv___closed__10); +l_Lean_Parser_Term_explicitUniv___closed__11 = _init_l_Lean_Parser_Term_explicitUniv___closed__11(); +lean_mark_persistent(l_Lean_Parser_Term_explicitUniv___closed__11); l_Lean_Parser_Term_explicitUniv = _init_l_Lean_Parser_Term_explicitUniv(); lean_mark_persistent(l_Lean_Parser_Term_explicitUniv); l_Lean_Parser_Term_namedPattern___elambda__1___closed__1 = _init_l_Lean_Parser_Term_namedPattern___elambda__1___closed__1(); @@ -38370,8 +38407,6 @@ l_Lean_Parser_Term_proj___closed__8 = _init_l_Lean_Parser_Term_proj___closed__8( lean_mark_persistent(l_Lean_Parser_Term_proj___closed__8); l_Lean_Parser_Term_proj___closed__9 = _init_l_Lean_Parser_Term_proj___closed__9(); lean_mark_persistent(l_Lean_Parser_Term_proj___closed__9); -l_Lean_Parser_Term_proj___closed__10 = _init_l_Lean_Parser_Term_proj___closed__10(); -lean_mark_persistent(l_Lean_Parser_Term_proj___closed__10); l_Lean_Parser_Term_proj = _init_l_Lean_Parser_Term_proj(); lean_mark_persistent(l_Lean_Parser_Term_proj); res = l___regBuiltinParser_Lean_Parser_Term_proj(lean_io_mk_world());