diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index 0cf443a916..b00bbf2798 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -114,7 +114,7 @@ private partial def quoteSyntax : Syntax → TermElabM Term match stx[0] with | Syntax.atom _ val => `(Syntax.atom (Option.getD (getHeadInfo? $(getAntiquotTerm stx)) info) $(quote val)) | _ => throwErrorAt stx "expected token" - else if isAntiquotSuffixSplice stx && !isEscapedAntiquot stx then + else if isAntiquotSuffixSplice stx && !isEscapedAntiquot (getCanonicalAntiquot (getAntiquotSuffixSpliceInner stx)) then -- splices must occur in a `many` node throwErrorAt stx "unexpected antiquotation splice" else if isAntiquotSplice stx && !isEscapedAntiquot stx then @@ -125,7 +125,7 @@ private partial def quoteSyntax : Syntax → TermElabM Term let mut args := ArrayStxBuilder.empty let appendName := if (← getEnv).contains ``Array.append then ``Array.append else ``Array.appendCore for arg in stx.getArgs do - if k == nullKind && isAntiquotSuffixSplice arg then + if k == nullKind && isAntiquotSuffixSplice arg && !isEscapedAntiquot (getCanonicalAntiquot (getAntiquotSuffixSpliceInner arg)) then let antiquot := getAntiquotSuffixSpliceInner arg let ks := antiquotKinds antiquot |>.map (·.1) let val := getAntiquotTerm (getCanonicalAntiquot antiquot) @@ -139,7 +139,7 @@ private partial def quoteSyntax : Syntax → TermElabM Term let sep := quote <| getSepFromSplice arg `(@TSepArray.elemsAndSeps $(quote ks) $sep $val) | k => throwErrorAt arg "invalid antiquotation suffix splice kind '{k}'" - else if k == nullKind && isAntiquotSplice arg then + else if k == nullKind && isAntiquotSplice arg && !isEscapedAntiquot arg then let k := antiquotSpliceKind? arg let (arg, bindLets) ← floatOutAntiquotTerms arg |>.run pure let inner ← (getAntiquotSpliceContents arg).mapM quoteSyntax diff --git a/stage0/src/Lean/Linter/Basic.lean b/stage0/src/Lean/Linter/Basic.lean index c2f28b5abc..7efba9735b 100644 --- a/stage0/src/Lean/Linter/Basic.lean +++ b/stage0/src/Lean/Linter/Basic.lean @@ -6,7 +6,7 @@ import Lean.Server.References import Std.Data.HashMap namespace Lean.Linter -open Lean.Server Std +open Lean.Elab.Command Lean.Server Std register_builtin_option linter.unusedVariables : Bool := { defValue := true, @@ -25,6 +25,131 @@ def getLinterUnusedVariables (o : Options) : Bool := o.get linter.unusedVariable def getLinterUnusedVariablesFunArgs (o : Options) : Bool := o.get linter.unusedVariables.funArgs.name (getLinterUnusedVariables o) def getLinterUnusedVariablesPatternVars (o : Options) : Bool := o.get linter.unusedVariables.patternVars.name (getLinterUnusedVariables o) + +builtin_initialize builtinUnusedVariablesIgnoreFnsRef : IO.Ref <| Array IgnoreFunction ← IO.mkRef #[] + +def addBuiltinUnusedVariablesIgnoreFn (ignoreFn : IgnoreFunction) : IO Unit := do + (← builtinUnusedVariablesIgnoreFnsRef.get) |> (·.push ignoreFn) |> builtinUnusedVariablesIgnoreFnsRef.set + + +-- matches builtinUnused variable pattern +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun stx _ _ => + stx.getId.toString.startsWith "_") + +-- is variable +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack _ => + stackMatches stack [`null, none, `null, ``Lean.Parser.Command.variable]) + +-- is in structure +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack _ => + stackMatches stack [`null, none, `null, ``Lean.Parser.Command.structure]) + +-- is in inductive +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack _ => + stackMatches stack [`null, none, `null, none, ``Lean.Parser.Command.inductive] && + (stack.get? 3 |>.any fun (stx, pos) => + pos == 0 && + [``Lean.Parser.Command.optDeclSig, ``Lean.Parser.Command.declSig].any (stx.isOfKind ·))) + +-- in in constructor or structure binder +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack _ => + stackMatches stack [`null, none, `null, ``Lean.Parser.Command.optDeclSig, none] && + (stack.get? 4 |>.any fun (stx, _) => + [``Lean.Parser.Command.ctor, ``Lean.Parser.Command.structSimpleBinder].any (stx.isOfKind ·))) + +-- is in opaque or axiom +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack _ => + stackMatches stack [`null, none, `null, ``Lean.Parser.Command.declSig, none] && + (stack.get? 4 |>.any fun (stx, _) => + [``Lean.Parser.Command.opaque, ``Lean.Parser.Command.axiom].any (stx.isOfKind ·))) + +-- is in definition with foreign definition +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack _ => + stackMatches stack [`null, none, `null, none, none, ``Lean.Parser.Command.declaration] && + (stack.get? 3 |>.any fun (stx, _) => + stx.isOfKind ``Lean.Parser.Command.optDeclSig || + stx.isOfKind ``Lean.Parser.Command.declSig) && + (stack.get? 5 |>.any fun (stx, _) => Id.run <| do + let declModifiers := stx[0] + if !declModifiers.isOfKind ``Lean.Parser.Command.declModifiers then + return false + let termAttributes := declModifiers[1][0] + if !termAttributes.isOfKind ``Lean.Parser.Term.attributes then + return false + let termAttrInstance := termAttributes[1][0] + if !termAttrInstance.isOfKind ``Lean.Parser.Term.attrInstance then + return false + + let attr := termAttrInstance[1] + if attr.isOfKind ``Lean.Parser.Attr.extern then + return true + else if attr.isOfKind ``Lean.Parser.Attr.simple then + return attr[0].getId == `implementedBy + else + return false)) + +-- is in dependent arrow +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack _ => + stackMatches stack [`null, ``Lean.Parser.Term.explicitBinder, ``Lean.Parser.Term.depArrow]) + +-- is in let declaration +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack opts => + !getLinterUnusedVariablesFunArgs opts && + stackMatches stack [`null, none, `null, ``Lean.Parser.Term.letIdDecl, none] && + (stack.get? 3 |>.any fun (_, pos) => pos == 1) && + (stack.get? 5 |>.any fun (stx, _) => !stx.isOfKind ``Lean.Parser.Command.whereStructField)) + +-- is in declaration signature +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack opts => + !getLinterUnusedVariablesFunArgs opts && + stackMatches stack [`null, none, `null, none] && + (stack.get? 3 |>.any fun (stx, pos) => + pos == 0 && + [``Lean.Parser.Command.optDeclSig, ``Lean.Parser.Command.declSig].any (stx.isOfKind ·))) + +-- is in function definition +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack opts => + !getLinterUnusedVariablesFunArgs opts && + (stackMatches stack [`null, ``Lean.Parser.Term.basicFun] || + stackMatches stack [`null, ``Lean.Parser.Term.paren, `null, ``Lean.Parser.Term.basicFun])) + +-- is pattern variable +builtin_initialize addBuiltinUnusedVariablesIgnoreFn (fun _ stack opts => + !getLinterUnusedVariablesPatternVars opts && + stack.any fun (stx, pos) => + (stx.isOfKind ``Lean.Parser.Term.matchAlt && pos == 1) || + (stx.isOfKind ``Lean.Parser.Tactic.inductionAltLHS && pos == 2)) + + +builtin_initialize unusedVariablesIgnoreFnsExt : SimplePersistentEnvExtension Name Unit ← + registerSimplePersistentEnvExtension { + name := `unusedVariablesIgnoreFns + addEntryFn := fun _ _ => () + addImportedFn := fun _ => () + } + +builtin_initialize + registerBuiltinAttribute { + name := `unusedVariablesIgnoreFn + descr := "Marks a function of type `Lean.Linter.IgnoreFunction` for suppressing unused variable warnings" + add := fun decl stx kind => do + Attribute.Builtin.ensureNoArgs stx + unless kind == AttributeKind.global do throwError "invalid attribute 'unusedVariablesIgnoreFn', must be global" + unless (← getConstInfo decl).type.isConstOf ``IgnoreFunction do + throwError "invalid attribute 'unusedVariablesIgnoreFn', must be of type `Lean.Linter.IgnoreFunction`" + let env ← getEnv + setEnv <| unusedVariablesIgnoreFnsExt.addEntry env decl + } + +unsafe def getUnusedVariablesIgnoreFnsImpl : CommandElabM (Array IgnoreFunction) := do + let ents := unusedVariablesIgnoreFnsExt.getEntries (← getEnv) + let ents ← ents.mapM (evalConstCheck IgnoreFunction ``IgnoreFunction) + return (← builtinUnusedVariablesIgnoreFnsRef.get) ++ ents + +@[implementedBy getUnusedVariablesIgnoreFnsImpl] +opaque getUnusedVariablesIgnoreFns : CommandElabM (Array IgnoreFunction) + + def unusedVariables : Linter := fun cmdStx => do -- NOTE: `messages` is local to the current command if (← get).messages.hasErrors then @@ -74,6 +199,10 @@ def unusedVariables : Linter := fun cmdStx => do | _ => pure () return s + -- collect ignore functions + let ignoreFns := (← getUnusedVariablesIgnoreFns) + |>.insertAt 0 (isTopLevelDecl constDecls) + -- determine unused variables for (id, ⟨decl?, uses⟩) in vars.toList do -- process declaration @@ -96,32 +225,9 @@ def unusedVariables : Linter := fun cmdStx => do if !getLinterUnusedVariables opts then continue - -- collect ignore functions - let mut ignoreFns := #[ - isTopLevelDecl constDecls, - matchesUnusedPattern, - isVariable, - isInStructure, - isInInductive, - isInCtorOrStructBinder, - isInOpaqueOrAxiom, - isInDefWithForeignDefinition, - isInDepArrow - ] - if !getLinterUnusedVariablesFunArgs opts then - ignoreFns := ignoreFns.append #[ - isInLetDeclaration, - isInDeclarationSignature, - isInFun - ] - if !getLinterUnusedVariablesPatternVars opts then - ignoreFns := ignoreFns.append #[ - isPatternVar - ] - -- evaluate ignore functions on original syntax if let some stack := findSyntaxStack? cmdStx declStx then - if ignoreFns.any (· declStx stack) then + if ignoreFns.any (· declStx stack opts) then continue else continue @@ -131,7 +237,7 @@ def unusedVariables : Linter := fun cmdStx => do if let some macroExpansions ← collectMacroExpansions? range tree then return macroExpansions.any fun expansion => if let some stack := findSyntaxStack? expansion.output declStx then - ignoreFns.any (· declStx stack) + ignoreFns.any (· declStx stack opts) else false else @@ -149,74 +255,11 @@ where stx[0] else stx - - isTopLevelDecl (constDecls : HashSet String.Range) (stx : Syntax) (stack : SyntaxStack) := Id.run <| do + isTopLevelDecl (constDecls : HashSet String.Range) : IgnoreFunction := fun stx stack _ => Id.run <| do let some declRange := stx.getRange? | false constDecls.contains declRange && !stackMatches stack [``Lean.Parser.Term.letIdDecl] - matchesUnusedPattern (stx : Syntax) (_ : SyntaxStack) := - stx.getId.toString.startsWith "_" - isVariable (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, none, `null, ``Lean.Parser.Command.variable] - isInStructure (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, none, `null, ``Lean.Parser.Command.structure] - isInInductive (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, none, `null, none, ``Lean.Parser.Command.inductive] && - (stack.get? 3 |>.any fun (stx, pos) => - pos == 0 && - [``Lean.Parser.Command.optDeclSig, ``Lean.Parser.Command.declSig].any (stx.isOfKind ·)) - isInCtorOrStructBinder (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, none, `null, ``Lean.Parser.Command.optDeclSig, none] && - (stack.get? 4 |>.any fun (stx, _) => - [``Lean.Parser.Command.ctor, ``Lean.Parser.Command.structSimpleBinder].any (stx.isOfKind ·)) - isInOpaqueOrAxiom (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, none, `null, ``Lean.Parser.Command.declSig, none] && - (stack.get? 4 |>.any fun (stx, _) => - [``Lean.Parser.Command.opaque, ``Lean.Parser.Command.axiom].any (stx.isOfKind ·)) - isInDefWithForeignDefinition (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, none, `null, none, none, ``Lean.Parser.Command.declaration] && - (stack.get? 3 |>.any fun (stx, _) => - stx.isOfKind ``Lean.Parser.Command.optDeclSig || - stx.isOfKind ``Lean.Parser.Command.declSig) && - (stack.get? 5 |>.any fun (stx, _) => Id.run <| do - let declModifiers := stx[0] - if !declModifiers.isOfKind ``Lean.Parser.Command.declModifiers then - return false - let termAttributes := declModifiers[1][0] - if !termAttributes.isOfKind ``Lean.Parser.Term.attributes then - return false - let termAttrInstance := termAttributes[1][0] - if !termAttrInstance.isOfKind ``Lean.Parser.Term.attrInstance then - return false - - let attr := termAttrInstance[1] - if attr.isOfKind ``Lean.Parser.Attr.extern then - return true - else if attr.isOfKind ``Lean.Parser.Attr.simple then - return attr[0].getId == `implementedBy - else - return false) - isInDepArrow (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, ``Lean.Parser.Term.explicitBinder, ``Lean.Parser.Term.depArrow] - - isInLetDeclaration (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, none, `null, ``Lean.Parser.Term.letIdDecl, none] && - (stack.get? 3 |>.any fun (_, pos) => pos == 1) && - (stack.get? 5 |>.any fun (stx, _) => !stx.isOfKind ``Lean.Parser.Command.whereStructField) - isInDeclarationSignature (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, none, `null, none] && - (stack.get? 3 |>.any fun (stx, pos) => - pos == 0 && - [``Lean.Parser.Command.optDeclSig, ``Lean.Parser.Command.declSig].any (stx.isOfKind ·)) - isInFun (_ : Syntax) (stack : SyntaxStack) := - stackMatches stack [`null, ``Lean.Parser.Term.basicFun] || - stackMatches stack [`null, ``Lean.Parser.Term.paren, `null, ``Lean.Parser.Term.basicFun] - - isPatternVar (_ : Syntax) (stack : SyntaxStack) := - stack.any fun (stx, pos) => - (stx.isOfKind ``Lean.Parser.Term.matchAlt && pos == 1) || - (stx.isOfKind ``Lean.Parser.Tactic.inductionAltLHS && pos == 2) builtin_initialize addLinter unusedVariables diff --git a/stage0/src/Lean/Linter/Util.lean b/stage0/src/Lean/Linter/Util.lean index 90f4ee0fd4..60505ec30a 100644 --- a/stage0/src/Lean/Linter/Util.lean +++ b/stage0/src/Lean/Linter/Util.lean @@ -85,4 +85,6 @@ def stackMatches (stack : SyntaxStack) (pattern : List $ Option SyntaxNodeKind) |>.zipWith (fun (s, _) p => p |>.map (s.isOfKind ·) |>.getD true) pattern |>.all id) +abbrev IgnoreFunction := Syntax → SyntaxStack → Options → Bool + end Lean.Linter diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index 6956d89127..6806378d59 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -13,7 +13,6 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__1; lean_object* l_List_reverse___rarg(lean_object*); uint8_t l_Lean_Syntax_isQuot(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__18___boxed(lean_object**); @@ -22,17 +21,17 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__50; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__20; lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__18; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__3; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__19(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___boxed(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__11___boxed(lean_object**); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__54; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__2; lean_object* l_Lean_Syntax_unescapeAntiquot(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__13; uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); @@ -40,17 +39,19 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quota static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__38; lean_object* l_Lean_extractMacroScopes(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__1; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__6; size_t lean_usize_add(size_t, size_t); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__3; LEAN_EXPORT lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Term_Quotation_getQuotKind___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__63; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__3; lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__33; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__29; lean_object* l_List_tail_x21___rarg(lean_object*); @@ -58,16 +59,15 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ uint8_t l_Lean_Syntax_isTokenAntiquot(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__24; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__2; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__2; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__48; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__17; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__9; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__25; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__14; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__28; lean_object* l_Lean_stringToMessageData(lean_object*); @@ -76,20 +76,17 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__6; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__4; lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__4; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__30; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__76; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__27; @@ -97,9 +94,12 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__46; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__9; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__21; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__30; static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_empty___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__25; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__3; lean_object* l_List_filterTRAux___at_Lean_resolveGlobalConstCore___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__1; @@ -110,7 +110,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT uint8_t l_List_beq___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__5(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__13; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__29; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__2; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_getQuotKind___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isLitKind(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__26; @@ -118,10 +117,12 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__44; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__3; lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__2; uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__4; lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__1; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__5; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__12(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__6; @@ -135,24 +136,24 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_ma static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__23; lean_object* l_List_mapTRAux___at_Lean_resolveGlobalConstCore___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__13___rarg(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable___boxed(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__34; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__17; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__8; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__34; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__48; @@ -163,7 +164,6 @@ lean_object* l_Lean_SourceInfo_fromRef(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__14; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_filterMap___at_Lean_resolveGlobalConst___spec__1(lean_object*); @@ -174,32 +174,39 @@ static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Ela lean_object* l_List_unzip___rarg(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__10; static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__32; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__3; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__16___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__19___boxed(lean_object**); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_append(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__50; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__16; size_t lean_usize_sub(size_t, size_t); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__11; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__43; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__40; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__4; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_getQuotKind___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__9; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -207,22 +214,22 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__1; lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__20; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__27; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__4; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__7; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__11; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__24; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__7; @@ -232,7 +239,9 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__4; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__12; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -240,21 +249,21 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__11; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__47; lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__4; LEAN_EXPORT lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__1; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__51; lean_object* lean_array_get_size(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__7; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__1; lean_object* lean_string_append(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__48; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__23; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__10; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; @@ -275,9 +284,11 @@ static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__21; LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6___rarg(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__13; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__13___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__19; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3(size_t, size_t, lean_object*); @@ -290,14 +301,15 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__23; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__18; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__3___boxed(lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); static lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1___closed__1; lean_object* l_List_head_x21___rarg(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__1; lean_object* l_Lean_Elab_Term_Quotation_getPatternsVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_mkTuple(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__5; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__13; lean_object* l_Lean_Elab_Term_instInhabitedTermElabM(lean_object*); @@ -314,6 +326,7 @@ uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__18; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__9; @@ -329,47 +342,40 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__63; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___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*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__21; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; static lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_Quotation_getQuotKind___spec__5___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__21; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__24; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__11; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__18; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__11; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__20___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__5; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -388,7 +394,7 @@ static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__49; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__2___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__16; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -402,23 +408,26 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambd LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__18; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__68; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25; uint8_t l_Lean_Syntax_isAntiquots(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__13; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot__; lean_object* l_Lean_Core_withFreshMacroScope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__15; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__3; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_Quotation_getQuotKind___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__1; LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__10___boxed(lean_object**); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__7; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__term_x25_x5b___x7c___x5d__1___spec__3(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__12; @@ -427,6 +436,7 @@ uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__16; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__8(lean_object*, size_t, lean_object*, size_t, size_t); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_docString___closed__1; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__1; @@ -446,18 +456,17 @@ uint8_t l_Lean_Option_get___at_Lean_getSanitizeNames___spec__1(lean_object*, lea static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__25; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__5; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__37; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__52; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__8(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__4; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__26; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__14; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__8; @@ -468,6 +477,7 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__54; lean_object* l_ReaderT_bind___at_Lean_Unhygienic_instMonadQuotationUnhygienic___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -484,8 +494,9 @@ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation_____ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__8; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_getQuotKind___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___rarg(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__17; @@ -494,11 +505,14 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__17; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__7; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__4; LEAN_EXPORT lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Term_Quotation_getQuotKind___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__17; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_docString(lean_object*); @@ -529,6 +543,7 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__11; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__2; lean_object* l_panic___at_Lean_TSyntax_getString___spec__1(lean_object*); @@ -539,19 +554,20 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__23; static lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_Quotation_getQuotKind___spec__5___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__9; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__3; LEAN_EXPORT lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__2___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__53; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__42; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__14; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__10; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__2___closed__7; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__41; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__79; @@ -566,6 +582,7 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_getQuot static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__2; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__2___closed__9; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__42; @@ -590,6 +607,7 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__6; LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_803____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__66; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__56; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__19; @@ -600,7 +618,6 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__77; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__21; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__52; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__4; static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__5; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__28; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__5(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -613,6 +630,7 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ lean_object* l_List_replicateTR___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__14; lean_object* l_Array_back___rarg(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__26; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1___closed__1; @@ -620,7 +638,6 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__23; LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__15___closed__2; lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -644,13 +661,14 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__4; static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__3; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__32; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__10; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__10; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__20; lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__15; @@ -659,16 +677,19 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__22; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__19; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(lean_object*); LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; lean_object* l_Std_RBNode_find___at___private_Lean_Hygiene_0__Lean_sanitizeSyntaxAux___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_13812_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_13840_(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__45; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; @@ -677,7 +698,6 @@ lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__8; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__17(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__2(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__12; uint8_t l_Array_isEmpty___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__5; @@ -691,36 +711,39 @@ static lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_Quotation_getQ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__24; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__27; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__7; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__3(lean_object*, size_t, size_t, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27(lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__16; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__9; lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__8; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_getQuotKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13___closed__1; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__26; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__2___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__1; LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__75; lean_object* l_String_dropRight(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__66; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__2___closed__5; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__56; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__4; size_t lean_usize_of_nat(lean_object*); static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_empty; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__16; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -737,7 +760,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotati LEAN_EXPORT lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_Quotation_getQuotKind___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange___closed__7; @@ -757,6 +779,7 @@ uint8_t l_Lean_Syntax_isAtom(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__7; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__4; extern lean_object* l_Lean_Elab_Term_termElabAttribute; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__27___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1(lean_object*, lean_object*, lean_object*); @@ -765,21 +788,22 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__60; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__10; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__18; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11; lean_object* l_Lean_Syntax_mkNumLit(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_beq___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__5___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8___boxed(lean_object**); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__29; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__6; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__25; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__24; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__18; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__14; +static lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__47; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__60; @@ -798,6 +822,8 @@ LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_ lean_object* l_String_intercalate(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__28; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__17; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange(lean_object*); lean_object* l_List_redLength___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__15; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__5; @@ -806,16 +832,17 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quot static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___boxed(lean_object**); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__30; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; LEAN_EXPORT lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Term_Quotation_getQuotKind___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__1; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__49; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__2___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__23; @@ -823,42 +850,40 @@ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__5; lean_object* l_Lean_Syntax_getNumArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__13; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__5; LEAN_EXPORT lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876_(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__18; lean_object* lean_environment_main_module(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__3(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__21; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__74; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__22; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__1; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__9; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_panic___at_Lean_expandExplicitBindersAux_loop___spec__1(lean_object*); @@ -870,7 +895,6 @@ static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__14___boxed(lean_object**); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__2; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__9; @@ -880,41 +904,34 @@ static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__10; LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__58; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__1(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__1; LEAN_EXPORT uint8_t l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__4; lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__69; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__20; -static lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__11; lean_object* l_Lean_quoteNameMk(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__26; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__2___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__19; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__2; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__13; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange(lean_object*); static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__8; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -922,8 +939,9 @@ lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax__ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1; static lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_Quotation_getQuotKind___spec__2___closed__3; LEAN_EXPORT lean_object* l_Array_sequenceMap___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___spec__1___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3(lean_object*, size_t, size_t, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__11; static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__24; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__11; @@ -932,28 +950,25 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__61; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__2; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__19; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__2; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__22; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__31; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__59; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__1; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__2; lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__9; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__45; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__19; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -963,29 +978,29 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__13___boxed(lean_object**); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__4; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__2; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__2; LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__2; lean_object* l_Lean_throwError___at_Lean_Elab_Term_synthesizeInstMVarCore___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__7; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__25; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__9; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__4; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___boxed(lean_object**); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__22; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__4; lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__2___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__14; @@ -995,28 +1010,21 @@ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation_____ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__40; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__8; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__9; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__6; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__16(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__57; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__15(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__9; static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__40; @@ -1025,13 +1033,11 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__4; lean_object* l_Lean_Syntax_getAntiquotSpliceContents(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__7; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__8; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__36; lean_object* lean_mk_array(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__57; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__5; LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1039,12 +1045,12 @@ uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__39; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__16; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__26; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___boxed(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__25; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__4; static lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__27; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1057,8 +1063,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__17; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__7; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__19; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__4; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__35; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange___closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; @@ -1074,7 +1082,6 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__39; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable_loop(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isEscapedAntiquot(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1086,17 +1093,17 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__2; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__29___boxed(lean_object*); lean_object* l_Lean_addBuiltinDocString(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___boxed(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__16; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__6; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__22; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__24; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__29; static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__70; @@ -1110,33 +1117,34 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__33; LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__4; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__5; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__1; LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___rarg___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__21; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__6; lean_object* l_Array_findIdx_x3f_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__13; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__31; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__2; lean_object* l_Lean_Syntax_antiquotSpliceKind_x3f(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__3; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__28; static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__5___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__15; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__43; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1149,12 +1157,11 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT lean_object* l_Array_sequenceMap___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__28; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__5; LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(lean_object*, lean_object*); @@ -1167,100 +1174,94 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__28; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__78; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; extern lean_object* l_Lean_Elab_Term_Quotation_hygiene; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__15; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__12; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__30; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__16; lean_object* l_Lean_Syntax_getCanonicalAntiquot(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__27___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__72; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__51; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__23; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__20; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__22; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__17; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__38; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__65; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__13; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__18; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__2___closed__10; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__2; lean_object* lean_nat_to_int(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__1; lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__2___closed__7; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__17; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__12; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__39; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__13; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__5___closed__2; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__44; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__13; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__21___boxed(lean_object**); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__4; LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__10; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__4; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__11; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__15; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__35; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__1; static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__9; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__5; LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_803____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__36; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__5; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__3; static lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_Quotation_getQuotKind___spec__2___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__4___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; @@ -1269,7 +1270,6 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__64; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__2; static lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; uint8_t l_Lean_Syntax_isIdent(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__9; @@ -8814,1404 +8814,1055 @@ return x_18; } else { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_29; lean_object* x_39; uint8_t x_40; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_29; lean_object* x_39; uint8_t x_40; lean_object* x_41; x_19 = lean_array_uget(x_6, x_8); x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; x_40 = lean_name_eq(x_1, x_39); if (x_40 == 0) { -lean_object* x_41; -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -x_43 = lean_ctor_get(x_41, 1); -lean_inc(x_43); -lean_dec(x_41); -x_44 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push(x_9, x_42); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -x_20 = x_45; -x_21 = x_43; -goto block_28; -} -else -{ -uint8_t x_46; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_5); -lean_dec(x_3); -x_46 = !lean_is_exclusive(x_41); -if (x_46 == 0) -{ -return x_41; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_41, 0); -x_48 = lean_ctor_get(x_41, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_41); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -else -{ -uint8_t x_50; -x_50 = l_Lean_Syntax_isAntiquotSuffixSplice(x_19); -if (x_50 == 0) -{ -uint8_t x_51; -x_51 = l_Lean_Syntax_isAntiquotSplice(x_19); -if (x_51 == 0) -{ -lean_object* x_52; -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -lean_dec(x_52); -x_55 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push(x_9, x_53); -x_56 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_56, 0, x_55); -x_20 = x_56; -x_21 = x_54; -goto block_28; -} -else -{ -uint8_t x_57; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_5); -lean_dec(x_3); -x_57 = !lean_is_exclusive(x_52); -if (x_57 == 0) -{ -return x_52; -} -else -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_52, 0); -x_59 = lean_ctor_get(x_52, 1); -lean_inc(x_59); -lean_inc(x_58); -lean_dec(x_52); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); -return x_60; -} -} -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = l_Lean_Syntax_antiquotSpliceKind_x3f(x_19); -x_62 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__1; -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_63 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(x_19, x_62, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_63) == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; size_t x_70; lean_object* x_71; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -x_65 = lean_ctor_get(x_63, 1); -lean_inc(x_65); -lean_dec(x_63); -x_66 = lean_ctor_get(x_64, 0); -lean_inc(x_66); -x_67 = lean_ctor_get(x_64, 1); -lean_inc(x_67); -lean_dec(x_64); -x_68 = l_Lean_Syntax_getAntiquotSpliceContents(x_66); -x_69 = lean_array_get_size(x_68); -x_70 = lean_usize_of_nat(x_69); -lean_dec(x_69); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_71 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_70, x_4, x_68, x_10, x_11, x_12, x_13, x_14, x_15, x_65); -if (lean_obj_tag(x_71) == 0) -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_71, 1); -lean_inc(x_73); -lean_dec(x_71); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_66); -x_74 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_66, x_10, x_11, x_12, x_13, x_14, x_15, x_73); -if (lean_obj_tag(x_74) == 0) -{ -lean_object* x_75; lean_object* x_76; uint8_t x_77; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -lean_dec(x_74); -x_77 = l_Array_isEmpty___rarg(x_75); -if (x_77 == 0) -{ -lean_object* x_78; lean_object* x_79; -x_78 = lean_box(0); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_3); -lean_inc(x_5); -x_79 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3(x_67, x_5, x_61, x_66, x_39, x_75, x_3, x_72, x_4, x_9, x_78, x_10, x_11, x_12, x_13, x_14, x_15, x_76); -if (lean_obj_tag(x_79) == 0) -{ -lean_object* x_80; lean_object* x_81; -x_80 = lean_ctor_get(x_79, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_79, 1); -lean_inc(x_81); -lean_dec(x_79); -x_20 = x_80; -x_21 = x_81; -goto block_28; -} -else -{ -uint8_t x_82; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_5); -lean_dec(x_3); -x_82 = !lean_is_exclusive(x_79); -if (x_82 == 0) -{ -return x_79; -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_83 = lean_ctor_get(x_79, 0); -x_84 = lean_ctor_get(x_79, 1); -lean_inc(x_84); -lean_inc(x_83); -lean_dec(x_79); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -return x_85; -} -} -} -else -{ -lean_object* x_86; lean_object* x_87; uint8_t x_88; -lean_dec(x_75); -lean_dec(x_72); -lean_dec(x_67); -lean_dec(x_66); -lean_dec(x_61); -lean_dec(x_9); -lean_dec(x_5); -lean_dec(x_3); -x_86 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__3; -x_87 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__22(x_2, x_86, x_10, x_11, x_12, x_13, x_14, x_15, x_76); -lean_dec(x_15); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -x_88 = !lean_is_exclusive(x_87); -if (x_88 == 0) -{ -return x_87; -} -else -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_87, 0); -x_90 = lean_ctor_get(x_87, 1); -lean_inc(x_90); -lean_inc(x_89); -lean_dec(x_87); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_89); -lean_ctor_set(x_91, 1, x_90); -return x_91; -} -} -} -else -{ -uint8_t x_92; -lean_dec(x_72); -lean_dec(x_67); -lean_dec(x_66); -lean_dec(x_61); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_5); -lean_dec(x_3); -x_92 = !lean_is_exclusive(x_74); -if (x_92 == 0) -{ -return x_74; -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_74, 0); -x_94 = lean_ctor_get(x_74, 1); -lean_inc(x_94); -lean_inc(x_93); -lean_dec(x_74); -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_93); -lean_ctor_set(x_95, 1, x_94); -return x_95; -} -} -} -else -{ -uint8_t x_96; -lean_dec(x_67); -lean_dec(x_66); -lean_dec(x_61); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_5); -lean_dec(x_3); -x_96 = !lean_is_exclusive(x_71); -if (x_96 == 0) -{ -return x_71; -} -else -{ -lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_97 = lean_ctor_get(x_71, 0); -x_98 = lean_ctor_get(x_71, 1); -lean_inc(x_98); -lean_inc(x_97); -lean_dec(x_71); -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_97); -lean_ctor_set(x_99, 1, x_98); -return x_99; -} -} -} -else -{ -uint8_t x_100; -lean_dec(x_61); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_5); -lean_dec(x_3); -x_100 = !lean_is_exclusive(x_63); -if (x_100 == 0) -{ -return x_63; -} -else -{ -lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_101 = lean_ctor_get(x_63, 0); -x_102 = lean_ctor_get(x_63, 1); -lean_inc(x_102); -lean_inc(x_101); -lean_dec(x_63); -x_103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_103, 0, x_101); -lean_ctor_set(x_103, 1, x_102); -return x_103; -} -} -} -} -else -{ -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; -x_104 = lean_unsigned_to_nat(0u); -x_105 = l_Lean_Syntax_getArg(x_19, x_104); -lean_inc(x_105); -x_106 = l_Lean_Syntax_antiquotKinds(x_105); -x_107 = lean_box(0); -x_108 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_106, x_107); -x_109 = l_Lean_Syntax_getCanonicalAntiquot(x_105); -x_110 = l_Lean_Syntax_getAntiquotTerm(x_109); -lean_dec(x_109); -x_111 = l_Lean_Syntax_antiquotSuffixSplice_x3f(x_19); -if (lean_obj_tag(x_111) == 0) -{ -lean_object* x_112; lean_object* x_113; -lean_dec(x_110); -lean_dec(x_108); -x_112 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__12; -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_113 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_19, x_112, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -x_29 = x_113; -goto block_38; -} -else -{ -lean_object* x_114; -x_114 = lean_ctor_get(x_111, 0); -lean_inc(x_114); -lean_dec(x_111); -if (lean_obj_tag(x_114) == 1) -{ lean_object* x_115; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -if (lean_obj_tag(x_115) == 0) +x_115 = lean_box(0); +x_41 = x_115; +goto block_114; +} +else { -lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_116 = lean_ctor_get(x_114, 1); -lean_inc(x_116); -x_117 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__15; -x_118 = lean_string_dec_eq(x_116, x_117); -if (x_118 == 0) +uint8_t x_116; +x_116 = l_Lean_Syntax_isAntiquotSuffixSplice(x_19); +if (x_116 == 0) { -lean_object* x_119; uint8_t x_120; -x_119 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__18; -x_120 = lean_string_dec_eq(x_116, x_119); -if (x_120 == 0) +lean_object* x_117; +x_117 = lean_box(0); +x_41 = x_117; +goto block_114; +} +else { -lean_object* x_121; uint8_t x_122; -x_121 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__2___closed__1; -x_122 = lean_string_dec_eq(x_116, x_121); -lean_dec(x_116); -if (x_122 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; +x_118 = lean_unsigned_to_nat(0u); +x_119 = l_Lean_Syntax_getArg(x_19, x_118); +lean_inc(x_119); +x_120 = l_Lean_Syntax_getCanonicalAntiquot(x_119); +x_121 = l_Lean_Syntax_isEscapedAntiquot(x_120); +if (x_121 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; -lean_dec(x_110); -lean_dec(x_108); -x_123 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_123, 0, x_114); -x_124 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__15; -x_125 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_123); -x_126 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__17; -x_127 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_127, 0, x_125); -lean_ctor_set(x_127, 1, x_126); -x_128 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__5; -x_129 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_129, 0, x_128); -lean_ctor_set(x_129, 1, x_127); -x_130 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__11; -x_131 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_131, 0, x_129); -lean_ctor_set(x_131, 1, x_130); +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; +x_122 = l_Lean_Syntax_antiquotKinds(x_119); +x_123 = lean_box(0); +x_124 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_122, x_123); +x_125 = l_Lean_Syntax_getAntiquotTerm(x_120); +lean_dec(x_120); +x_126 = l_Lean_Syntax_antiquotSuffixSplice_x3f(x_19); +if (lean_obj_tag(x_126) == 0) +{ +lean_object* x_127; lean_object* x_128; +lean_dec(x_125); +lean_dec(x_124); +x_127 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__12; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_132 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_19, x_131, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -x_29 = x_132; +x_128 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_19, x_127, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_29 = x_128; goto block_38; } else { -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; uint8_t x_141; -lean_dec(x_114); -x_133 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_19); -lean_dec(x_19); -x_134 = lean_box(2); -x_135 = l_Lean_Syntax_mkStrLit(x_133, x_134); -lean_dec(x_133); -lean_inc(x_14); -x_136 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_14, x_15, x_16); -x_137 = lean_ctor_get(x_136, 0); -lean_inc(x_137); -x_138 = lean_ctor_get(x_136, 1); -lean_inc(x_138); -lean_dec(x_136); -x_139 = lean_ctor_get(x_14, 10); -lean_inc(x_139); -x_140 = lean_st_ref_get(x_15, x_138); -x_141 = !lean_is_exclusive(x_140); -if (x_141 == 0) +lean_object* x_129; +x_129 = lean_ctor_get(x_126, 0); +lean_inc(x_129); +lean_dec(x_126); +if (lean_obj_tag(x_129) == 1) { -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; -x_142 = lean_ctor_get(x_140, 0); -x_143 = lean_ctor_get(x_142, 0); -lean_inc(x_143); -lean_dec(x_142); -x_144 = lean_environment_main_module(x_143); -x_145 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_137); -x_146 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_146, 0, x_137); +lean_object* x_130; +x_130 = lean_ctor_get(x_129, 0); +lean_inc(x_130); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_131 = lean_ctor_get(x_129, 1); +lean_inc(x_131); +x_132 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__15; +x_133 = lean_string_dec_eq(x_131, x_132); +if (x_133 == 0) +{ +lean_object* x_134; uint8_t x_135; +x_134 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__18; +x_135 = lean_string_dec_eq(x_131, x_134); +if (x_135 == 0) +{ +lean_object* x_136; uint8_t x_137; +x_136 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__2___closed__1; +x_137 = lean_string_dec_eq(x_131, x_136); +lean_dec(x_131); +if (x_137 == 0) +{ +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_dec(x_125); +lean_dec(x_124); +x_138 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_138, 0, x_129); +x_139 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__15; +x_140 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_140, 0, x_139); +lean_ctor_set(x_140, 1, x_138); +x_141 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__17; +x_142 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_142, 0, x_140); +lean_ctor_set(x_142, 1, x_141); +x_143 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__5; +x_144 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_144, 0, x_143); +lean_ctor_set(x_144, 1, x_142); +x_145 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__11; +x_146 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_146, 0, x_144); lean_ctor_set(x_146, 1, x_145); -x_147 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__28; -x_148 = l_Lean_addMacroScope(x_144, x_147, x_139); -x_149 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__24; -x_150 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__34; -x_151 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_151, 0, x_137); -lean_ctor_set(x_151, 1, x_149); -lean_ctor_set(x_151, 2, x_148); -lean_ctor_set(x_151, 3, x_150); -x_152 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_153 = lean_array_push(x_152, x_146); -x_154 = lean_array_push(x_153, x_151); -x_155 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -x_156 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_156, 0, x_134); -lean_ctor_set(x_156, 1, x_155); -lean_ctor_set(x_156, 2, x_154); -x_157 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_108); -x_158 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; -x_159 = lean_array_push(x_158, x_157); -x_160 = lean_array_push(x_159, x_135); -x_161 = lean_array_push(x_160, x_110); -x_162 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_162, 0, x_134); -lean_ctor_set(x_162, 1, x_39); -lean_ctor_set(x_162, 2, x_161); -x_163 = lean_array_push(x_152, x_156); -x_164 = lean_array_push(x_163, x_162); -x_165 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_166 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_166, 0, x_134); -lean_ctor_set(x_166, 1, x_165); -lean_ctor_set(x_166, 2, x_164); -lean_ctor_set(x_140, 0, x_166); -x_29 = x_140; +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_147 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_19, x_146, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_29 = x_147; goto block_38; } else { -lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -x_167 = lean_ctor_get(x_140, 0); -x_168 = lean_ctor_get(x_140, 1); -lean_inc(x_168); -lean_inc(x_167); -lean_dec(x_140); -x_169 = lean_ctor_get(x_167, 0); -lean_inc(x_169); -lean_dec(x_167); -x_170 = lean_environment_main_module(x_169); -x_171 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_137); -x_172 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_172, 0, x_137); -lean_ctor_set(x_172, 1, x_171); -x_173 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__28; -x_174 = l_Lean_addMacroScope(x_170, x_173, x_139); -x_175 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__24; -x_176 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__34; -x_177 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_177, 0, x_137); -lean_ctor_set(x_177, 1, x_175); -lean_ctor_set(x_177, 2, x_174); -lean_ctor_set(x_177, 3, x_176); -x_178 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_179 = lean_array_push(x_178, x_172); -x_180 = lean_array_push(x_179, x_177); -x_181 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -x_182 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_182, 0, x_134); -lean_ctor_set(x_182, 1, x_181); -lean_ctor_set(x_182, 2, x_180); -x_183 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_108); -x_184 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; -x_185 = lean_array_push(x_184, x_183); -x_186 = lean_array_push(x_185, x_135); -x_187 = lean_array_push(x_186, x_110); -x_188 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_188, 0, x_134); -lean_ctor_set(x_188, 1, x_39); -lean_ctor_set(x_188, 2, x_187); -x_189 = lean_array_push(x_178, x_182); -x_190 = lean_array_push(x_189, x_188); -x_191 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_192 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_192, 0, x_134); -lean_ctor_set(x_192, 1, x_191); -lean_ctor_set(x_192, 2, x_190); -x_193 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_168); -x_29 = x_193; +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; uint8_t x_156; +lean_dec(x_129); +x_148 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_19); +lean_dec(x_19); +x_149 = lean_box(2); +x_150 = l_Lean_Syntax_mkStrLit(x_148, x_149); +lean_dec(x_148); +lean_inc(x_14); +x_151 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_14, x_15, x_16); +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +x_153 = lean_ctor_get(x_151, 1); +lean_inc(x_153); +lean_dec(x_151); +x_154 = lean_ctor_get(x_14, 10); +lean_inc(x_154); +x_155 = lean_st_ref_get(x_15, x_153); +x_156 = !lean_is_exclusive(x_155); +if (x_156 == 0) +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_157 = lean_ctor_get(x_155, 0); +x_158 = lean_ctor_get(x_157, 0); +lean_inc(x_158); +lean_dec(x_157); +x_159 = lean_environment_main_module(x_158); +x_160 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_152); +x_161 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_161, 0, x_152); +lean_ctor_set(x_161, 1, x_160); +x_162 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__28; +x_163 = l_Lean_addMacroScope(x_159, x_162, x_154); +x_164 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__24; +x_165 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__34; +x_166 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_166, 0, x_152); +lean_ctor_set(x_166, 1, x_164); +lean_ctor_set(x_166, 2, x_163); +lean_ctor_set(x_166, 3, x_165); +x_167 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_168 = lean_array_push(x_167, x_161); +x_169 = lean_array_push(x_168, x_166); +x_170 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +x_171 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_171, 0, x_149); +lean_ctor_set(x_171, 1, x_170); +lean_ctor_set(x_171, 2, x_169); +x_172 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_124); +x_173 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; +x_174 = lean_array_push(x_173, x_172); +x_175 = lean_array_push(x_174, x_150); +x_176 = lean_array_push(x_175, x_125); +x_177 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_177, 0, x_149); +lean_ctor_set(x_177, 1, x_39); +lean_ctor_set(x_177, 2, x_176); +x_178 = lean_array_push(x_167, x_171); +x_179 = lean_array_push(x_178, x_177); +x_180 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_181 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_181, 0, x_149); +lean_ctor_set(x_181, 1, x_180); +lean_ctor_set(x_181, 2, x_179); +lean_ctor_set(x_155, 0, x_181); +x_29 = x_155; +goto block_38; +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; 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; +x_182 = lean_ctor_get(x_155, 0); +x_183 = lean_ctor_get(x_155, 1); +lean_inc(x_183); +lean_inc(x_182); +lean_dec(x_155); +x_184 = lean_ctor_get(x_182, 0); +lean_inc(x_184); +lean_dec(x_182); +x_185 = lean_environment_main_module(x_184); +x_186 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_152); +x_187 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_187, 0, x_152); +lean_ctor_set(x_187, 1, x_186); +x_188 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__28; +x_189 = l_Lean_addMacroScope(x_185, x_188, x_154); +x_190 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__24; +x_191 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__34; +x_192 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_192, 0, x_152); +lean_ctor_set(x_192, 1, x_190); +lean_ctor_set(x_192, 2, x_189); +lean_ctor_set(x_192, 3, x_191); +x_193 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_194 = lean_array_push(x_193, x_187); +x_195 = lean_array_push(x_194, x_192); +x_196 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +x_197 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_197, 0, x_149); +lean_ctor_set(x_197, 1, x_196); +lean_ctor_set(x_197, 2, x_195); +x_198 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_124); +x_199 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; +x_200 = lean_array_push(x_199, x_198); +x_201 = lean_array_push(x_200, x_150); +x_202 = lean_array_push(x_201, x_125); +x_203 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_203, 0, x_149); +lean_ctor_set(x_203, 1, x_39); +lean_ctor_set(x_203, 2, x_202); +x_204 = lean_array_push(x_193, x_197); +x_205 = lean_array_push(x_204, x_203); +x_206 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_207 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_207, 0, x_149); +lean_ctor_set(x_207, 1, x_206); +lean_ctor_set(x_207, 2, x_205); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_207); +lean_ctor_set(x_208, 1, x_183); +x_29 = x_208; goto block_38; } } } else { -lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; -lean_dec(x_116); -lean_dec(x_114); +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; uint8_t x_214; +lean_dec(x_131); +lean_dec(x_129); lean_dec(x_19); lean_inc(x_14); -x_194 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_14, x_15, x_16); -x_195 = lean_ctor_get(x_194, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_194, 1); -lean_inc(x_196); -lean_dec(x_194); -x_197 = lean_ctor_get(x_14, 10); -lean_inc(x_197); -x_198 = lean_st_ref_get(x_15, x_196); -x_199 = !lean_is_exclusive(x_198); -if (x_199 == 0) +x_209 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_14, x_15, x_16); +x_210 = lean_ctor_get(x_209, 0); +lean_inc(x_210); +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +lean_dec(x_209); +x_212 = lean_ctor_get(x_14, 10); +lean_inc(x_212); +x_213 = lean_st_ref_get(x_15, x_211); +x_214 = !lean_is_exclusive(x_213); +if (x_214 == 0) { -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; -x_200 = lean_ctor_get(x_198, 0); -x_201 = lean_ctor_get(x_200, 0); -lean_inc(x_201); -lean_dec(x_200); -x_202 = lean_environment_main_module(x_201); -x_203 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_195); -x_204 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_204, 0, x_195); -lean_ctor_set(x_204, 1, x_203); -x_205 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__41; -x_206 = l_Lean_addMacroScope(x_202, x_205, x_197); -x_207 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__37; -x_208 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__45; -x_209 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_209, 0, x_195); -lean_ctor_set(x_209, 1, x_207); -lean_ctor_set(x_209, 2, x_206); -lean_ctor_set(x_209, 3, x_208); -x_210 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_211 = lean_array_push(x_210, x_204); -x_212 = lean_array_push(x_211, x_209); -x_213 = lean_box(2); -x_214 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -x_215 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_215, 0, x_213); -lean_ctor_set(x_215, 1, x_214); -lean_ctor_set(x_215, 2, x_212); -x_216 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_108); -x_217 = lean_array_push(x_210, x_216); -x_218 = lean_array_push(x_217, x_110); -x_219 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_219, 0, x_213); -lean_ctor_set(x_219, 1, x_39); -lean_ctor_set(x_219, 2, x_218); -x_220 = lean_array_push(x_210, x_215); -x_221 = lean_array_push(x_220, x_219); -x_222 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_223 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_223, 0, x_213); -lean_ctor_set(x_223, 1, x_222); -lean_ctor_set(x_223, 2, x_221); -lean_ctor_set(x_198, 0, x_223); -x_29 = x_198; +lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_215 = lean_ctor_get(x_213, 0); +x_216 = lean_ctor_get(x_215, 0); +lean_inc(x_216); +lean_dec(x_215); +x_217 = lean_environment_main_module(x_216); +x_218 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_210); +x_219 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_219, 0, x_210); +lean_ctor_set(x_219, 1, x_218); +x_220 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__41; +x_221 = l_Lean_addMacroScope(x_217, x_220, x_212); +x_222 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__37; +x_223 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__45; +x_224 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_224, 0, x_210); +lean_ctor_set(x_224, 1, x_222); +lean_ctor_set(x_224, 2, x_221); +lean_ctor_set(x_224, 3, x_223); +x_225 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_226 = lean_array_push(x_225, x_219); +x_227 = lean_array_push(x_226, x_224); +x_228 = lean_box(2); +x_229 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +x_230 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_230, 0, x_228); +lean_ctor_set(x_230, 1, x_229); +lean_ctor_set(x_230, 2, x_227); +x_231 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_124); +x_232 = lean_array_push(x_225, x_231); +x_233 = lean_array_push(x_232, x_125); +x_234 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_234, 0, x_228); +lean_ctor_set(x_234, 1, x_39); +lean_ctor_set(x_234, 2, x_233); +x_235 = lean_array_push(x_225, x_230); +x_236 = lean_array_push(x_235, x_234); +x_237 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_238 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_238, 0, x_228); +lean_ctor_set(x_238, 1, x_237); +lean_ctor_set(x_238, 2, x_236); +lean_ctor_set(x_213, 0, x_238); +x_29 = x_213; goto block_38; } else { -lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; -x_224 = lean_ctor_get(x_198, 0); -x_225 = lean_ctor_get(x_198, 1); -lean_inc(x_225); -lean_inc(x_224); -lean_dec(x_198); -x_226 = lean_ctor_get(x_224, 0); -lean_inc(x_226); -lean_dec(x_224); -x_227 = lean_environment_main_module(x_226); -x_228 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_195); -x_229 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_229, 0, x_195); -lean_ctor_set(x_229, 1, x_228); -x_230 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__41; -x_231 = l_Lean_addMacroScope(x_227, x_230, x_197); -x_232 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__37; -x_233 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__45; -x_234 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_234, 0, x_195); -lean_ctor_set(x_234, 1, x_232); -lean_ctor_set(x_234, 2, x_231); -lean_ctor_set(x_234, 3, x_233); -x_235 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_236 = lean_array_push(x_235, x_229); -x_237 = lean_array_push(x_236, x_234); -x_238 = lean_box(2); -x_239 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -x_240 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_240, 0, x_238); -lean_ctor_set(x_240, 1, x_239); -lean_ctor_set(x_240, 2, x_237); -x_241 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_108); -x_242 = lean_array_push(x_235, x_241); -x_243 = lean_array_push(x_242, x_110); -x_244 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_244, 0, x_238); -lean_ctor_set(x_244, 1, x_39); -lean_ctor_set(x_244, 2, x_243); -x_245 = lean_array_push(x_235, x_240); -x_246 = lean_array_push(x_245, x_244); -x_247 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_248 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_248, 0, x_238); -lean_ctor_set(x_248, 1, x_247); -lean_ctor_set(x_248, 2, x_246); -x_249 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_249, 0, x_248); -lean_ctor_set(x_249, 1, x_225); -x_29 = x_249; +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; +x_239 = lean_ctor_get(x_213, 0); +x_240 = lean_ctor_get(x_213, 1); +lean_inc(x_240); +lean_inc(x_239); +lean_dec(x_213); +x_241 = lean_ctor_get(x_239, 0); +lean_inc(x_241); +lean_dec(x_239); +x_242 = lean_environment_main_module(x_241); +x_243 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_210); +x_244 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_244, 0, x_210); +lean_ctor_set(x_244, 1, x_243); +x_245 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__41; +x_246 = l_Lean_addMacroScope(x_242, x_245, x_212); +x_247 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__37; +x_248 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__45; +x_249 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_249, 0, x_210); +lean_ctor_set(x_249, 1, x_247); +lean_ctor_set(x_249, 2, x_246); +lean_ctor_set(x_249, 3, x_248); +x_250 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_251 = lean_array_push(x_250, x_244); +x_252 = lean_array_push(x_251, x_249); +x_253 = lean_box(2); +x_254 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +x_255 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_255, 0, x_253); +lean_ctor_set(x_255, 1, x_254); +lean_ctor_set(x_255, 2, x_252); +x_256 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_124); +x_257 = lean_array_push(x_250, x_256); +x_258 = lean_array_push(x_257, x_125); +x_259 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_259, 0, x_253); +lean_ctor_set(x_259, 1, x_39); +lean_ctor_set(x_259, 2, x_258); +x_260 = lean_array_push(x_250, x_255); +x_261 = lean_array_push(x_260, x_259); +x_262 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_263 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_263, 0, x_253); +lean_ctor_set(x_263, 1, x_262); +lean_ctor_set(x_263, 2, x_261); +x_264 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set(x_264, 1, x_240); +x_29 = x_264; goto block_38; } } } else { -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; uint8_t x_255; -lean_dec(x_116); -lean_dec(x_114); +lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; uint8_t x_270; +lean_dec(x_131); +lean_dec(x_129); lean_dec(x_19); lean_inc(x_14); -x_250 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_14, x_15, x_16); -x_251 = lean_ctor_get(x_250, 0); -lean_inc(x_251); -x_252 = lean_ctor_get(x_250, 1); -lean_inc(x_252); -lean_dec(x_250); -x_253 = lean_ctor_get(x_14, 10); -lean_inc(x_253); -x_254 = lean_st_ref_get(x_15, x_252); -x_255 = !lean_is_exclusive(x_254); -if (x_255 == 0) +x_265 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_14, x_15, x_16); +x_266 = lean_ctor_get(x_265, 0); +lean_inc(x_266); +x_267 = lean_ctor_get(x_265, 1); +lean_inc(x_267); +lean_dec(x_265); +x_268 = lean_ctor_get(x_14, 10); +lean_inc(x_268); +x_269 = lean_st_ref_get(x_15, x_267); +x_270 = !lean_is_exclusive(x_269); +if (x_270 == 0) { -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; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; -x_256 = lean_ctor_get(x_254, 0); -x_257 = lean_ctor_get(x_256, 0); -lean_inc(x_257); -lean_dec(x_256); -x_258 = lean_environment_main_module(x_257); -x_259 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__16; -lean_inc(x_251); -x_260 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_260, 0, x_251); -lean_ctor_set(x_260, 1, x_259); -x_261 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__50; -lean_inc(x_253); -lean_inc(x_258); -x_262 = l_Lean_addMacroScope(x_258, x_261, x_253); -x_263 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__49; -x_264 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__52; -lean_inc(x_251); -x_265 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_265, 0, x_251); -lean_ctor_set(x_265, 1, x_263); -lean_ctor_set(x_265, 2, x_262); -lean_ctor_set(x_265, 3, x_264); -x_266 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__7; -lean_inc(x_251); -x_267 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_267, 0, x_251); -lean_ctor_set(x_267, 1, x_266); -x_268 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_251); -x_269 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_269, 0, x_251); -lean_ctor_set(x_269, 1, x_268); -x_270 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; -lean_inc(x_253); -lean_inc(x_258); -x_271 = l_Lean_addMacroScope(x_258, x_270, x_253); -x_272 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; -x_273 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; -lean_inc(x_251); -x_274 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_274, 0, x_251); -lean_ctor_set(x_274, 1, x_272); -lean_ctor_set(x_274, 2, x_271); -lean_ctor_set(x_274, 3, x_273); -x_275 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_276 = lean_array_push(x_275, x_269); -x_277 = lean_array_push(x_276, x_274); -x_278 = lean_box(2); -x_279 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -x_280 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_280, 0, x_278); -lean_ctor_set(x_280, 1, x_279); +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; +x_271 = lean_ctor_get(x_269, 0); +x_272 = lean_ctor_get(x_271, 0); +lean_inc(x_272); +lean_dec(x_271); +x_273 = lean_environment_main_module(x_272); +x_274 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__16; +lean_inc(x_266); +x_275 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_275, 0, x_266); +lean_ctor_set(x_275, 1, x_274); +x_276 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__50; +lean_inc(x_268); +lean_inc(x_273); +x_277 = l_Lean_addMacroScope(x_273, x_276, x_268); +x_278 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__49; +x_279 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__52; +lean_inc(x_266); +x_280 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_280, 0, x_266); +lean_ctor_set(x_280, 1, x_278); lean_ctor_set(x_280, 2, x_277); -x_281 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_108); -x_282 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; -x_283 = lean_array_push(x_282, x_281); -x_284 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_284, 0, x_278); -lean_ctor_set(x_284, 1, x_39); -lean_ctor_set(x_284, 2, x_283); -x_285 = lean_array_push(x_275, x_280); -x_286 = lean_array_push(x_285, x_284); -x_287 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_288 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_288, 0, x_278); -lean_ctor_set(x_288, 1, x_287); -lean_ctor_set(x_288, 2, x_286); -x_289 = lean_array_push(x_275, x_288); -x_290 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__16; -x_291 = lean_array_push(x_289, x_290); -x_292 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_292, 0, x_278); -lean_ctor_set(x_292, 1, x_39); -lean_ctor_set(x_292, 2, x_291); -x_293 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__13; -lean_inc(x_251); -x_294 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_294, 0, x_251); -lean_ctor_set(x_294, 1, x_293); -x_295 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; -x_296 = lean_array_push(x_295, x_267); -x_297 = lean_array_push(x_296, x_292); -x_298 = lean_array_push(x_297, x_294); -x_299 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__6; -x_300 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_300, 0, x_278); -lean_ctor_set(x_300, 1, x_299); -lean_ctor_set(x_300, 2, x_298); -x_301 = lean_array_push(x_275, x_300); -x_302 = lean_array_push(x_301, x_110); +lean_ctor_set(x_280, 3, x_279); +x_281 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__7; +lean_inc(x_266); +x_282 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_282, 0, x_266); +lean_ctor_set(x_282, 1, x_281); +x_283 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_266); +x_284 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_284, 0, x_266); +lean_ctor_set(x_284, 1, x_283); +x_285 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; +lean_inc(x_268); +lean_inc(x_273); +x_286 = l_Lean_addMacroScope(x_273, x_285, x_268); +x_287 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; +x_288 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; +lean_inc(x_266); +x_289 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_289, 0, x_266); +lean_ctor_set(x_289, 1, x_287); +lean_ctor_set(x_289, 2, x_286); +lean_ctor_set(x_289, 3, x_288); +x_290 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_291 = lean_array_push(x_290, x_284); +x_292 = lean_array_push(x_291, x_289); +x_293 = lean_box(2); +x_294 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +x_295 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_295, 0, x_293); +lean_ctor_set(x_295, 1, x_294); +lean_ctor_set(x_295, 2, x_292); +x_296 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_124); +x_297 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; +x_298 = lean_array_push(x_297, x_296); +x_299 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_299, 0, x_293); +lean_ctor_set(x_299, 1, x_39); +lean_ctor_set(x_299, 2, x_298); +x_300 = lean_array_push(x_290, x_295); +x_301 = lean_array_push(x_300, x_299); +x_302 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; x_303 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_303, 0, x_278); -lean_ctor_set(x_303, 1, x_39); -lean_ctor_set(x_303, 2, x_302); -x_304 = lean_array_push(x_275, x_265); -x_305 = lean_array_push(x_304, x_303); -x_306 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_306, 0, x_278); -lean_ctor_set(x_306, 1, x_287); -lean_ctor_set(x_306, 2, x_305); -x_307 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__63; -x_308 = lean_array_push(x_307, x_306); -x_309 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__46; -x_310 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_310, 0, x_278); -lean_ctor_set(x_310, 1, x_309); -lean_ctor_set(x_310, 2, x_308); -x_311 = lean_array_push(x_282, x_310); -x_312 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_312, 0, x_278); -lean_ctor_set(x_312, 1, x_39); -lean_ctor_set(x_312, 2, x_311); -x_313 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__20; -lean_inc(x_251); -x_314 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_314, 0, x_251); -lean_ctor_set(x_314, 1, x_313); -x_315 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__25; -lean_inc(x_251); -x_316 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_316, 0, x_251); -lean_ctor_set(x_316, 1, x_315); -x_317 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__4; -lean_inc(x_253); -lean_inc(x_258); -x_318 = l_Lean_addMacroScope(x_258, x_317, x_253); -x_319 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__3; -x_320 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__65; -lean_inc(x_251); -x_321 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_321, 0, x_251); -lean_ctor_set(x_321, 1, x_319); -lean_ctor_set(x_321, 2, x_318); -lean_ctor_set(x_321, 3, x_320); -x_322 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__69; -lean_inc(x_253); -lean_inc(x_258); -x_323 = l_Lean_addMacroScope(x_258, x_322, x_253); -x_324 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__68; -lean_inc(x_251); -x_325 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_325, 0, x_251); +lean_ctor_set(x_303, 0, x_293); +lean_ctor_set(x_303, 1, x_302); +lean_ctor_set(x_303, 2, x_301); +x_304 = lean_array_push(x_290, x_303); +x_305 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__16; +x_306 = lean_array_push(x_304, x_305); +x_307 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_307, 0, x_293); +lean_ctor_set(x_307, 1, x_39); +lean_ctor_set(x_307, 2, x_306); +x_308 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__13; +lean_inc(x_266); +x_309 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_309, 0, x_266); +lean_ctor_set(x_309, 1, x_308); +x_310 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; +x_311 = lean_array_push(x_310, x_282); +x_312 = lean_array_push(x_311, x_307); +x_313 = lean_array_push(x_312, x_309); +x_314 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__6; +x_315 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_315, 0, x_293); +lean_ctor_set(x_315, 1, x_314); +lean_ctor_set(x_315, 2, x_313); +x_316 = lean_array_push(x_290, x_315); +x_317 = lean_array_push(x_316, x_125); +x_318 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_318, 0, x_293); +lean_ctor_set(x_318, 1, x_39); +lean_ctor_set(x_318, 2, x_317); +x_319 = lean_array_push(x_290, x_280); +x_320 = lean_array_push(x_319, x_318); +x_321 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_321, 0, x_293); +lean_ctor_set(x_321, 1, x_302); +lean_ctor_set(x_321, 2, x_320); +x_322 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__63; +x_323 = lean_array_push(x_322, x_321); +x_324 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__46; +x_325 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_325, 0, x_293); lean_ctor_set(x_325, 1, x_324); lean_ctor_set(x_325, 2, x_323); -lean_ctor_set(x_325, 3, x_107); -x_326 = lean_array_push(x_282, x_325); +x_326 = lean_array_push(x_297, x_325); x_327 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_327, 0, x_278); +lean_ctor_set(x_327, 0, x_293); lean_ctor_set(x_327, 1, x_39); lean_ctor_set(x_327, 2, x_326); -x_328 = lean_array_push(x_275, x_321); -lean_inc(x_327); -x_329 = lean_array_push(x_328, x_327); -x_330 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_330, 0, x_278); -lean_ctor_set(x_330, 1, x_287); -lean_ctor_set(x_330, 2, x_329); -x_331 = lean_array_push(x_282, x_330); -x_332 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_332, 0, x_278); -lean_ctor_set(x_332, 1, x_39); -lean_ctor_set(x_332, 2, x_331); -x_333 = lean_array_push(x_282, x_332); -x_334 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_334, 0, x_278); -lean_ctor_set(x_334, 1, x_39); -lean_ctor_set(x_334, 2, x_333); -x_335 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__12; -lean_inc(x_251); -x_336 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_336, 0, x_251); -lean_ctor_set(x_336, 1, x_335); -x_337 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__29; -lean_inc(x_3); -x_338 = l_Lean_Name_str___override(x_3, x_337); -x_339 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__3; -lean_inc(x_338); -x_340 = l_Lean_Name_str___override(x_338, x_339); -lean_inc(x_253); -lean_inc(x_258); -x_341 = l_Lean_addMacroScope(x_258, x_340, x_253); -x_342 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__73; -lean_inc(x_338); -x_343 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_343, 0, x_338); -lean_ctor_set(x_343, 1, x_342); -x_344 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_344, 0, x_343); -lean_ctor_set(x_344, 1, x_107); -x_345 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__72; -lean_inc(x_251); -x_346 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_346, 0, x_251); -lean_ctor_set(x_346, 1, x_345); -lean_ctor_set(x_346, 2, x_341); -lean_ctor_set(x_346, 3, x_344); -x_347 = lean_array_push(x_275, x_346); -x_348 = lean_array_push(x_347, x_327); +x_328 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__20; +lean_inc(x_266); +x_329 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_329, 0, x_266); +lean_ctor_set(x_329, 1, x_328); +x_330 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__25; +lean_inc(x_266); +x_331 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_331, 0, x_266); +lean_ctor_set(x_331, 1, x_330); +x_332 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__4; +lean_inc(x_268); +lean_inc(x_273); +x_333 = l_Lean_addMacroScope(x_273, x_332, x_268); +x_334 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__3; +x_335 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__65; +lean_inc(x_266); +x_336 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_336, 0, x_266); +lean_ctor_set(x_336, 1, x_334); +lean_ctor_set(x_336, 2, x_333); +lean_ctor_set(x_336, 3, x_335); +x_337 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__69; +lean_inc(x_268); +lean_inc(x_273); +x_338 = l_Lean_addMacroScope(x_273, x_337, x_268); +x_339 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__68; +lean_inc(x_266); +x_340 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_340, 0, x_266); +lean_ctor_set(x_340, 1, x_339); +lean_ctor_set(x_340, 2, x_338); +lean_ctor_set(x_340, 3, x_123); +x_341 = lean_array_push(x_297, x_340); +x_342 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_342, 0, x_293); +lean_ctor_set(x_342, 1, x_39); +lean_ctor_set(x_342, 2, x_341); +x_343 = lean_array_push(x_290, x_336); +lean_inc(x_342); +x_344 = lean_array_push(x_343, x_342); +x_345 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_345, 0, x_293); +lean_ctor_set(x_345, 1, x_302); +lean_ctor_set(x_345, 2, x_344); +x_346 = lean_array_push(x_297, x_345); +x_347 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_347, 0, x_293); +lean_ctor_set(x_347, 1, x_39); +lean_ctor_set(x_347, 2, x_346); +x_348 = lean_array_push(x_297, x_347); x_349 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_349, 0, x_278); -lean_ctor_set(x_349, 1, x_287); +lean_ctor_set(x_349, 0, x_293); +lean_ctor_set(x_349, 1, x_39); lean_ctor_set(x_349, 2, x_348); -x_350 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; -x_351 = lean_array_push(x_350, x_316); -lean_inc(x_351); -x_352 = lean_array_push(x_351, x_334); -lean_inc(x_336); -x_353 = lean_array_push(x_352, x_336); -x_354 = lean_array_push(x_353, x_349); -x_355 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__24; -x_356 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_356, 0, x_278); -lean_ctor_set(x_356, 1, x_355); -lean_ctor_set(x_356, 2, x_354); -x_357 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__76; -lean_inc(x_253); -lean_inc(x_258); -x_358 = l_Lean_addMacroScope(x_258, x_357, x_253); -x_359 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__75; -x_360 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__79; -lean_inc(x_251); +x_350 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__12; +lean_inc(x_266); +x_351 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_351, 0, x_266); +lean_ctor_set(x_351, 1, x_350); +x_352 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__29; +lean_inc(x_3); +x_353 = l_Lean_Name_str___override(x_3, x_352); +x_354 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__3; +lean_inc(x_353); +x_355 = l_Lean_Name_str___override(x_353, x_354); +lean_inc(x_268); +lean_inc(x_273); +x_356 = l_Lean_addMacroScope(x_273, x_355, x_268); +x_357 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__73; +lean_inc(x_353); +x_358 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_358, 0, x_353); +lean_ctor_set(x_358, 1, x_357); +x_359 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_359, 0, x_358); +lean_ctor_set(x_359, 1, x_123); +x_360 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__72; +lean_inc(x_266); x_361 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_361, 0, x_251); -lean_ctor_set(x_361, 1, x_359); -lean_ctor_set(x_361, 2, x_358); -lean_ctor_set(x_361, 3, x_360); -x_362 = lean_array_push(x_282, x_361); -x_363 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_363, 0, x_278); -lean_ctor_set(x_363, 1, x_39); -lean_ctor_set(x_363, 2, x_362); -x_364 = lean_array_push(x_282, x_363); -x_365 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_365, 0, x_278); -lean_ctor_set(x_365, 1, x_39); -lean_ctor_set(x_365, 2, x_364); -lean_inc(x_338); -x_366 = l_Lean_addMacroScope(x_258, x_338, x_253); -x_367 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_367, 0, x_338); -lean_ctor_set(x_367, 1, x_107); -x_368 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_368, 0, x_367); -lean_ctor_set(x_368, 1, x_107); -x_369 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__28; -x_370 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_370, 0, x_251); -lean_ctor_set(x_370, 1, x_369); -lean_ctor_set(x_370, 2, x_366); -lean_ctor_set(x_370, 3, x_368); -x_371 = lean_array_push(x_351, x_365); -x_372 = lean_array_push(x_371, x_336); -x_373 = lean_array_push(x_372, x_370); -x_374 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_374, 0, x_278); -lean_ctor_set(x_374, 1, x_355); -lean_ctor_set(x_374, 2, x_373); -x_375 = lean_array_push(x_275, x_356); -x_376 = lean_array_push(x_375, x_374); -x_377 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_377, 0, x_278); -lean_ctor_set(x_377, 1, x_39); -lean_ctor_set(x_377, 2, x_376); -x_378 = lean_array_push(x_282, x_377); -x_379 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__22; +lean_ctor_set(x_361, 0, x_266); +lean_ctor_set(x_361, 1, x_360); +lean_ctor_set(x_361, 2, x_356); +lean_ctor_set(x_361, 3, x_359); +x_362 = lean_array_push(x_290, x_361); +x_363 = lean_array_push(x_362, x_342); +x_364 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_364, 0, x_293); +lean_ctor_set(x_364, 1, x_302); +lean_ctor_set(x_364, 2, x_363); +x_365 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; +x_366 = lean_array_push(x_365, x_331); +lean_inc(x_366); +x_367 = lean_array_push(x_366, x_349); +lean_inc(x_351); +x_368 = lean_array_push(x_367, x_351); +x_369 = lean_array_push(x_368, x_364); +x_370 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__24; +x_371 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_371, 0, x_293); +lean_ctor_set(x_371, 1, x_370); +lean_ctor_set(x_371, 2, x_369); +x_372 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__76; +lean_inc(x_268); +lean_inc(x_273); +x_373 = l_Lean_addMacroScope(x_273, x_372, x_268); +x_374 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__75; +x_375 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__79; +lean_inc(x_266); +x_376 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_376, 0, x_266); +lean_ctor_set(x_376, 1, x_374); +lean_ctor_set(x_376, 2, x_373); +lean_ctor_set(x_376, 3, x_375); +x_377 = lean_array_push(x_297, x_376); +x_378 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_378, 0, x_293); +lean_ctor_set(x_378, 1, x_39); +lean_ctor_set(x_378, 2, x_377); +x_379 = lean_array_push(x_297, x_378); x_380 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_380, 0, x_278); -lean_ctor_set(x_380, 1, x_379); -lean_ctor_set(x_380, 2, x_378); -x_381 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__30; -x_382 = lean_array_push(x_381, x_260); -x_383 = lean_array_push(x_382, x_290); -x_384 = lean_array_push(x_383, x_290); -x_385 = lean_array_push(x_384, x_312); -x_386 = lean_array_push(x_385, x_314); -x_387 = lean_array_push(x_386, x_380); -x_388 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__17; +lean_ctor_set(x_380, 0, x_293); +lean_ctor_set(x_380, 1, x_39); +lean_ctor_set(x_380, 2, x_379); +lean_inc(x_353); +x_381 = l_Lean_addMacroScope(x_273, x_353, x_268); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_353); +lean_ctor_set(x_382, 1, x_123); +x_383 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_383, 0, x_382); +lean_ctor_set(x_383, 1, x_123); +x_384 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__28; +x_385 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_385, 0, x_266); +lean_ctor_set(x_385, 1, x_384); +lean_ctor_set(x_385, 2, x_381); +lean_ctor_set(x_385, 3, x_383); +x_386 = lean_array_push(x_366, x_380); +x_387 = lean_array_push(x_386, x_351); +x_388 = lean_array_push(x_387, x_385); x_389 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_389, 0, x_278); -lean_ctor_set(x_389, 1, x_388); -lean_ctor_set(x_389, 2, x_387); -lean_ctor_set(x_254, 0, x_389); -x_29 = x_254; +lean_ctor_set(x_389, 0, x_293); +lean_ctor_set(x_389, 1, x_370); +lean_ctor_set(x_389, 2, x_388); +x_390 = lean_array_push(x_290, x_371); +x_391 = lean_array_push(x_390, x_389); +x_392 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_392, 0, x_293); +lean_ctor_set(x_392, 1, x_39); +lean_ctor_set(x_392, 2, x_391); +x_393 = lean_array_push(x_297, x_392); +x_394 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__22; +x_395 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_395, 0, x_293); +lean_ctor_set(x_395, 1, x_394); +lean_ctor_set(x_395, 2, x_393); +x_396 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__30; +x_397 = lean_array_push(x_396, x_275); +x_398 = lean_array_push(x_397, x_305); +x_399 = lean_array_push(x_398, x_305); +x_400 = lean_array_push(x_399, x_327); +x_401 = lean_array_push(x_400, x_329); +x_402 = lean_array_push(x_401, x_395); +x_403 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__17; +x_404 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_404, 0, x_293); +lean_ctor_set(x_404, 1, x_403); +lean_ctor_set(x_404, 2, x_402); +lean_ctor_set(x_269, 0, x_404); +x_29 = x_269; goto block_38; } else { -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; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; -x_390 = lean_ctor_get(x_254, 0); -x_391 = lean_ctor_get(x_254, 1); -lean_inc(x_391); -lean_inc(x_390); -lean_dec(x_254); -x_392 = lean_ctor_get(x_390, 0); -lean_inc(x_392); -lean_dec(x_390); -x_393 = lean_environment_main_module(x_392); -x_394 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__16; -lean_inc(x_251); -x_395 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_395, 0, x_251); -lean_ctor_set(x_395, 1, x_394); -x_396 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__50; -lean_inc(x_253); -lean_inc(x_393); -x_397 = l_Lean_addMacroScope(x_393, x_396, x_253); -x_398 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__49; -x_399 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__52; -lean_inc(x_251); -x_400 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_400, 0, x_251); -lean_ctor_set(x_400, 1, x_398); -lean_ctor_set(x_400, 2, x_397); -lean_ctor_set(x_400, 3, x_399); -x_401 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__7; -lean_inc(x_251); -x_402 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_402, 0, x_251); -lean_ctor_set(x_402, 1, x_401); -x_403 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_251); -x_404 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_404, 0, x_251); -lean_ctor_set(x_404, 1, x_403); -x_405 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; -lean_inc(x_253); -lean_inc(x_393); -x_406 = l_Lean_addMacroScope(x_393, x_405, x_253); -x_407 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; -x_408 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; -lean_inc(x_251); -x_409 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_409, 0, x_251); -lean_ctor_set(x_409, 1, x_407); -lean_ctor_set(x_409, 2, x_406); -lean_ctor_set(x_409, 3, x_408); -x_410 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_411 = lean_array_push(x_410, x_404); -x_412 = lean_array_push(x_411, x_409); -x_413 = lean_box(2); -x_414 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -x_415 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_415, 0, x_413); -lean_ctor_set(x_415, 1, x_414); +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; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; +x_405 = lean_ctor_get(x_269, 0); +x_406 = lean_ctor_get(x_269, 1); +lean_inc(x_406); +lean_inc(x_405); +lean_dec(x_269); +x_407 = lean_ctor_get(x_405, 0); +lean_inc(x_407); +lean_dec(x_405); +x_408 = lean_environment_main_module(x_407); +x_409 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__16; +lean_inc(x_266); +x_410 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_410, 0, x_266); +lean_ctor_set(x_410, 1, x_409); +x_411 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__50; +lean_inc(x_268); +lean_inc(x_408); +x_412 = l_Lean_addMacroScope(x_408, x_411, x_268); +x_413 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__49; +x_414 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__52; +lean_inc(x_266); +x_415 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_415, 0, x_266); +lean_ctor_set(x_415, 1, x_413); lean_ctor_set(x_415, 2, x_412); -x_416 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_108); -x_417 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; -x_418 = lean_array_push(x_417, x_416); -x_419 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_419, 0, x_413); -lean_ctor_set(x_419, 1, x_39); -lean_ctor_set(x_419, 2, x_418); -x_420 = lean_array_push(x_410, x_415); -x_421 = lean_array_push(x_420, x_419); -x_422 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_423 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_423, 0, x_413); -lean_ctor_set(x_423, 1, x_422); -lean_ctor_set(x_423, 2, x_421); -x_424 = lean_array_push(x_410, x_423); -x_425 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__16; -x_426 = lean_array_push(x_424, x_425); -x_427 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_427, 0, x_413); -lean_ctor_set(x_427, 1, x_39); -lean_ctor_set(x_427, 2, x_426); -x_428 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__13; -lean_inc(x_251); -x_429 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_429, 0, x_251); -lean_ctor_set(x_429, 1, x_428); -x_430 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; -x_431 = lean_array_push(x_430, x_402); -x_432 = lean_array_push(x_431, x_427); -x_433 = lean_array_push(x_432, x_429); -x_434 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__6; -x_435 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_435, 0, x_413); -lean_ctor_set(x_435, 1, x_434); -lean_ctor_set(x_435, 2, x_433); -x_436 = lean_array_push(x_410, x_435); -x_437 = lean_array_push(x_436, x_110); +lean_ctor_set(x_415, 3, x_414); +x_416 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__7; +lean_inc(x_266); +x_417 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_417, 0, x_266); +lean_ctor_set(x_417, 1, x_416); +x_418 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_266); +x_419 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_419, 0, x_266); +lean_ctor_set(x_419, 1, x_418); +x_420 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; +lean_inc(x_268); +lean_inc(x_408); +x_421 = l_Lean_addMacroScope(x_408, x_420, x_268); +x_422 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; +x_423 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; +lean_inc(x_266); +x_424 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_424, 0, x_266); +lean_ctor_set(x_424, 1, x_422); +lean_ctor_set(x_424, 2, x_421); +lean_ctor_set(x_424, 3, x_423); +x_425 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_426 = lean_array_push(x_425, x_419); +x_427 = lean_array_push(x_426, x_424); +x_428 = lean_box(2); +x_429 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +x_430 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_430, 0, x_428); +lean_ctor_set(x_430, 1, x_429); +lean_ctor_set(x_430, 2, x_427); +x_431 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_124); +x_432 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; +x_433 = lean_array_push(x_432, x_431); +x_434 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_434, 0, x_428); +lean_ctor_set(x_434, 1, x_39); +lean_ctor_set(x_434, 2, x_433); +x_435 = lean_array_push(x_425, x_430); +x_436 = lean_array_push(x_435, x_434); +x_437 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; x_438 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_438, 0, x_413); -lean_ctor_set(x_438, 1, x_39); -lean_ctor_set(x_438, 2, x_437); -x_439 = lean_array_push(x_410, x_400); -x_440 = lean_array_push(x_439, x_438); -x_441 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_441, 0, x_413); -lean_ctor_set(x_441, 1, x_422); -lean_ctor_set(x_441, 2, x_440); -x_442 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__63; -x_443 = lean_array_push(x_442, x_441); -x_444 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__46; -x_445 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_445, 0, x_413); -lean_ctor_set(x_445, 1, x_444); -lean_ctor_set(x_445, 2, x_443); -x_446 = lean_array_push(x_417, x_445); -x_447 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_447, 0, x_413); -lean_ctor_set(x_447, 1, x_39); -lean_ctor_set(x_447, 2, x_446); -x_448 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__20; -lean_inc(x_251); -x_449 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_449, 0, x_251); -lean_ctor_set(x_449, 1, x_448); -x_450 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__25; -lean_inc(x_251); -x_451 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_451, 0, x_251); -lean_ctor_set(x_451, 1, x_450); -x_452 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__4; -lean_inc(x_253); -lean_inc(x_393); -x_453 = l_Lean_addMacroScope(x_393, x_452, x_253); -x_454 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__3; -x_455 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__65; -lean_inc(x_251); -x_456 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_456, 0, x_251); -lean_ctor_set(x_456, 1, x_454); -lean_ctor_set(x_456, 2, x_453); -lean_ctor_set(x_456, 3, x_455); -x_457 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__69; -lean_inc(x_253); -lean_inc(x_393); -x_458 = l_Lean_addMacroScope(x_393, x_457, x_253); -x_459 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__68; -lean_inc(x_251); -x_460 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_460, 0, x_251); +lean_ctor_set(x_438, 0, x_428); +lean_ctor_set(x_438, 1, x_437); +lean_ctor_set(x_438, 2, x_436); +x_439 = lean_array_push(x_425, x_438); +x_440 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__16; +x_441 = lean_array_push(x_439, x_440); +x_442 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_442, 0, x_428); +lean_ctor_set(x_442, 1, x_39); +lean_ctor_set(x_442, 2, x_441); +x_443 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__13; +lean_inc(x_266); +x_444 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_444, 0, x_266); +lean_ctor_set(x_444, 1, x_443); +x_445 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__14; +x_446 = lean_array_push(x_445, x_417); +x_447 = lean_array_push(x_446, x_442); +x_448 = lean_array_push(x_447, x_444); +x_449 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__6; +x_450 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_450, 0, x_428); +lean_ctor_set(x_450, 1, x_449); +lean_ctor_set(x_450, 2, x_448); +x_451 = lean_array_push(x_425, x_450); +x_452 = lean_array_push(x_451, x_125); +x_453 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_453, 0, x_428); +lean_ctor_set(x_453, 1, x_39); +lean_ctor_set(x_453, 2, x_452); +x_454 = lean_array_push(x_425, x_415); +x_455 = lean_array_push(x_454, x_453); +x_456 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_456, 0, x_428); +lean_ctor_set(x_456, 1, x_437); +lean_ctor_set(x_456, 2, x_455); +x_457 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__63; +x_458 = lean_array_push(x_457, x_456); +x_459 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__46; +x_460 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_460, 0, x_428); lean_ctor_set(x_460, 1, x_459); lean_ctor_set(x_460, 2, x_458); -lean_ctor_set(x_460, 3, x_107); -x_461 = lean_array_push(x_417, x_460); +x_461 = lean_array_push(x_432, x_460); x_462 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_462, 0, x_413); +lean_ctor_set(x_462, 0, x_428); lean_ctor_set(x_462, 1, x_39); lean_ctor_set(x_462, 2, x_461); -x_463 = lean_array_push(x_410, x_456); -lean_inc(x_462); -x_464 = lean_array_push(x_463, x_462); -x_465 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_465, 0, x_413); -lean_ctor_set(x_465, 1, x_422); -lean_ctor_set(x_465, 2, x_464); -x_466 = lean_array_push(x_417, x_465); -x_467 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_467, 0, x_413); -lean_ctor_set(x_467, 1, x_39); -lean_ctor_set(x_467, 2, x_466); -x_468 = lean_array_push(x_417, x_467); -x_469 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_469, 0, x_413); -lean_ctor_set(x_469, 1, x_39); -lean_ctor_set(x_469, 2, x_468); -x_470 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__12; -lean_inc(x_251); -x_471 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_471, 0, x_251); -lean_ctor_set(x_471, 1, x_470); -x_472 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__29; -lean_inc(x_3); -x_473 = l_Lean_Name_str___override(x_3, x_472); -x_474 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__3; -lean_inc(x_473); -x_475 = l_Lean_Name_str___override(x_473, x_474); -lean_inc(x_253); -lean_inc(x_393); -x_476 = l_Lean_addMacroScope(x_393, x_475, x_253); -x_477 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__73; -lean_inc(x_473); -x_478 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_478, 0, x_473); -lean_ctor_set(x_478, 1, x_477); -x_479 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_479, 0, x_478); -lean_ctor_set(x_479, 1, x_107); -x_480 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__72; -lean_inc(x_251); -x_481 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_481, 0, x_251); -lean_ctor_set(x_481, 1, x_480); -lean_ctor_set(x_481, 2, x_476); -lean_ctor_set(x_481, 3, x_479); -x_482 = lean_array_push(x_410, x_481); -x_483 = lean_array_push(x_482, x_462); +x_463 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__20; +lean_inc(x_266); +x_464 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_464, 0, x_266); +lean_ctor_set(x_464, 1, x_463); +x_465 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__25; +lean_inc(x_266); +x_466 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_466, 0, x_266); +lean_ctor_set(x_466, 1, x_465); +x_467 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__4; +lean_inc(x_268); +lean_inc(x_408); +x_468 = l_Lean_addMacroScope(x_408, x_467, x_268); +x_469 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___closed__3; +x_470 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__65; +lean_inc(x_266); +x_471 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_471, 0, x_266); +lean_ctor_set(x_471, 1, x_469); +lean_ctor_set(x_471, 2, x_468); +lean_ctor_set(x_471, 3, x_470); +x_472 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__69; +lean_inc(x_268); +lean_inc(x_408); +x_473 = l_Lean_addMacroScope(x_408, x_472, x_268); +x_474 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__68; +lean_inc(x_266); +x_475 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_475, 0, x_266); +lean_ctor_set(x_475, 1, x_474); +lean_ctor_set(x_475, 2, x_473); +lean_ctor_set(x_475, 3, x_123); +x_476 = lean_array_push(x_432, x_475); +x_477 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_477, 0, x_428); +lean_ctor_set(x_477, 1, x_39); +lean_ctor_set(x_477, 2, x_476); +x_478 = lean_array_push(x_425, x_471); +lean_inc(x_477); +x_479 = lean_array_push(x_478, x_477); +x_480 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_480, 0, x_428); +lean_ctor_set(x_480, 1, x_437); +lean_ctor_set(x_480, 2, x_479); +x_481 = lean_array_push(x_432, x_480); +x_482 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_482, 0, x_428); +lean_ctor_set(x_482, 1, x_39); +lean_ctor_set(x_482, 2, x_481); +x_483 = lean_array_push(x_432, x_482); x_484 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_484, 0, x_413); -lean_ctor_set(x_484, 1, x_422); +lean_ctor_set(x_484, 0, x_428); +lean_ctor_set(x_484, 1, x_39); lean_ctor_set(x_484, 2, x_483); -x_485 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; -x_486 = lean_array_push(x_485, x_451); -lean_inc(x_486); -x_487 = lean_array_push(x_486, x_469); -lean_inc(x_471); -x_488 = lean_array_push(x_487, x_471); -x_489 = lean_array_push(x_488, x_484); -x_490 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__24; -x_491 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_491, 0, x_413); -lean_ctor_set(x_491, 1, x_490); -lean_ctor_set(x_491, 2, x_489); -x_492 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__76; -lean_inc(x_253); -lean_inc(x_393); -x_493 = l_Lean_addMacroScope(x_393, x_492, x_253); -x_494 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__75; -x_495 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__79; -lean_inc(x_251); +x_485 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__12; +lean_inc(x_266); +x_486 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_486, 0, x_266); +lean_ctor_set(x_486, 1, x_485); +x_487 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__29; +lean_inc(x_3); +x_488 = l_Lean_Name_str___override(x_3, x_487); +x_489 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__3; +lean_inc(x_488); +x_490 = l_Lean_Name_str___override(x_488, x_489); +lean_inc(x_268); +lean_inc(x_408); +x_491 = l_Lean_addMacroScope(x_408, x_490, x_268); +x_492 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__73; +lean_inc(x_488); +x_493 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_493, 0, x_488); +lean_ctor_set(x_493, 1, x_492); +x_494 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_494, 0, x_493); +lean_ctor_set(x_494, 1, x_123); +x_495 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__72; +lean_inc(x_266); x_496 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_496, 0, x_251); -lean_ctor_set(x_496, 1, x_494); -lean_ctor_set(x_496, 2, x_493); -lean_ctor_set(x_496, 3, x_495); -x_497 = lean_array_push(x_417, x_496); -x_498 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_498, 0, x_413); -lean_ctor_set(x_498, 1, x_39); -lean_ctor_set(x_498, 2, x_497); -x_499 = lean_array_push(x_417, x_498); -x_500 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_500, 0, x_413); -lean_ctor_set(x_500, 1, x_39); -lean_ctor_set(x_500, 2, x_499); -lean_inc(x_473); -x_501 = l_Lean_addMacroScope(x_393, x_473, x_253); -x_502 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_502, 0, x_473); -lean_ctor_set(x_502, 1, x_107); -x_503 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_503, 0, x_502); -lean_ctor_set(x_503, 1, x_107); -x_504 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__28; -x_505 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_505, 0, x_251); -lean_ctor_set(x_505, 1, x_504); -lean_ctor_set(x_505, 2, x_501); -lean_ctor_set(x_505, 3, x_503); -x_506 = lean_array_push(x_486, x_500); -x_507 = lean_array_push(x_506, x_471); -x_508 = lean_array_push(x_507, x_505); -x_509 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_509, 0, x_413); -lean_ctor_set(x_509, 1, x_490); -lean_ctor_set(x_509, 2, x_508); -x_510 = lean_array_push(x_410, x_491); -x_511 = lean_array_push(x_510, x_509); -x_512 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_512, 0, x_413); -lean_ctor_set(x_512, 1, x_39); -lean_ctor_set(x_512, 2, x_511); -x_513 = lean_array_push(x_417, x_512); -x_514 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__22; +lean_ctor_set(x_496, 0, x_266); +lean_ctor_set(x_496, 1, x_495); +lean_ctor_set(x_496, 2, x_491); +lean_ctor_set(x_496, 3, x_494); +x_497 = lean_array_push(x_425, x_496); +x_498 = lean_array_push(x_497, x_477); +x_499 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_499, 0, x_428); +lean_ctor_set(x_499, 1, x_437); +lean_ctor_set(x_499, 2, x_498); +x_500 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; +x_501 = lean_array_push(x_500, x_466); +lean_inc(x_501); +x_502 = lean_array_push(x_501, x_484); +lean_inc(x_486); +x_503 = lean_array_push(x_502, x_486); +x_504 = lean_array_push(x_503, x_499); +x_505 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__24; +x_506 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_506, 0, x_428); +lean_ctor_set(x_506, 1, x_505); +lean_ctor_set(x_506, 2, x_504); +x_507 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__76; +lean_inc(x_268); +lean_inc(x_408); +x_508 = l_Lean_addMacroScope(x_408, x_507, x_268); +x_509 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__75; +x_510 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__79; +lean_inc(x_266); +x_511 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_511, 0, x_266); +lean_ctor_set(x_511, 1, x_509); +lean_ctor_set(x_511, 2, x_508); +lean_ctor_set(x_511, 3, x_510); +x_512 = lean_array_push(x_432, x_511); +x_513 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_513, 0, x_428); +lean_ctor_set(x_513, 1, x_39); +lean_ctor_set(x_513, 2, x_512); +x_514 = lean_array_push(x_432, x_513); x_515 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_515, 0, x_413); -lean_ctor_set(x_515, 1, x_514); -lean_ctor_set(x_515, 2, x_513); -x_516 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__30; -x_517 = lean_array_push(x_516, x_395); -x_518 = lean_array_push(x_517, x_425); -x_519 = lean_array_push(x_518, x_425); -x_520 = lean_array_push(x_519, x_447); -x_521 = lean_array_push(x_520, x_449); -x_522 = lean_array_push(x_521, x_515); -x_523 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__17; +lean_ctor_set(x_515, 0, x_428); +lean_ctor_set(x_515, 1, x_39); +lean_ctor_set(x_515, 2, x_514); +lean_inc(x_488); +x_516 = l_Lean_addMacroScope(x_408, x_488, x_268); +x_517 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_517, 0, x_488); +lean_ctor_set(x_517, 1, x_123); +x_518 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_518, 0, x_517); +lean_ctor_set(x_518, 1, x_123); +x_519 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__28; +x_520 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_520, 0, x_266); +lean_ctor_set(x_520, 1, x_519); +lean_ctor_set(x_520, 2, x_516); +lean_ctor_set(x_520, 3, x_518); +x_521 = lean_array_push(x_501, x_515); +x_522 = lean_array_push(x_521, x_486); +x_523 = lean_array_push(x_522, x_520); x_524 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_524, 0, x_413); -lean_ctor_set(x_524, 1, x_523); -lean_ctor_set(x_524, 2, x_522); -x_525 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_525, 0, x_524); -lean_ctor_set(x_525, 1, x_391); -x_29 = x_525; -goto block_38; -} -} -} -else -{ -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_dec(x_115); -lean_dec(x_110); -lean_dec(x_108); -x_526 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_526, 0, x_114); -x_527 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__15; -x_528 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_528, 0, x_527); -lean_ctor_set(x_528, 1, x_526); -x_529 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__17; -x_530 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_530, 0, x_528); +lean_ctor_set(x_524, 0, x_428); +lean_ctor_set(x_524, 1, x_505); +lean_ctor_set(x_524, 2, x_523); +x_525 = lean_array_push(x_425, x_506); +x_526 = lean_array_push(x_525, x_524); +x_527 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_527, 0, x_428); +lean_ctor_set(x_527, 1, x_39); +lean_ctor_set(x_527, 2, x_526); +x_528 = lean_array_push(x_432, x_527); +x_529 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__22; +x_530 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_530, 0, x_428); lean_ctor_set(x_530, 1, x_529); -x_531 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__5; -x_532 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_532, 0, x_531); -lean_ctor_set(x_532, 1, x_530); -x_533 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__11; -x_534 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_534, 0, x_532); -lean_ctor_set(x_534, 1, x_533); +lean_ctor_set(x_530, 2, x_528); +x_531 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__30; +x_532 = lean_array_push(x_531, x_410); +x_533 = lean_array_push(x_532, x_440); +x_534 = lean_array_push(x_533, x_440); +x_535 = lean_array_push(x_534, x_462); +x_536 = lean_array_push(x_535, x_464); +x_537 = lean_array_push(x_536, x_530); +x_538 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__17; +x_539 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_539, 0, x_428); +lean_ctor_set(x_539, 1, x_538); +lean_ctor_set(x_539, 2, x_537); +x_540 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_540, 0, x_539); +lean_ctor_set(x_540, 1, x_406); +x_29 = x_540; +goto block_38; +} +} +} +else +{ +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_dec(x_130); +lean_dec(x_125); +lean_dec(x_124); +x_541 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_541, 0, x_129); +x_542 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__15; +x_543 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_543, 0, x_542); +lean_ctor_set(x_543, 1, x_541); +x_544 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__17; +x_545 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_545, 0, x_543); +lean_ctor_set(x_545, 1, x_544); +x_546 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__5; +x_547 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_547, 0, x_546); +lean_ctor_set(x_547, 1, x_545); +x_548 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__11; +x_549 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_549, 0, x_547); +lean_ctor_set(x_549, 1, x_548); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_535 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_19, x_534, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -x_29 = x_535; +x_550 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_19, x_549, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_29 = x_550; goto block_38; } } else { -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_dec(x_110); -lean_dec(x_108); -x_536 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_536, 0, x_114); -x_537 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__15; -x_538 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_538, 0, x_537); -lean_ctor_set(x_538, 1, x_536); -x_539 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__17; -x_540 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_540, 0, x_538); -lean_ctor_set(x_540, 1, x_539); -x_541 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__5; -x_542 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_542, 0, x_541); -lean_ctor_set(x_542, 1, x_540); -x_543 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__11; -x_544 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_544, 0, x_542); -lean_ctor_set(x_544, 1, x_543); +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_dec(x_125); +lean_dec(x_124); +x_551 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_551, 0, x_129); +x_552 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__15; +x_553 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_553, 0, x_552); +lean_ctor_set(x_553, 1, x_551); +x_554 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__17; +x_555 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_555, 0, x_553); +lean_ctor_set(x_555, 1, x_554); +x_556 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__5; +x_557 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_557, 0, x_556); +lean_ctor_set(x_557, 1, x_555); +x_558 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__11; +x_559 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_559, 0, x_557); +lean_ctor_set(x_559, 1, x_558); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_545 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_19, x_544, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -x_29 = x_545; +x_560 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_19, x_559, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_29 = x_560; goto block_38; } } } +else +{ +lean_object* x_561; +lean_dec(x_120); +lean_dec(x_119); +x_561 = lean_box(0); +x_41 = x_561; +goto block_114; +} +} } block_28: { @@ -10298,6 +9949,449 @@ return x_37; } } } +block_114: +{ +lean_dec(x_41); +if (x_40 == 0) +{ +lean_object* x_42; +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec(x_42); +x_45 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push(x_9, x_43); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_45); +x_20 = x_46; +x_21 = x_44; +goto block_28; +} +else +{ +uint8_t x_47; +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_3); +x_47 = !lean_is_exclusive(x_42); +if (x_47 == 0) +{ +return x_42; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_42, 0); +x_49 = lean_ctor_get(x_42, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_42); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +else +{ +uint8_t x_51; +x_51 = l_Lean_Syntax_isAntiquotSplice(x_19); +if (x_51 == 0) +{ +lean_object* x_52; +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +lean_dec(x_52); +x_55 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push(x_9, x_53); +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_55); +x_20 = x_56; +x_21 = x_54; +goto block_28; +} +else +{ +uint8_t x_57; +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_3); +x_57 = !lean_is_exclusive(x_52); +if (x_57 == 0) +{ +return x_52; +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_52, 0); +x_59 = lean_ctor_get(x_52, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_52); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_59); +return x_60; +} +} +} +else +{ +uint8_t x_61; +x_61 = l_Lean_Syntax_isEscapedAntiquot(x_19); +if (x_61 == 0) +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = l_Lean_Syntax_antiquotSpliceKind_x3f(x_19); +x_63 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__1; +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_64 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(x_19, x_63, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_64) == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; size_t x_71; lean_object* x_72; +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_64, 1); +lean_inc(x_66); +lean_dec(x_64); +x_67 = lean_ctor_get(x_65, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_65, 1); +lean_inc(x_68); +lean_dec(x_65); +x_69 = l_Lean_Syntax_getAntiquotSpliceContents(x_67); +x_70 = lean_array_get_size(x_69); +x_71 = lean_usize_of_nat(x_70); +lean_dec(x_70); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_72 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_71, x_4, x_69, x_10, x_11, x_12, x_13, x_14, x_15, x_66); +if (lean_obj_tag(x_72) == 0) +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +lean_dec(x_72); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_67); +x_75 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_67, x_10, x_11, x_12, x_13, x_14, x_15, x_74); +if (lean_obj_tag(x_75) == 0) +{ +lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_76 = lean_ctor_get(x_75, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_75, 1); +lean_inc(x_77); +lean_dec(x_75); +x_78 = l_Array_isEmpty___rarg(x_76); +if (x_78 == 0) +{ +lean_object* x_79; lean_object* x_80; +x_79 = lean_box(0); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_3); +lean_inc(x_5); +x_80 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3(x_68, x_5, x_62, x_67, x_39, x_76, x_3, x_73, x_4, x_9, x_79, x_10, x_11, x_12, x_13, x_14, x_15, x_77); +if (lean_obj_tag(x_80) == 0) +{ +lean_object* x_81; lean_object* x_82; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +lean_dec(x_80); +x_20 = x_81; +x_21 = x_82; +goto block_28; +} +else +{ +uint8_t x_83; +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_5); +lean_dec(x_3); +x_83 = !lean_is_exclusive(x_80); +if (x_83 == 0) +{ +return x_80; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_80, 0); +x_85 = lean_ctor_get(x_80, 1); +lean_inc(x_85); +lean_inc(x_84); +lean_dec(x_80); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; +} +} +} +else +{ +lean_object* x_87; lean_object* x_88; uint8_t x_89; +lean_dec(x_76); +lean_dec(x_73); +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_62); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_3); +x_87 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__3; +x_88 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__22(x_2, x_87, x_10, x_11, x_12, x_13, x_14, x_15, x_77); +lean_dec(x_15); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +x_89 = !lean_is_exclusive(x_88); +if (x_89 == 0) +{ +return x_88; +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_88, 0); +x_91 = lean_ctor_get(x_88, 1); +lean_inc(x_91); +lean_inc(x_90); +lean_dec(x_88); +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; +} +} +} +else +{ +uint8_t x_93; +lean_dec(x_73); +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_62); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_3); +x_93 = !lean_is_exclusive(x_75); +if (x_93 == 0) +{ +return x_75; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_75, 0); +x_95 = lean_ctor_get(x_75, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_75); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +return x_96; +} +} +} +else +{ +uint8_t x_97; +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_62); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_3); +x_97 = !lean_is_exclusive(x_72); +if (x_97 == 0) +{ +return x_72; +} +else +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_98 = lean_ctor_get(x_72, 0); +x_99 = lean_ctor_get(x_72, 1); +lean_inc(x_99); +lean_inc(x_98); +lean_dec(x_72); +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_98); +lean_ctor_set(x_100, 1, x_99); +return x_100; +} +} +} +else +{ +uint8_t x_101; +lean_dec(x_62); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_3); +x_101 = !lean_is_exclusive(x_64); +if (x_101 == 0) +{ +return x_64; +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_64, 0); +x_103 = lean_ctor_get(x_64, 1); +lean_inc(x_103); +lean_inc(x_102); +lean_dec(x_64); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +return x_104; +} +} +} +else +{ +lean_object* x_105; +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_105 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_106 = lean_ctor_get(x_105, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_105, 1); +lean_inc(x_107); +lean_dec(x_105); +x_108 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push(x_9, x_106); +x_109 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_109, 0, x_108); +x_20 = x_109; +x_21 = x_107; +goto block_28; +} +else +{ +uint8_t x_110; +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_3); +x_110 = !lean_is_exclusive(x_105); +if (x_110 == 0) +{ +return x_105; +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_111 = lean_ctor_get(x_105, 0); +x_112 = lean_ctor_get(x_105, 1); +lean_inc(x_112); +lean_inc(x_111); +lean_dec(x_105); +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +return x_113; +} +} +} +} +} +} } } } @@ -11600,309 +11694,309 @@ return x_234; } case 1: { -lean_object* x_235; lean_object* x_236; lean_object* x_365; uint8_t x_378; +lean_object* x_235; lean_object* x_236; lean_object* x_365; uint8_t x_386; x_235 = lean_ctor_get(x_1, 1); lean_inc(x_235); lean_inc(x_1); -x_378 = l_Lean_Syntax_isAntiquots(x_1); -if (x_378 == 0) +x_386 = l_Lean_Syntax_isAntiquots(x_1); +if (x_386 == 0) { -uint8_t x_379; +uint8_t x_387; lean_inc(x_1); -x_379 = l_Lean_Syntax_isTokenAntiquot(x_1); -if (x_379 == 0) +x_387 = l_Lean_Syntax_isTokenAntiquot(x_1); +if (x_387 == 0) { -lean_object* x_380; -x_380 = lean_box(0); -x_365 = x_380; -goto block_377; +lean_object* x_388; +x_388 = lean_box(0); +x_365 = x_388; +goto block_385; } else { -uint8_t x_381; -x_381 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_381 == 0) +uint8_t x_389; +x_389 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_389 == 0) { -lean_object* x_382; +lean_object* x_390; lean_dec(x_235); -x_382 = lean_box(0); -x_9 = x_382; +x_390 = lean_box(0); +x_9 = x_390; goto block_233; } else { -lean_object* x_383; -x_383 = lean_box(0); -x_365 = x_383; -goto block_377; +lean_object* x_391; +x_391 = lean_box(0); +x_365 = x_391; +goto block_385; } } } else { -lean_object* x_384; uint8_t x_385; +lean_object* x_392; uint8_t x_393; lean_inc(x_1); -x_384 = l_Lean_Syntax_getCanonicalAntiquot(x_1); -x_385 = l_Lean_Syntax_isEscapedAntiquot(x_384); -if (x_385 == 0) +x_392 = l_Lean_Syntax_getCanonicalAntiquot(x_1); +x_393 = l_Lean_Syntax_isEscapedAntiquot(x_392); +if (x_393 == 0) { -lean_object* x_386; uint8_t x_387; +lean_object* x_394; uint8_t x_395; lean_dec(x_235); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_inc(x_1); -x_386 = l_Lean_Syntax_antiquotKinds(x_1); -x_387 = !lean_is_exclusive(x_1); -if (x_387 == 0) +x_394 = l_Lean_Syntax_antiquotKinds(x_1); +x_395 = !lean_is_exclusive(x_1); +if (x_395 == 0) { -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; uint8_t x_396; -x_388 = lean_ctor_get(x_1, 2); -lean_dec(x_388); -x_389 = lean_ctor_get(x_1, 1); -lean_dec(x_389); -x_390 = lean_ctor_get(x_1, 0); -lean_dec(x_390); -lean_inc(x_6); -x_391 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); -x_392 = lean_ctor_get(x_391, 0); -lean_inc(x_392); -x_393 = lean_ctor_get(x_391, 1); -lean_inc(x_393); -lean_dec(x_391); -x_394 = lean_ctor_get(x_6, 10); -lean_inc(x_394); -lean_dec(x_6); -x_395 = lean_st_ref_get(x_7, x_393); -lean_dec(x_7); -x_396 = !lean_is_exclusive(x_395); -if (x_396 == 0) -{ -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; -x_397 = lean_ctor_get(x_395, 0); -x_398 = lean_ctor_get(x_397, 0); -lean_inc(x_398); +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; uint8_t x_404; +x_396 = lean_ctor_get(x_1, 2); +lean_dec(x_396); +x_397 = lean_ctor_get(x_1, 1); lean_dec(x_397); -x_399 = lean_environment_main_module(x_398); -x_400 = lean_box(0); -x_401 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_392); -x_402 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_402, 0, x_392); -lean_ctor_set(x_402, 1, x_401); -x_403 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; -x_404 = l_Lean_addMacroScope(x_399, x_403, x_394); -x_405 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; -x_406 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; -x_407 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_407, 0, x_392); -lean_ctor_set(x_407, 1, x_405); -lean_ctor_set(x_407, 2, x_404); -lean_ctor_set(x_407, 3, x_406); -x_408 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_409 = lean_array_push(x_408, x_402); -x_410 = lean_array_push(x_409, x_407); -x_411 = lean_box(2); -x_412 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -lean_ctor_set(x_1, 2, x_410); -lean_ctor_set(x_1, 1, x_412); -lean_ctor_set(x_1, 0, x_411); -x_413 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_386, x_400); -x_414 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_413); -x_415 = l_Lean_Syntax_getAntiquotTerm(x_384); -lean_dec(x_384); -x_416 = lean_array_push(x_408, x_414); -x_417 = lean_array_push(x_416, x_415); -x_418 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_419 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_419, 0, x_411); -lean_ctor_set(x_419, 1, x_418); -lean_ctor_set(x_419, 2, x_417); -x_420 = lean_array_push(x_408, x_1); -x_421 = lean_array_push(x_420, x_419); -x_422 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_423 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_423, 0, x_411); -lean_ctor_set(x_423, 1, x_422); -lean_ctor_set(x_423, 2, x_421); -lean_ctor_set(x_395, 0, x_423); -return x_395; +x_398 = lean_ctor_get(x_1, 0); +lean_dec(x_398); +lean_inc(x_6); +x_399 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); +x_400 = lean_ctor_get(x_399, 0); +lean_inc(x_400); +x_401 = lean_ctor_get(x_399, 1); +lean_inc(x_401); +lean_dec(x_399); +x_402 = lean_ctor_get(x_6, 10); +lean_inc(x_402); +lean_dec(x_6); +x_403 = lean_st_ref_get(x_7, x_401); +lean_dec(x_7); +x_404 = !lean_is_exclusive(x_403); +if (x_404 == 0) +{ +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; +x_405 = lean_ctor_get(x_403, 0); +x_406 = lean_ctor_get(x_405, 0); +lean_inc(x_406); +lean_dec(x_405); +x_407 = lean_environment_main_module(x_406); +x_408 = lean_box(0); +x_409 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_400); +x_410 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_410, 0, x_400); +lean_ctor_set(x_410, 1, x_409); +x_411 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; +x_412 = l_Lean_addMacroScope(x_407, x_411, x_402); +x_413 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; +x_414 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; +x_415 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_415, 0, x_400); +lean_ctor_set(x_415, 1, x_413); +lean_ctor_set(x_415, 2, x_412); +lean_ctor_set(x_415, 3, x_414); +x_416 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_417 = lean_array_push(x_416, x_410); +x_418 = lean_array_push(x_417, x_415); +x_419 = lean_box(2); +x_420 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +lean_ctor_set(x_1, 2, x_418); +lean_ctor_set(x_1, 1, x_420); +lean_ctor_set(x_1, 0, x_419); +x_421 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_394, x_408); +x_422 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_421); +x_423 = l_Lean_Syntax_getAntiquotTerm(x_392); +lean_dec(x_392); +x_424 = lean_array_push(x_416, x_422); +x_425 = lean_array_push(x_424, x_423); +x_426 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_427 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_427, 0, x_419); +lean_ctor_set(x_427, 1, x_426); +lean_ctor_set(x_427, 2, x_425); +x_428 = lean_array_push(x_416, x_1); +x_429 = lean_array_push(x_428, x_427); +x_430 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_431 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_431, 0, x_419); +lean_ctor_set(x_431, 1, x_430); +lean_ctor_set(x_431, 2, x_429); +lean_ctor_set(x_403, 0, x_431); +return x_403; } else { -lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; -x_424 = lean_ctor_get(x_395, 0); -x_425 = lean_ctor_get(x_395, 1); -lean_inc(x_425); -lean_inc(x_424); -lean_dec(x_395); -x_426 = lean_ctor_get(x_424, 0); -lean_inc(x_426); -lean_dec(x_424); -x_427 = lean_environment_main_module(x_426); -x_428 = lean_box(0); -x_429 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_392); -x_430 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_430, 0, x_392); -lean_ctor_set(x_430, 1, x_429); -x_431 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; -x_432 = l_Lean_addMacroScope(x_427, x_431, x_394); -x_433 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; -x_434 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; -x_435 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_435, 0, x_392); -lean_ctor_set(x_435, 1, x_433); -lean_ctor_set(x_435, 2, x_432); -lean_ctor_set(x_435, 3, x_434); -x_436 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_437 = lean_array_push(x_436, x_430); -x_438 = lean_array_push(x_437, x_435); -x_439 = lean_box(2); -x_440 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -lean_ctor_set(x_1, 2, x_438); -lean_ctor_set(x_1, 1, x_440); -lean_ctor_set(x_1, 0, x_439); -x_441 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_386, x_428); -x_442 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_441); -x_443 = l_Lean_Syntax_getAntiquotTerm(x_384); -lean_dec(x_384); -x_444 = lean_array_push(x_436, x_442); -x_445 = lean_array_push(x_444, x_443); -x_446 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_447 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_447, 0, x_439); -lean_ctor_set(x_447, 1, x_446); -lean_ctor_set(x_447, 2, x_445); -x_448 = lean_array_push(x_436, x_1); -x_449 = lean_array_push(x_448, x_447); -x_450 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_451 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_451, 0, x_439); -lean_ctor_set(x_451, 1, x_450); -lean_ctor_set(x_451, 2, x_449); -x_452 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_452, 0, x_451); -lean_ctor_set(x_452, 1, x_425); -return x_452; +lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; +x_432 = lean_ctor_get(x_403, 0); +x_433 = lean_ctor_get(x_403, 1); +lean_inc(x_433); +lean_inc(x_432); +lean_dec(x_403); +x_434 = lean_ctor_get(x_432, 0); +lean_inc(x_434); +lean_dec(x_432); +x_435 = lean_environment_main_module(x_434); +x_436 = lean_box(0); +x_437 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_400); +x_438 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_438, 0, x_400); +lean_ctor_set(x_438, 1, x_437); +x_439 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; +x_440 = l_Lean_addMacroScope(x_435, x_439, x_402); +x_441 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; +x_442 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; +x_443 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_443, 0, x_400); +lean_ctor_set(x_443, 1, x_441); +lean_ctor_set(x_443, 2, x_440); +lean_ctor_set(x_443, 3, x_442); +x_444 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_445 = lean_array_push(x_444, x_438); +x_446 = lean_array_push(x_445, x_443); +x_447 = lean_box(2); +x_448 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +lean_ctor_set(x_1, 2, x_446); +lean_ctor_set(x_1, 1, x_448); +lean_ctor_set(x_1, 0, x_447); +x_449 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_394, x_436); +x_450 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_449); +x_451 = l_Lean_Syntax_getAntiquotTerm(x_392); +lean_dec(x_392); +x_452 = lean_array_push(x_444, x_450); +x_453 = lean_array_push(x_452, x_451); +x_454 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_455 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_455, 0, x_447); +lean_ctor_set(x_455, 1, x_454); +lean_ctor_set(x_455, 2, x_453); +x_456 = lean_array_push(x_444, x_1); +x_457 = lean_array_push(x_456, x_455); +x_458 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_459 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_459, 0, x_447); +lean_ctor_set(x_459, 1, x_458); +lean_ctor_set(x_459, 2, x_457); +x_460 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_460, 0, x_459); +lean_ctor_set(x_460, 1, x_433); +return x_460; } } else { -lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; +lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_dec(x_1); lean_inc(x_6); -x_453 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); -x_454 = lean_ctor_get(x_453, 0); -lean_inc(x_454); -x_455 = lean_ctor_get(x_453, 1); -lean_inc(x_455); -lean_dec(x_453); -x_456 = lean_ctor_get(x_6, 10); -lean_inc(x_456); +x_461 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); +x_462 = lean_ctor_get(x_461, 0); +lean_inc(x_462); +x_463 = lean_ctor_get(x_461, 1); +lean_inc(x_463); +lean_dec(x_461); +x_464 = lean_ctor_get(x_6, 10); +lean_inc(x_464); lean_dec(x_6); -x_457 = lean_st_ref_get(x_7, x_455); +x_465 = lean_st_ref_get(x_7, x_463); lean_dec(x_7); -x_458 = lean_ctor_get(x_457, 0); -lean_inc(x_458); -x_459 = lean_ctor_get(x_457, 1); -lean_inc(x_459); -if (lean_is_exclusive(x_457)) { - lean_ctor_release(x_457, 0); - lean_ctor_release(x_457, 1); - x_460 = x_457; +x_466 = lean_ctor_get(x_465, 0); +lean_inc(x_466); +x_467 = lean_ctor_get(x_465, 1); +lean_inc(x_467); +if (lean_is_exclusive(x_465)) { + lean_ctor_release(x_465, 0); + lean_ctor_release(x_465, 1); + x_468 = x_465; } else { - lean_dec_ref(x_457); - x_460 = lean_box(0); + lean_dec_ref(x_465); + x_468 = lean_box(0); } -x_461 = lean_ctor_get(x_458, 0); -lean_inc(x_461); -lean_dec(x_458); -x_462 = lean_environment_main_module(x_461); -x_463 = lean_box(0); -x_464 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; -lean_inc(x_454); -x_465 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_465, 0, x_454); -lean_ctor_set(x_465, 1, x_464); -x_466 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; -x_467 = l_Lean_addMacroScope(x_462, x_466, x_456); -x_468 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; -x_469 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; -x_470 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_470, 0, x_454); -lean_ctor_set(x_470, 1, x_468); -lean_ctor_set(x_470, 2, x_467); -lean_ctor_set(x_470, 3, x_469); -x_471 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_472 = lean_array_push(x_471, x_465); -x_473 = lean_array_push(x_472, x_470); -x_474 = lean_box(2); -x_475 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; -x_476 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_476, 0, x_474); -lean_ctor_set(x_476, 1, x_475); -lean_ctor_set(x_476, 2, x_473); -x_477 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_386, x_463); -x_478 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_477); -x_479 = l_Lean_Syntax_getAntiquotTerm(x_384); -lean_dec(x_384); -x_480 = lean_array_push(x_471, x_478); -x_481 = lean_array_push(x_480, x_479); -x_482 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_483 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_483, 0, x_474); -lean_ctor_set(x_483, 1, x_482); -lean_ctor_set(x_483, 2, x_481); -x_484 = lean_array_push(x_471, x_476); -x_485 = lean_array_push(x_484, x_483); -x_486 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_487 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_487, 0, x_474); -lean_ctor_set(x_487, 1, x_486); -lean_ctor_set(x_487, 2, x_485); -if (lean_is_scalar(x_460)) { - x_488 = lean_alloc_ctor(0, 2, 0); +x_469 = lean_ctor_get(x_466, 0); +lean_inc(x_469); +lean_dec(x_466); +x_470 = lean_environment_main_module(x_469); +x_471 = lean_box(0); +x_472 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__21; +lean_inc(x_462); +x_473 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_473, 0, x_462); +lean_ctor_set(x_473, 1, x_472); +x_474 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__58; +x_475 = l_Lean_addMacroScope(x_470, x_474, x_464); +x_476 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__55; +x_477 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__62; +x_478 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_478, 0, x_462); +lean_ctor_set(x_478, 1, x_476); +lean_ctor_set(x_478, 2, x_475); +lean_ctor_set(x_478, 3, x_477); +x_479 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_480 = lean_array_push(x_479, x_473); +x_481 = lean_array_push(x_480, x_478); +x_482 = lean_box(2); +x_483 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___closed__20; +x_484 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_484, 0, x_482); +lean_ctor_set(x_484, 1, x_483); +lean_ctor_set(x_484, 2, x_481); +x_485 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_394, x_471); +x_486 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(x_485); +x_487 = l_Lean_Syntax_getAntiquotTerm(x_392); +lean_dec(x_392); +x_488 = lean_array_push(x_479, x_486); +x_489 = lean_array_push(x_488, x_487); +x_490 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_491 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_491, 0, x_482); +lean_ctor_set(x_491, 1, x_490); +lean_ctor_set(x_491, 2, x_489); +x_492 = lean_array_push(x_479, x_484); +x_493 = lean_array_push(x_492, x_491); +x_494 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_495 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_495, 0, x_482); +lean_ctor_set(x_495, 1, x_494); +lean_ctor_set(x_495, 2, x_493); +if (lean_is_scalar(x_468)) { + x_496 = lean_alloc_ctor(0, 2, 0); } else { - x_488 = x_460; + x_496 = x_468; } -lean_ctor_set(x_488, 0, x_487); -lean_ctor_set(x_488, 1, x_459); -return x_488; +lean_ctor_set(x_496, 0, x_495); +lean_ctor_set(x_496, 1, x_467); +return x_496; } } else { -uint8_t x_489; -lean_dec(x_384); +uint8_t x_497; +lean_dec(x_392); lean_inc(x_1); -x_489 = l_Lean_Syntax_isTokenAntiquot(x_1); -if (x_489 == 0) +x_497 = l_Lean_Syntax_isTokenAntiquot(x_1); +if (x_497 == 0) { -lean_object* x_490; -x_490 = lean_box(0); -x_365 = x_490; -goto block_377; +lean_object* x_498; +x_498 = lean_box(0); +x_365 = x_498; +goto block_385; } else { -uint8_t x_491; -x_491 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_491 == 0) +uint8_t x_499; +x_499 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_499 == 0) { -lean_object* x_492; +lean_object* x_500; lean_dec(x_235); -x_492 = lean_box(0); -x_9 = x_492; +x_500 = lean_box(0); +x_9 = x_500; goto block_233; } else { -lean_object* x_493; -x_493 = lean_box(0); -x_365 = x_493; -goto block_377; +lean_object* x_501; +x_501 = lean_box(0); +x_365 = x_501; +goto block_385; } } } @@ -12226,7 +12320,7 @@ return x_361; } } } -block_377: +block_385: { uint8_t x_366; lean_dec(x_365); @@ -12265,614 +12359,643 @@ goto block_364; } else { -uint8_t x_373; -x_373 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_373 == 0) +lean_object* x_373; lean_object* x_374; lean_object* x_375; uint8_t x_376; +x_373 = lean_unsigned_to_nat(0u); +x_374 = l_Lean_Syntax_getArg(x_1, x_373); +x_375 = l_Lean_Syntax_getCanonicalAntiquot(x_374); +x_376 = l_Lean_Syntax_isEscapedAntiquot(x_375); +lean_dec(x_375); +if (x_376 == 0) { -lean_object* x_374; lean_object* x_375; +lean_object* x_377; lean_object* x_378; lean_dec(x_235); -x_374 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; -x_375 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(x_1, x_374, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_375; +x_377 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; +x_378 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(x_1, x_377, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_378; } else { -lean_object* x_376; -x_376 = lean_box(0); -x_236 = x_376; +uint8_t x_379; +x_379 = l_Lean_Syntax_isAntiquotSplice(x_1); +if (x_379 == 0) +{ +lean_object* x_380; +x_380 = lean_box(0); +x_236 = x_380; goto block_364; } +else +{ +uint8_t x_381; +x_381 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_381 == 0) +{ +lean_object* x_382; lean_object* x_383; +lean_dec(x_235); +x_382 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; +x_383 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(x_1, x_382, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_383; +} +else +{ +lean_object* x_384; +x_384 = lean_box(0); +x_236 = x_384; +goto block_364; +} +} +} } } } case 2: { -lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; uint8_t x_500; +lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; uint8_t x_508; lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_494 = lean_ctor_get(x_1, 1); -lean_inc(x_494); +x_502 = lean_ctor_get(x_1, 1); +lean_inc(x_502); lean_dec(x_1); lean_inc(x_6); -x_495 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); -x_496 = lean_ctor_get(x_495, 0); -lean_inc(x_496); -x_497 = lean_ctor_get(x_495, 1); -lean_inc(x_497); -lean_dec(x_495); -x_498 = lean_ctor_get(x_6, 10); -lean_inc(x_498); +x_503 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); +x_504 = lean_ctor_get(x_503, 0); +lean_inc(x_504); +x_505 = lean_ctor_get(x_503, 1); +lean_inc(x_505); +lean_dec(x_503); +x_506 = lean_ctor_get(x_6, 10); +lean_inc(x_506); lean_dec(x_6); -x_499 = lean_st_ref_get(x_7, x_497); +x_507 = lean_st_ref_get(x_7, x_505); lean_dec(x_7); -x_500 = !lean_is_exclusive(x_499); -if (x_500 == 0) +x_508 = !lean_is_exclusive(x_507); +if (x_508 == 0) { -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; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; -x_501 = lean_ctor_get(x_499, 0); -x_502 = lean_ctor_get(x_501, 0); -lean_inc(x_502); -lean_dec(x_501); -x_503 = lean_environment_main_module(x_502); -x_504 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; -lean_inc(x_498); -lean_inc(x_503); -x_505 = l_Lean_addMacroScope(x_503, x_504, x_498); -x_506 = lean_box(0); -x_507 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; -x_508 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; -lean_inc(x_496); -x_509 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_509, 0, x_496); -lean_ctor_set(x_509, 1, x_507); -lean_ctor_set(x_509, 2, x_505); -lean_ctor_set(x_509, 3, x_508); -x_510 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_511 = l_Lean_addMacroScope(x_503, x_510, x_498); -x_512 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_513 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_513, 0, x_496); -lean_ctor_set(x_513, 1, x_512); -lean_ctor_set(x_513, 2, x_511); -lean_ctor_set(x_513, 3, x_506); -x_514 = lean_box(2); -x_515 = l_Lean_Syntax_mkStrLit(x_494, x_514); -lean_dec(x_494); -x_516 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_517 = lean_array_push(x_516, x_513); -x_518 = lean_array_push(x_517, x_515); -x_519 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_520 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_520, 0, x_514); -lean_ctor_set(x_520, 1, x_519); -lean_ctor_set(x_520, 2, x_518); -x_521 = lean_array_push(x_516, x_509); -x_522 = lean_array_push(x_521, x_520); -x_523 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_524 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_524, 0, x_514); -lean_ctor_set(x_524, 1, x_523); -lean_ctor_set(x_524, 2, x_522); -lean_ctor_set(x_499, 0, x_524); -return x_499; +lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; +x_509 = lean_ctor_get(x_507, 0); +x_510 = lean_ctor_get(x_509, 0); +lean_inc(x_510); +lean_dec(x_509); +x_511 = lean_environment_main_module(x_510); +x_512 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; +lean_inc(x_506); +lean_inc(x_511); +x_513 = l_Lean_addMacroScope(x_511, x_512, x_506); +x_514 = lean_box(0); +x_515 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; +x_516 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; +lean_inc(x_504); +x_517 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_517, 0, x_504); +lean_ctor_set(x_517, 1, x_515); +lean_ctor_set(x_517, 2, x_513); +lean_ctor_set(x_517, 3, x_516); +x_518 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_519 = l_Lean_addMacroScope(x_511, x_518, x_506); +x_520 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_521 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_521, 0, x_504); +lean_ctor_set(x_521, 1, x_520); +lean_ctor_set(x_521, 2, x_519); +lean_ctor_set(x_521, 3, x_514); +x_522 = lean_box(2); +x_523 = l_Lean_Syntax_mkStrLit(x_502, x_522); +lean_dec(x_502); +x_524 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_525 = lean_array_push(x_524, x_521); +x_526 = lean_array_push(x_525, x_523); +x_527 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_528 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_528, 0, x_522); +lean_ctor_set(x_528, 1, x_527); +lean_ctor_set(x_528, 2, x_526); +x_529 = lean_array_push(x_524, x_517); +x_530 = lean_array_push(x_529, x_528); +x_531 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_532 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_532, 0, x_522); +lean_ctor_set(x_532, 1, x_531); +lean_ctor_set(x_532, 2, x_530); +lean_ctor_set(x_507, 0, x_532); +return x_507; } else { -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; -x_525 = lean_ctor_get(x_499, 0); -x_526 = lean_ctor_get(x_499, 1); -lean_inc(x_526); -lean_inc(x_525); -lean_dec(x_499); -x_527 = lean_ctor_get(x_525, 0); -lean_inc(x_527); -lean_dec(x_525); -x_528 = lean_environment_main_module(x_527); -x_529 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; -lean_inc(x_498); -lean_inc(x_528); -x_530 = l_Lean_addMacroScope(x_528, x_529, x_498); -x_531 = lean_box(0); -x_532 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; -x_533 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; -lean_inc(x_496); -x_534 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_534, 0, x_496); -lean_ctor_set(x_534, 1, x_532); -lean_ctor_set(x_534, 2, x_530); -lean_ctor_set(x_534, 3, x_533); -x_535 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_536 = l_Lean_addMacroScope(x_528, x_535, x_498); -x_537 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_538 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_538, 0, x_496); -lean_ctor_set(x_538, 1, x_537); -lean_ctor_set(x_538, 2, x_536); -lean_ctor_set(x_538, 3, x_531); -x_539 = lean_box(2); -x_540 = l_Lean_Syntax_mkStrLit(x_494, x_539); -lean_dec(x_494); -x_541 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_542 = lean_array_push(x_541, x_538); -x_543 = lean_array_push(x_542, x_540); -x_544 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_545 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_545, 0, x_539); -lean_ctor_set(x_545, 1, x_544); -lean_ctor_set(x_545, 2, x_543); -x_546 = lean_array_push(x_541, x_534); -x_547 = lean_array_push(x_546, x_545); -x_548 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_549 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_549, 0, x_539); -lean_ctor_set(x_549, 1, x_548); -lean_ctor_set(x_549, 2, x_547); -x_550 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_550, 0, x_549); -lean_ctor_set(x_550, 1, x_526); -return x_550; +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; +x_533 = lean_ctor_get(x_507, 0); +x_534 = lean_ctor_get(x_507, 1); +lean_inc(x_534); +lean_inc(x_533); +lean_dec(x_507); +x_535 = lean_ctor_get(x_533, 0); +lean_inc(x_535); +lean_dec(x_533); +x_536 = lean_environment_main_module(x_535); +x_537 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; +lean_inc(x_506); +lean_inc(x_536); +x_538 = l_Lean_addMacroScope(x_536, x_537, x_506); +x_539 = lean_box(0); +x_540 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; +x_541 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; +lean_inc(x_504); +x_542 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_542, 0, x_504); +lean_ctor_set(x_542, 1, x_540); +lean_ctor_set(x_542, 2, x_538); +lean_ctor_set(x_542, 3, x_541); +x_543 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_544 = l_Lean_addMacroScope(x_536, x_543, x_506); +x_545 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_546 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_546, 0, x_504); +lean_ctor_set(x_546, 1, x_545); +lean_ctor_set(x_546, 2, x_544); +lean_ctor_set(x_546, 3, x_539); +x_547 = lean_box(2); +x_548 = l_Lean_Syntax_mkStrLit(x_502, x_547); +lean_dec(x_502); +x_549 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_550 = lean_array_push(x_549, x_546); +x_551 = lean_array_push(x_550, x_548); +x_552 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_553 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_553, 0, x_547); +lean_ctor_set(x_553, 1, x_552); +lean_ctor_set(x_553, 2, x_551); +x_554 = lean_array_push(x_549, x_542); +x_555 = lean_array_push(x_554, x_553); +x_556 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_557 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_557, 0, x_547); +lean_ctor_set(x_557, 1, x_556); +lean_ctor_set(x_557, 2, x_555); +x_558 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_558, 0, x_557); +lean_ctor_set(x_558, 1, x_534); +return x_558; } } default: { -uint8_t x_551; -x_551 = !lean_is_exclusive(x_1); -if (x_551 == 0) +uint8_t x_559; +x_559 = !lean_is_exclusive(x_1); +if (x_559 == 0) { -lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; uint8_t x_558; -x_552 = lean_ctor_get(x_1, 1); -x_553 = lean_ctor_get(x_1, 2); -x_554 = lean_ctor_get(x_1, 3); -x_555 = lean_ctor_get(x_1, 0); -lean_dec(x_555); -x_556 = lean_ctor_get(x_6, 2); -lean_inc(x_556); -x_557 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; -x_558 = l_Lean_Option_get___at_Lean_getSanitizeNames___spec__1(x_556, x_557); -lean_dec(x_556); -if (x_558 == 0) -{ -lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; uint8_t x_564; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_inc(x_6); -x_559 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); -x_560 = lean_ctor_get(x_559, 0); -lean_inc(x_560); -x_561 = lean_ctor_get(x_559, 1); -lean_inc(x_561); -lean_dec(x_559); -x_562 = lean_ctor_get(x_6, 10); -lean_inc(x_562); -lean_dec(x_6); -x_563 = lean_st_ref_get(x_7, x_561); -lean_dec(x_7); -x_564 = !lean_is_exclusive(x_563); -if (x_564 == 0) -{ -lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; 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; -x_565 = lean_ctor_get(x_563, 0); -x_566 = lean_ctor_get(x_565, 0); -lean_inc(x_566); -lean_dec(x_565); -x_567 = lean_environment_main_module(x_566); -x_568 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; -lean_inc(x_562); -lean_inc(x_567); -x_569 = l_Lean_addMacroScope(x_567, x_568, x_562); -x_570 = lean_box(0); -x_571 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; -x_572 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; -lean_inc(x_560); -lean_ctor_set(x_1, 3, x_572); -lean_ctor_set(x_1, 2, x_569); -lean_ctor_set(x_1, 1, x_571); -lean_ctor_set(x_1, 0, x_560); -x_573 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_574 = l_Lean_addMacroScope(x_567, x_573, x_562); -x_575 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_576 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_576, 0, x_560); -lean_ctor_set(x_576, 1, x_575); -lean_ctor_set(x_576, 2, x_574); -lean_ctor_set(x_576, 3, x_570); -lean_inc(x_553); -x_577 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_570, x_553); -x_578 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__28(x_554); -x_579 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; -x_580 = lean_array_push(x_579, x_576); -x_581 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_582 = lean_array_push(x_581, x_1); -x_583 = lean_ctor_get(x_552, 0); -lean_inc(x_583); -x_584 = lean_ctor_get(x_552, 1); -lean_inc(x_584); -x_585 = lean_ctor_get(x_552, 2); -lean_inc(x_585); -lean_dec(x_552); -x_586 = lean_string_utf8_extract(x_583, x_584, x_585); -lean_dec(x_585); -lean_dec(x_584); -lean_dec(x_583); -x_587 = lean_box(2); -x_588 = l_Lean_Syntax_mkStrLit(x_586, x_587); -lean_dec(x_586); -x_589 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; -x_590 = lean_array_push(x_589, x_588); -x_591 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; -x_592 = l_Lean_Syntax_mkCApp(x_591, x_590); -x_593 = lean_array_push(x_580, x_592); -if (lean_obj_tag(x_577) == 0) -{ -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; -x_594 = l_Lean_quoteNameMk(x_553); -x_595 = lean_array_push(x_593, x_594); -x_596 = lean_array_push(x_595, x_578); -x_597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_598 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_598, 0, x_587); -lean_ctor_set(x_598, 1, x_597); -lean_ctor_set(x_598, 2, x_596); -x_599 = lean_array_push(x_582, x_598); -x_600 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_601 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_601, 0, x_587); -lean_ctor_set(x_601, 1, x_600); -lean_ctor_set(x_601, 2, x_599); -lean_ctor_set(x_563, 0, x_601); -return x_563; -} -else -{ -lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; -lean_dec(x_553); -x_602 = lean_ctor_get(x_577, 0); -lean_inc(x_602); -lean_dec(x_577); -x_603 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__3; -x_604 = l_String_intercalate(x_603, x_602); -x_605 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__4; -x_606 = lean_string_append(x_605, x_604); -lean_dec(x_604); -x_607 = l_Lean_Syntax_mkNameLit(x_606, x_587); -x_608 = lean_array_push(x_589, x_607); -x_609 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__2; -x_610 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_610, 0, x_587); -lean_ctor_set(x_610, 1, x_609); -lean_ctor_set(x_610, 2, x_608); -x_611 = lean_array_push(x_593, x_610); -x_612 = lean_array_push(x_611, x_578); -x_613 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_614 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_614, 0, x_587); -lean_ctor_set(x_614, 1, x_613); -lean_ctor_set(x_614, 2, x_612); -x_615 = lean_array_push(x_582, x_614); -x_616 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_617 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_617, 0, x_587); -lean_ctor_set(x_617, 1, x_616); -lean_ctor_set(x_617, 2, x_615); -lean_ctor_set(x_563, 0, x_617); -return x_563; -} -} -else -{ -lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; -x_618 = lean_ctor_get(x_563, 0); -x_619 = lean_ctor_get(x_563, 1); -lean_inc(x_619); -lean_inc(x_618); +lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; uint8_t x_566; +x_560 = lean_ctor_get(x_1, 1); +x_561 = lean_ctor_get(x_1, 2); +x_562 = lean_ctor_get(x_1, 3); +x_563 = lean_ctor_get(x_1, 0); lean_dec(x_563); -x_620 = lean_ctor_get(x_618, 0); -lean_inc(x_620); -lean_dec(x_618); -x_621 = lean_environment_main_module(x_620); -x_622 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; -lean_inc(x_562); -lean_inc(x_621); -x_623 = l_Lean_addMacroScope(x_621, x_622, x_562); -x_624 = lean_box(0); -x_625 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; -x_626 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; -lean_inc(x_560); -lean_ctor_set(x_1, 3, x_626); -lean_ctor_set(x_1, 2, x_623); -lean_ctor_set(x_1, 1, x_625); -lean_ctor_set(x_1, 0, x_560); -x_627 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_628 = l_Lean_addMacroScope(x_621, x_627, x_562); -x_629 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_630 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_630, 0, x_560); -lean_ctor_set(x_630, 1, x_629); -lean_ctor_set(x_630, 2, x_628); -lean_ctor_set(x_630, 3, x_624); -lean_inc(x_553); -x_631 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_624, x_553); -x_632 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__28(x_554); -x_633 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; -x_634 = lean_array_push(x_633, x_630); -x_635 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_636 = lean_array_push(x_635, x_1); -x_637 = lean_ctor_get(x_552, 0); -lean_inc(x_637); -x_638 = lean_ctor_get(x_552, 1); -lean_inc(x_638); -x_639 = lean_ctor_get(x_552, 2); -lean_inc(x_639); -lean_dec(x_552); -x_640 = lean_string_utf8_extract(x_637, x_638, x_639); -lean_dec(x_639); -lean_dec(x_638); -lean_dec(x_637); -x_641 = lean_box(2); -x_642 = l_Lean_Syntax_mkStrLit(x_640, x_641); -lean_dec(x_640); -x_643 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; -x_644 = lean_array_push(x_643, x_642); -x_645 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; -x_646 = l_Lean_Syntax_mkCApp(x_645, x_644); -x_647 = lean_array_push(x_634, x_646); -if (lean_obj_tag(x_631) == 0) +x_564 = lean_ctor_get(x_6, 2); +lean_inc(x_564); +x_565 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; +x_566 = l_Lean_Option_get___at_Lean_getSanitizeNames___spec__1(x_564, x_565); +lean_dec(x_564); +if (x_566 == 0) { -lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; -x_648 = l_Lean_quoteNameMk(x_553); -x_649 = lean_array_push(x_647, x_648); -x_650 = lean_array_push(x_649, x_632); -x_651 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_652 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_652, 0, x_641); -lean_ctor_set(x_652, 1, x_651); -lean_ctor_set(x_652, 2, x_650); -x_653 = lean_array_push(x_636, x_652); -x_654 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_655 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_655, 0, x_641); -lean_ctor_set(x_655, 1, x_654); -lean_ctor_set(x_655, 2, x_653); -x_656 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_656, 0, x_655); -lean_ctor_set(x_656, 1, x_619); -return x_656; -} -else -{ -lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; -lean_dec(x_553); -x_657 = lean_ctor_get(x_631, 0); -lean_inc(x_657); -lean_dec(x_631); -x_658 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__3; -x_659 = l_String_intercalate(x_658, x_657); -x_660 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__4; -x_661 = lean_string_append(x_660, x_659); -lean_dec(x_659); -x_662 = l_Lean_Syntax_mkNameLit(x_661, x_641); -x_663 = lean_array_push(x_643, x_662); -x_664 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__2; -x_665 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_665, 0, x_641); -lean_ctor_set(x_665, 1, x_664); -lean_ctor_set(x_665, 2, x_663); -x_666 = lean_array_push(x_647, x_665); -x_667 = lean_array_push(x_666, x_632); -x_668 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_669 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_669, 0, x_641); -lean_ctor_set(x_669, 1, x_668); -lean_ctor_set(x_669, 2, x_667); -x_670 = lean_array_push(x_636, x_669); -x_671 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_672 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_672, 0, x_641); -lean_ctor_set(x_672, 1, x_671); -lean_ctor_set(x_672, 2, x_670); -x_673 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_673, 0, x_672); -lean_ctor_set(x_673, 1, x_619); -return x_673; -} -} -} -else -{ -lean_object* x_674; lean_object* x_675; -lean_free_object(x_1); -x_674 = lean_box(0); -x_675 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(x_553, x_554, x_552, x_674, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_552); -return x_675; -} -} -else -{ -lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; uint8_t x_681; -x_676 = lean_ctor_get(x_1, 1); -x_677 = lean_ctor_get(x_1, 2); -x_678 = lean_ctor_get(x_1, 3); -lean_inc(x_678); -lean_inc(x_677); -lean_inc(x_676); -lean_dec(x_1); -x_679 = lean_ctor_get(x_6, 2); -lean_inc(x_679); -x_680 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; -x_681 = l_Lean_Option_get___at_Lean_getSanitizeNames___spec__1(x_679, x_680); -lean_dec(x_679); -if (x_681 == 0) -{ -lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; 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_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; uint8_t x_572; lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_inc(x_6); -x_682 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); -x_683 = lean_ctor_get(x_682, 0); -lean_inc(x_683); -x_684 = lean_ctor_get(x_682, 1); -lean_inc(x_684); -lean_dec(x_682); -x_685 = lean_ctor_get(x_6, 10); -lean_inc(x_685); +x_567 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); +x_568 = lean_ctor_get(x_567, 0); +lean_inc(x_568); +x_569 = lean_ctor_get(x_567, 1); +lean_inc(x_569); +lean_dec(x_567); +x_570 = lean_ctor_get(x_6, 10); +lean_inc(x_570); lean_dec(x_6); -x_686 = lean_st_ref_get(x_7, x_684); +x_571 = lean_st_ref_get(x_7, x_569); lean_dec(x_7); -x_687 = lean_ctor_get(x_686, 0); -lean_inc(x_687); -x_688 = lean_ctor_get(x_686, 1); -lean_inc(x_688); -if (lean_is_exclusive(x_686)) { - lean_ctor_release(x_686, 0); - lean_ctor_release(x_686, 1); - x_689 = x_686; -} else { - lean_dec_ref(x_686); - x_689 = lean_box(0); -} -x_690 = lean_ctor_get(x_687, 0); -lean_inc(x_690); -lean_dec(x_687); -x_691 = lean_environment_main_module(x_690); -x_692 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; -lean_inc(x_685); -lean_inc(x_691); -x_693 = l_Lean_addMacroScope(x_691, x_692, x_685); -x_694 = lean_box(0); -x_695 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; -x_696 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; -lean_inc(x_683); -x_697 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_697, 0, x_683); -lean_ctor_set(x_697, 1, x_695); -lean_ctor_set(x_697, 2, x_693); -lean_ctor_set(x_697, 3, x_696); -x_698 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_699 = l_Lean_addMacroScope(x_691, x_698, x_685); -x_700 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_701 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_701, 0, x_683); -lean_ctor_set(x_701, 1, x_700); -lean_ctor_set(x_701, 2, x_699); -lean_ctor_set(x_701, 3, x_694); -lean_inc(x_677); -x_702 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_694, x_677); -x_703 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__28(x_678); -x_704 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; -x_705 = lean_array_push(x_704, x_701); -x_706 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; -x_707 = lean_array_push(x_706, x_697); -x_708 = lean_ctor_get(x_676, 0); -lean_inc(x_708); -x_709 = lean_ctor_get(x_676, 1); -lean_inc(x_709); -x_710 = lean_ctor_get(x_676, 2); -lean_inc(x_710); -lean_dec(x_676); -x_711 = lean_string_utf8_extract(x_708, x_709, x_710); -lean_dec(x_710); -lean_dec(x_709); -lean_dec(x_708); -x_712 = lean_box(2); -x_713 = l_Lean_Syntax_mkStrLit(x_711, x_712); -lean_dec(x_711); -x_714 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; -x_715 = lean_array_push(x_714, x_713); -x_716 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; -x_717 = l_Lean_Syntax_mkCApp(x_716, x_715); -x_718 = lean_array_push(x_705, x_717); -if (lean_obj_tag(x_702) == 0) +x_572 = !lean_is_exclusive(x_571); +if (x_572 == 0) { -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; -x_719 = l_Lean_quoteNameMk(x_677); -x_720 = lean_array_push(x_718, x_719); -x_721 = lean_array_push(x_720, x_703); -x_722 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_723 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_723, 0, x_712); -lean_ctor_set(x_723, 1, x_722); -lean_ctor_set(x_723, 2, x_721); -x_724 = lean_array_push(x_707, x_723); -x_725 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_726 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_726, 0, x_712); -lean_ctor_set(x_726, 1, x_725); -lean_ctor_set(x_726, 2, x_724); -if (lean_is_scalar(x_689)) { - x_727 = lean_alloc_ctor(0, 2, 0); -} else { - x_727 = x_689; -} -lean_ctor_set(x_727, 0, x_726); -lean_ctor_set(x_727, 1, x_688); -return x_727; +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; +x_573 = lean_ctor_get(x_571, 0); +x_574 = lean_ctor_get(x_573, 0); +lean_inc(x_574); +lean_dec(x_573); +x_575 = lean_environment_main_module(x_574); +x_576 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +lean_inc(x_570); +lean_inc(x_575); +x_577 = l_Lean_addMacroScope(x_575, x_576, x_570); +x_578 = lean_box(0); +x_579 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +x_580 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; +lean_inc(x_568); +lean_ctor_set(x_1, 3, x_580); +lean_ctor_set(x_1, 2, x_577); +lean_ctor_set(x_1, 1, x_579); +lean_ctor_set(x_1, 0, x_568); +x_581 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_582 = l_Lean_addMacroScope(x_575, x_581, x_570); +x_583 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_584 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_584, 0, x_568); +lean_ctor_set(x_584, 1, x_583); +lean_ctor_set(x_584, 2, x_582); +lean_ctor_set(x_584, 3, x_578); +lean_inc(x_561); +x_585 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_578, x_561); +x_586 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__28(x_562); +x_587 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; +x_588 = lean_array_push(x_587, x_584); +x_589 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_590 = lean_array_push(x_589, x_1); +x_591 = lean_ctor_get(x_560, 0); +lean_inc(x_591); +x_592 = lean_ctor_get(x_560, 1); +lean_inc(x_592); +x_593 = lean_ctor_get(x_560, 2); +lean_inc(x_593); +lean_dec(x_560); +x_594 = lean_string_utf8_extract(x_591, x_592, x_593); +lean_dec(x_593); +lean_dec(x_592); +lean_dec(x_591); +x_595 = lean_box(2); +x_596 = l_Lean_Syntax_mkStrLit(x_594, x_595); +lean_dec(x_594); +x_597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; +x_598 = lean_array_push(x_597, x_596); +x_599 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +x_600 = l_Lean_Syntax_mkCApp(x_599, x_598); +x_601 = lean_array_push(x_588, x_600); +if (lean_obj_tag(x_585) == 0) +{ +lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; +x_602 = l_Lean_quoteNameMk(x_561); +x_603 = lean_array_push(x_601, x_602); +x_604 = lean_array_push(x_603, x_586); +x_605 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_606 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_606, 0, x_595); +lean_ctor_set(x_606, 1, x_605); +lean_ctor_set(x_606, 2, x_604); +x_607 = lean_array_push(x_590, x_606); +x_608 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_609 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_609, 0, x_595); +lean_ctor_set(x_609, 1, x_608); +lean_ctor_set(x_609, 2, x_607); +lean_ctor_set(x_571, 0, x_609); +return x_571; } else { -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_dec(x_677); -x_728 = lean_ctor_get(x_702, 0); -lean_inc(x_728); -lean_dec(x_702); -x_729 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__3; -x_730 = l_String_intercalate(x_729, x_728); -x_731 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__4; -x_732 = lean_string_append(x_731, x_730); -lean_dec(x_730); -x_733 = l_Lean_Syntax_mkNameLit(x_732, x_712); -x_734 = lean_array_push(x_714, x_733); -x_735 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__2; -x_736 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_736, 0, x_712); -lean_ctor_set(x_736, 1, x_735); -lean_ctor_set(x_736, 2, x_734); -x_737 = lean_array_push(x_718, x_736); -x_738 = lean_array_push(x_737, x_703); -x_739 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; -x_740 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_740, 0, x_712); -lean_ctor_set(x_740, 1, x_739); -lean_ctor_set(x_740, 2, x_738); -x_741 = lean_array_push(x_707, x_740); -x_742 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; -x_743 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_743, 0, x_712); -lean_ctor_set(x_743, 1, x_742); -lean_ctor_set(x_743, 2, x_741); -if (lean_is_scalar(x_689)) { - x_744 = lean_alloc_ctor(0, 2, 0); -} else { - x_744 = x_689; -} -lean_ctor_set(x_744, 0, x_743); -lean_ctor_set(x_744, 1, x_688); -return x_744; +lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; +lean_dec(x_561); +x_610 = lean_ctor_get(x_585, 0); +lean_inc(x_610); +lean_dec(x_585); +x_611 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__3; +x_612 = l_String_intercalate(x_611, x_610); +x_613 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__4; +x_614 = lean_string_append(x_613, x_612); +lean_dec(x_612); +x_615 = l_Lean_Syntax_mkNameLit(x_614, x_595); +x_616 = lean_array_push(x_597, x_615); +x_617 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__2; +x_618 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_618, 0, x_595); +lean_ctor_set(x_618, 1, x_617); +lean_ctor_set(x_618, 2, x_616); +x_619 = lean_array_push(x_601, x_618); +x_620 = lean_array_push(x_619, x_586); +x_621 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_622 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_622, 0, x_595); +lean_ctor_set(x_622, 1, x_621); +lean_ctor_set(x_622, 2, x_620); +x_623 = lean_array_push(x_590, x_622); +x_624 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_625 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_625, 0, x_595); +lean_ctor_set(x_625, 1, x_624); +lean_ctor_set(x_625, 2, x_623); +lean_ctor_set(x_571, 0, x_625); +return x_571; } } else { -lean_object* x_745; lean_object* x_746; -x_745 = lean_box(0); -x_746 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(x_677, x_678, x_676, x_745, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; +x_626 = lean_ctor_get(x_571, 0); +x_627 = lean_ctor_get(x_571, 1); +lean_inc(x_627); +lean_inc(x_626); +lean_dec(x_571); +x_628 = lean_ctor_get(x_626, 0); +lean_inc(x_628); +lean_dec(x_626); +x_629 = lean_environment_main_module(x_628); +x_630 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +lean_inc(x_570); +lean_inc(x_629); +x_631 = l_Lean_addMacroScope(x_629, x_630, x_570); +x_632 = lean_box(0); +x_633 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +x_634 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; +lean_inc(x_568); +lean_ctor_set(x_1, 3, x_634); +lean_ctor_set(x_1, 2, x_631); +lean_ctor_set(x_1, 1, x_633); +lean_ctor_set(x_1, 0, x_568); +x_635 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_636 = l_Lean_addMacroScope(x_629, x_635, x_570); +x_637 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_638 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_638, 0, x_568); +lean_ctor_set(x_638, 1, x_637); +lean_ctor_set(x_638, 2, x_636); +lean_ctor_set(x_638, 3, x_632); +lean_inc(x_561); +x_639 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_632, x_561); +x_640 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__28(x_562); +x_641 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; +x_642 = lean_array_push(x_641, x_638); +x_643 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_644 = lean_array_push(x_643, x_1); +x_645 = lean_ctor_get(x_560, 0); +lean_inc(x_645); +x_646 = lean_ctor_get(x_560, 1); +lean_inc(x_646); +x_647 = lean_ctor_get(x_560, 2); +lean_inc(x_647); +lean_dec(x_560); +x_648 = lean_string_utf8_extract(x_645, x_646, x_647); +lean_dec(x_647); +lean_dec(x_646); +lean_dec(x_645); +x_649 = lean_box(2); +x_650 = l_Lean_Syntax_mkStrLit(x_648, x_649); +lean_dec(x_648); +x_651 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; +x_652 = lean_array_push(x_651, x_650); +x_653 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +x_654 = l_Lean_Syntax_mkCApp(x_653, x_652); +x_655 = lean_array_push(x_642, x_654); +if (lean_obj_tag(x_639) == 0) +{ +lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; +x_656 = l_Lean_quoteNameMk(x_561); +x_657 = lean_array_push(x_655, x_656); +x_658 = lean_array_push(x_657, x_640); +x_659 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_660 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_660, 0, x_649); +lean_ctor_set(x_660, 1, x_659); +lean_ctor_set(x_660, 2, x_658); +x_661 = lean_array_push(x_644, x_660); +x_662 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_663 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_663, 0, x_649); +lean_ctor_set(x_663, 1, x_662); +lean_ctor_set(x_663, 2, x_661); +x_664 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_664, 0, x_663); +lean_ctor_set(x_664, 1, x_627); +return x_664; +} +else +{ +lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; +lean_dec(x_561); +x_665 = lean_ctor_get(x_639, 0); +lean_inc(x_665); +lean_dec(x_639); +x_666 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__3; +x_667 = l_String_intercalate(x_666, x_665); +x_668 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__4; +x_669 = lean_string_append(x_668, x_667); +lean_dec(x_667); +x_670 = l_Lean_Syntax_mkNameLit(x_669, x_649); +x_671 = lean_array_push(x_651, x_670); +x_672 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__2; +x_673 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_673, 0, x_649); +lean_ctor_set(x_673, 1, x_672); +lean_ctor_set(x_673, 2, x_671); +x_674 = lean_array_push(x_655, x_673); +x_675 = lean_array_push(x_674, x_640); +x_676 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_677 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_677, 0, x_649); +lean_ctor_set(x_677, 1, x_676); +lean_ctor_set(x_677, 2, x_675); +x_678 = lean_array_push(x_644, x_677); +x_679 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_680 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_680, 0, x_649); +lean_ctor_set(x_680, 1, x_679); +lean_ctor_set(x_680, 2, x_678); +x_681 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_681, 0, x_680); +lean_ctor_set(x_681, 1, x_627); +return x_681; +} +} +} +else +{ +lean_object* x_682; lean_object* x_683; +lean_free_object(x_1); +x_682 = lean_box(0); +x_683 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(x_561, x_562, x_560, x_682, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_676); -return x_746; +lean_dec(x_560); +return x_683; +} +} +else +{ +lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; uint8_t x_689; +x_684 = lean_ctor_get(x_1, 1); +x_685 = lean_ctor_get(x_1, 2); +x_686 = lean_ctor_get(x_1, 3); +lean_inc(x_686); +lean_inc(x_685); +lean_inc(x_684); +lean_dec(x_1); +x_687 = lean_ctor_get(x_6, 2); +lean_inc(x_687); +x_688 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; +x_689 = l_Lean_Option_get___at_Lean_getSanitizeNames___spec__1(x_687, x_688); +lean_dec(x_687); +if (x_689 == 0) +{ +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_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_inc(x_6); +x_690 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_exprToSyntax___spec__1___rarg(x_6, x_7, x_8); +x_691 = lean_ctor_get(x_690, 0); +lean_inc(x_691); +x_692 = lean_ctor_get(x_690, 1); +lean_inc(x_692); +lean_dec(x_690); +x_693 = lean_ctor_get(x_6, 10); +lean_inc(x_693); +lean_dec(x_6); +x_694 = lean_st_ref_get(x_7, x_692); +lean_dec(x_7); +x_695 = lean_ctor_get(x_694, 0); +lean_inc(x_695); +x_696 = lean_ctor_get(x_694, 1); +lean_inc(x_696); +if (lean_is_exclusive(x_694)) { + lean_ctor_release(x_694, 0); + lean_ctor_release(x_694, 1); + x_697 = x_694; +} else { + lean_dec_ref(x_694); + x_697 = lean_box(0); +} +x_698 = lean_ctor_get(x_695, 0); +lean_inc(x_698); +lean_dec(x_695); +x_699 = lean_environment_main_module(x_698); +x_700 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +lean_inc(x_693); +lean_inc(x_699); +x_701 = l_Lean_addMacroScope(x_699, x_700, x_693); +x_702 = lean_box(0); +x_703 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +x_704 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; +lean_inc(x_691); +x_705 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_705, 0, x_691); +lean_ctor_set(x_705, 1, x_703); +lean_ctor_set(x_705, 2, x_701); +lean_ctor_set(x_705, 3, x_704); +x_706 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_707 = l_Lean_addMacroScope(x_699, x_706, x_693); +x_708 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_709 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_709, 0, x_691); +lean_ctor_set(x_709, 1, x_708); +lean_ctor_set(x_709, 2, x_707); +lean_ctor_set(x_709, 3, x_702); +lean_inc(x_685); +x_710 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_702, x_685); +x_711 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__28(x_686); +x_712 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__21; +x_713 = lean_array_push(x_712, x_709); +x_714 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__12; +x_715 = lean_array_push(x_714, x_705); +x_716 = lean_ctor_get(x_684, 0); +lean_inc(x_716); +x_717 = lean_ctor_get(x_684, 1); +lean_inc(x_717); +x_718 = lean_ctor_get(x_684, 2); +lean_inc(x_718); +lean_dec(x_684); +x_719 = lean_string_utf8_extract(x_716, x_717, x_718); +lean_dec(x_718); +lean_dec(x_717); +lean_dec(x_716); +x_720 = lean_box(2); +x_721 = l_Lean_Syntax_mkStrLit(x_719, x_720); +lean_dec(x_719); +x_722 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__19; +x_723 = lean_array_push(x_722, x_721); +x_724 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +x_725 = l_Lean_Syntax_mkCApp(x_724, x_723); +x_726 = lean_array_push(x_713, x_725); +if (lean_obj_tag(x_710) == 0) +{ +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; +x_727 = l_Lean_quoteNameMk(x_685); +x_728 = lean_array_push(x_726, x_727); +x_729 = lean_array_push(x_728, x_711); +x_730 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_731 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_731, 0, x_720); +lean_ctor_set(x_731, 1, x_730); +lean_ctor_set(x_731, 2, x_729); +x_732 = lean_array_push(x_715, x_731); +x_733 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_734 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_734, 0, x_720); +lean_ctor_set(x_734, 1, x_733); +lean_ctor_set(x_734, 2, x_732); +if (lean_is_scalar(x_697)) { + x_735 = lean_alloc_ctor(0, 2, 0); +} else { + x_735 = x_697; +} +lean_ctor_set(x_735, 0, x_734); +lean_ctor_set(x_735, 1, x_696); +return x_735; +} +else +{ +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_dec(x_685); +x_736 = lean_ctor_get(x_710, 0); +lean_inc(x_736); +lean_dec(x_710); +x_737 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__3; +x_738 = l_String_intercalate(x_737, x_736); +x_739 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__4; +x_740 = lean_string_append(x_739, x_738); +lean_dec(x_738); +x_741 = l_Lean_Syntax_mkNameLit(x_740, x_720); +x_742 = lean_array_push(x_722, x_741); +x_743 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26___closed__2; +x_744 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_744, 0, x_720); +lean_ctor_set(x_744, 1, x_743); +lean_ctor_set(x_744, 2, x_742); +x_745 = lean_array_push(x_726, x_744); +x_746 = lean_array_push(x_745, x_711); +x_747 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; +x_748 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_748, 0, x_720); +lean_ctor_set(x_748, 1, x_747); +lean_ctor_set(x_748, 2, x_746); +x_749 = lean_array_push(x_715, x_748); +x_750 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___lambda__1___closed__4; +x_751 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_751, 0, x_720); +lean_ctor_set(x_751, 1, x_750); +lean_ctor_set(x_751, 2, x_749); +if (lean_is_scalar(x_697)) { + x_752 = lean_alloc_ctor(0, 2, 0); +} else { + x_752 = x_697; +} +lean_ctor_set(x_752, 0, x_751); +lean_ctor_set(x_752, 1, x_696); +return x_752; +} +} +else +{ +lean_object* x_753; lean_object* x_754; +x_753 = lean_box(0); +x_754 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(x_685, x_686, x_684, x_753, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_684); +return x_754; } } } @@ -17909,7 +18032,7 @@ return x_231; } } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1() { _start: { lean_object* x_1; @@ -17917,16 +18040,16 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_stxQuot_expand), 8, return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -17936,17 +18059,17 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -17956,7 +18079,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__4() { _start: { lean_object* x_1; @@ -17964,47 +18087,47 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__3; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__4; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__6() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__5; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__5; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__7() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__6; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__6; x_2 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__8() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__7; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__7; x_2 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__9() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__9() { _start: { lean_object* x_1; @@ -18012,27 +18135,27 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__8; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__9; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__8; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__9; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__11() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4800u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4828u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12() { _start: { lean_object* x_1; @@ -18040,27 +18163,27 @@ x_1 = l_Lean_Elab_Term_termElabAttribute; return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__13() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__13() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__11; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__13; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__11; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__13; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18072,7 +18195,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18084,13 +18207,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__2; x_4 = lean_unsigned_to_nat(31u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18100,37 +18223,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__11; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__11; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18140,37 +18263,37 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4806u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4834u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18182,7 +18305,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18194,13 +18317,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__2; x_4 = lean_unsigned_to_nat(30u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18210,37 +18333,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__1() { _start: { lean_object* x_1; @@ -18248,57 +18371,57 @@ x_1 = lean_mk_string_from_bytes("funBinder", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__2; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__2; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4812u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4840u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__5; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18310,7 +18433,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18322,13 +18445,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__2; x_4 = lean_unsigned_to_nat(40u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18338,37 +18461,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__4; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__4; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__1() { _start: { lean_object* x_1; @@ -18376,57 +18499,57 @@ x_1 = lean_mk_string_from_bytes("bracketedBinder", 15); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__2; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__2; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4818u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4846u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__5; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18438,7 +18561,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18450,13 +18573,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__2; x_4 = lean_unsigned_to_nat(46u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18466,37 +18589,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__4; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__4; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18506,37 +18629,37 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4824u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4852u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18548,7 +18671,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18560,13 +18683,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__2; x_4 = lean_unsigned_to_nat(41u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18576,37 +18699,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18616,47 +18739,47 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__1; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4830u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4858u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__4; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18668,7 +18791,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18680,13 +18803,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__2; x_4 = lean_unsigned_to_nat(32u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18696,77 +18819,77 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__3; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__1; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__8; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4836u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4864u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18778,7 +18901,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18790,13 +18913,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__2; x_4 = lean_unsigned_to_nat(35u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18806,37 +18929,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18846,47 +18969,47 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__1; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4842u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4870u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__4; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18898,7 +19021,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18910,13 +19033,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__2; x_4 = lean_unsigned_to_nat(34u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18926,37 +19049,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__3; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18966,47 +19089,47 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__1; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4848u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4876u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__4; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19018,7 +19141,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19030,13 +19153,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__2; x_4 = lean_unsigned_to_nat(35u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19046,37 +19169,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__3; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19086,47 +19209,47 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__1; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4854u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4882u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__4; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19138,7 +19261,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19150,13 +19273,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__2; x_4 = lean_unsigned_to_nat(35u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19166,37 +19289,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__3; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19206,47 +19329,47 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__1; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4860u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4888u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__4; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19258,7 +19381,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19270,13 +19393,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__2; x_4 = lean_unsigned_to_nat(35u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19286,37 +19409,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__3; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19326,47 +19449,47 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__1; x_2 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4866u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4894u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__4; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19378,7 +19501,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19390,13 +19513,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__2; x_4 = lean_unsigned_to_nat(37u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19406,37 +19529,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__3; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19446,37 +19569,37 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4872u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4900u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19488,7 +19611,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19500,13 +19623,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__2; x_4 = lean_unsigned_to_nat(37u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19516,37 +19639,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19556,37 +19679,37 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10; -x_2 = lean_unsigned_to_nat(4878u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10; +x_2 = lean_unsigned_to_nat(4906u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19598,7 +19721,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19610,13 +19733,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__2; x_4 = lean_unsigned_to_nat(33u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19626,23 +19749,23 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } @@ -20095,7 +20218,7 @@ x_10 = lean_array_push(x_9, x_6); x_11 = lean_array_push(x_10, x_1); x_12 = lean_array_push(x_11, x_8); x_13 = lean_box(2); -x_14 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1; +x_14 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1; x_15 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); @@ -28671,7 +28794,7 @@ x_314 = lean_array_push(x_275, x_312); x_315 = lean_array_push(x_314, x_313); lean_inc(x_274); x_316 = lean_array_push(x_315, x_274); -x_317 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1; +x_317 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1; x_318 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_318, 0, x_240); lean_ctor_set(x_318, 1, x_317); @@ -28988,7 +29111,7 @@ x_467 = lean_array_push(x_428, x_465); x_468 = lean_array_push(x_467, x_466); lean_inc(x_427); x_469 = lean_array_push(x_468, x_427); -x_470 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1; +x_470 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1; x_471 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_471, 0, x_393); lean_ctor_set(x_471, 1, x_470); @@ -41266,7 +41389,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12; x_3 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__3___closed__17; x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3; @@ -41394,7 +41517,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_13812_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_13840_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -42435,326 +42558,326 @@ l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__E lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__65); l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__66 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__66(); lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__66); -l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1 = _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__5); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__6 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__6(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__6); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__7 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__7(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__7); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__8 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__8(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__8); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__9 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__9(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__9); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__10); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__11 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__11(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__11); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__12); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__13 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__13(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800____closed__13); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800_(lean_io_mk_world()); +l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1 = _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__5); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__6 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__6); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__7 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__7); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__8 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__8(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__8); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__9 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__9(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__9); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__10); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__11 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__11(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__11); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__12); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__13 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__13(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828____closed__13); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4800__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4828__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4806__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4834__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4812__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4840__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4818__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4846__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4824__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4852__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4830__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4858__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4836__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4864__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4842__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4870__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4848__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4876__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4854__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4882__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4860__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4888__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4866__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4894__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4872__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4900__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4878__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4906__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___closed__1(); @@ -43198,7 +43321,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_dec res = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_13812_(lean_io_mk_world()); +res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_13840_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Linter/Basic.c b/stage0/stdlib/Lean/Linter/Basic.c index 08366a2a0a..724dcadaca 100644 --- a/stage0/stdlib/Lean/Linter/Basic.c +++ b/stage0/stdlib/Lean/Linter/Basic.c @@ -14,138 +14,155 @@ extern "C" { #endif lean_object* l_List_reverse___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInFun___boxed(lean_object*); +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7____closed__6; -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__2; uint8_t l_Std_HashSetImp_contains___at_Lean_MVarId_getNondepPropHyps___spec__16(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__6; -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__7; -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__9; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__2___boxed(lean_object*); size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__8; -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__7; -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__4; -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInFun___rarg(lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__16; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__1; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____spec__1(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_List_mapM___at_Lean_Linter_unusedVariables___spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__4; +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__5; +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__5; lean_object* l_Std_HashMapImp_find_x3f___at_Lean_ForEachExpr_visit___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_InfoTree_visitM_go___at_Lean_Linter_unusedVariables___spec__26___closed__3; -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__3; -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__10; lean_object* l___private_Std_Data_HashMap_0__Std_numBucketsForCapacity(lean_object*); -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(lean_object*, lean_object*, uint8_t, lean_object*); +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__6; lean_object* l_Lean_LocalDecl_userName(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__1; +lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_InfoTree_hasSorry(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__3; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__2; uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* lean_io_error_to_string(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__1(lean_object*); uint64_t l___private_Lean_Expr_0__Lean_hashFVarId____x40_Lean_Expr___hyg_1848_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___boxed(lean_object*); -lean_object* l_Array_append___rarg(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInStructure___rarg(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__6; -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__5; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__7; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__5; +static lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__2; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_HashMapImp_contains___at_Lean_Linter_unusedVariables___spec__15___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_collectMacroExpansions_x3f_go___at_Lean_Linter_unusedVariables___spec__24___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__1; +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__4; uint8_t l___private_Lean_Server_InfoUtils_0__String_beqRange____x40_Lean_Server_InfoUtils___hyg_75_(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__3; static lean_object* l_Lean_Linter_collectMacroExpansions_x3f_go___at_Lean_Linter_unusedVariables___spec__24___lambda__2___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__10; -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___spec__1(lean_object*, uint8_t, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__9; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__3; +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1(uint8_t, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____spec__1___boxed(lean_object*, lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__33(lean_object*, lean_object*, size_t, size_t); static lean_object* l_Lean_Linter_collectMacroExpansions_x3f_go___at_Lean_Linter_unusedVariables___spec__24___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__4; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_matchesUnusedPattern___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_InfoTree_visitM___at_Lean_Linter_unusedVariables___spec__25___boxed(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__10; lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_HashSetImp_expand___at_Lean_Linter_unusedVariables___spec__4(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__5; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__5; static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__3; LEAN_EXPORT lean_object* l_Std_mkHashSet___at_Lean_Linter_unusedVariables___spec__2(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__6; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___boxed(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__7; LEAN_EXPORT lean_object* l_Std_AssocList_contains___at_Lean_Linter_unusedVariables___spec__9___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__2; -static lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__5; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isPatternVar___rarg___boxed(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__9; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__12; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__8; +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_HashMapImp_moveEntries___at_Lean_Linter_unusedVariables___spec__11(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isVariable(lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_getLinterUnusedVariablesPatternVars___boxed(lean_object*); lean_object* l_Lean_Elab_Command_addLinter(lean_object*, lean_object*); +lean_object* l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____closed__1; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__3; lean_object* l_Lean_Elab_Info_updateContext_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_getLinterUnusedVariablesFunArgs___boxed(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2___closed__1; -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32(lean_object*, lean_object*, lean_object*, size_t, size_t); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__11; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__3; +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__3; lean_object* l_Std_mkHashSetImp___rarg(lean_object*); -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1(uint8_t, lean_object*); static lean_object* l_Lean_Elab_InfoTree_visitM_go___at_Lean_Linter_unusedVariables___spec__26___closed__4; -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__5; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__14; lean_object* l_List_get_x3f___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__5; +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_head_x21___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__5; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__6; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__5; LEAN_EXPORT uint8_t l_Std_AssocList_contains___at_Lean_Linter_unusedVariables___spec__9(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__14; -static lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__3; +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_instMonadCommandElabM; -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_InfoTree_visitM___at_Lean_Linter_unusedVariables___spec__25(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_matchesUnusedPattern___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__11; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__5; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__7; +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____spec__1(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__7; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__8; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2; static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_67____closed__1; -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition(lean_object*); static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7____closed__7; -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__4; LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isInCtorOrStructBinder___spec__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__6; -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__10; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__3; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__7; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__1; uint8_t l_Lean_Linter_stackMatches(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_elem___at_Lean_Linter_unusedVariables_isTopLevelDecl___spec__2___boxed(lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); -static lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__2; LEAN_EXPORT lean_object* l_Std_PersistentHashMap_foldlM___at_Lean_Linter_unusedVariables___spec__16(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__7; -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInStructure(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__13; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__14; LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Linter_unusedVariables___spec__6(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__4; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____lambda__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__7; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__5; +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__7; -static lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__3; uint8_t l_Lean_Name_hasMacroScopes(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___boxed(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; static lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__37___closed__1; LEAN_EXPORT uint8_t l_Lean_Linter_getLinterUnusedVariablesFunArgs(lean_object*); LEAN_EXPORT lean_object* l_Std_mkHashMap___at_Lean_Linter_unusedVariables___spec__1___boxed(lean_object*); @@ -153,281 +170,320 @@ LEAN_EXPORT lean_object* l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_collectMacroExpansions_x3f___at_Lean_Linter_unusedVariables___spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__8; -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isInDeclarationSignature___spec__1___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isVariable___boxed(lean_object*); +uint8_t l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_135_(uint8_t, uint8_t); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__7; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__9; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__15; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__4; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Option_register___at_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Options___hyg_6____spec__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInInductive___rarg(lean_object*); uint8_t l_String_Range_contains(lean_object*, lean_object*, uint8_t); -static lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__7; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__4; lean_object* lean_st_ref_take(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__6; -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__13; -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__8; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_replace___at_Lean_Linter_unusedVariables___spec__7(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_List_elem___at_Lean_Linter_unusedVariables_isTopLevelDecl___spec__2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___boxed(lean_object*); static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__11; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___boxed(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__9; -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__9; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__3; LEAN_EXPORT uint8_t l_Lean_Linter_getLinterUnusedVariables(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__1; LEAN_EXPORT uint8_t l_Lean_Linter_getLinterUnusedVariablesPatternVars(lean_object*); +lean_object* l_List_foldl___at_Array_appendList___spec__1___rarg(lean_object*, lean_object*); uint8_t l_Lean_Elab_Info_contains(lean_object*, lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__14; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__4; +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__2; LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at_Lean_Linter_unusedVariables___spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3___closed__1; lean_object* l_Lean_Name_toString(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__6; static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_37____closed__2; -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__5; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_67____closed__3; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Std_mkHashMapImp___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___boxed(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__8; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__6; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__1; lean_object* l_instInhabited___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__1; lean_object* l_Std_PersistentHashMap_foldlMAux_traverse___at_Lean_mkModuleData___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_HashSetImp_insert___at_Lean_Linter_unusedVariables___spec__3(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_collectMacroExpansions_x3f_go___at_Lean_Linter_unusedVariables___spec__24___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_67_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_37_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601_(lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__3; -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__4; -static lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087_(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7; static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3; -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__2; static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDepArrow(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__2; +static lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__6; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__1; lean_object* l_Std_HashSetImp_insert___at_Lean_MVarId_getNondepPropHyps___spec__2(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__16; lean_object* lean_st_mk_ref(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__5; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__9; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__36(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariablesIgnoreFnsExt; static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7____closed__2; static lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__2; -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__3; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__10; LEAN_EXPORT lean_object* l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__21(lean_object*, lean_object*); lean_object* l_Lean_Linter_publishMessage(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__6; LEAN_EXPORT lean_object* l_Std_PersistentHashMap_foldlMAux___at_Lean_Linter_unusedVariables___spec__17(lean_object*, lean_object*); static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_67____closed__2; -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__9; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at_Lean_Linter_unusedVariables___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l___private_Lean_Expr_0__Lean_hashMVarId____x40_Lean_Expr___hyg_2054_(lean_object*); lean_object* l_Lean_Linter_findSyntaxStack_x3f(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isVariable___rarg(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__2; +lean_object* l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__1; +lean_object* l_Lean_SimplePersistentEnvExtension_getEntries___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__37(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__2; static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_37____closed__1; LEAN_EXPORT lean_object* l_Std_HashMapImp_expand___at_Lean_Linter_unusedVariables___spec__10(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_replace___at_Lean_Linter_unusedVariables___spec__7___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__3; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_InfoTree_visitM_go___at_Lean_Linter_unusedVariables___spec__26___closed__1; -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__8; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__6; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__6; LEAN_EXPORT lean_object* l_Lean_Linter_getLinterUnusedVariables___boxed(lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg(lean_object*); size_t lean_usize_modn(size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_linter_unusedVariables; LEAN_EXPORT uint8_t l_Std_HashMapImp_contains___at_Lean_Linter_unusedVariables___spec__15(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_HashSetImp_moveEntries___at_Lean_Linter_unusedVariables___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_HashMap_insert___at_Lean_Linter_unusedVariables___spec__8(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__1; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__6; +lean_object* l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__11; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature(lean_object*); -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isInInductive___spec__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__9; -static lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__5; -static lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__3; -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__9; -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__6; -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__10; -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__6; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____closed__1; +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__5; lean_object* l_List_filterMap___at_Lean_Linter_collectMacroExpansions_x3f_go___spec__1(lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isPatternVar___rarg(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_InfoTree_visitM___at_Lean_Linter_unusedVariables___spec__25___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___boxed(lean_object**); uint8_t l_Lean_Linter_getLinterAll(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__6; LEAN_EXPORT lean_object* l_Lean_Linter_collectMacroExpansions_x3f_go___at_Lean_Linter_unusedVariables___spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__2; -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isInDeclarationSignature___spec__1(lean_object*, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___spec__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__1; size_t lean_usize_of_nat(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMap_insert___at_Lean_Meta_AbstractMVars_abstractExprMVars___spec__4(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__8; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__13; +lean_object* l_Lean_ConstantInfo_type(lean_object*); LEAN_EXPORT lean_object* l_Std_PersistentHashMap_foldlMAux___at_Lean_Linter_unusedVariables___spec__17___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__2; -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__3; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__6; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___boxed(lean_object*); -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables___spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__1; +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables___spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__1; +lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____closed__1; LEAN_EXPORT lean_object* l_Lean_Linter_collectMacroExpansions_x3f_go___at_Lean_Linter_unusedVariables___spec__24___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__7; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__11; lean_object* l_Lean_Elab_InfoTree_foldInfo___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_HashSetImp_contains___at_Lean_Linter_unusedVariables_isTopLevelDecl___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__6; lean_object* l_Std_PersistentArray_toList___rarg(lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__15; -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__8; static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7____closed__5; -static lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__4; -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__13; -static lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__6; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInFun(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____closed__1; +lean_object* l_Lean_setEnv___at_Lean_registerTagAttribute___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_HashMap_toList___at_Lean_Linter_unusedVariables___spec__20(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__8; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isPatternVar(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__3; static lean_object* l_Lean_Linter_unusedVariables___lambda__1___closed__1; -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_matchesUnusedPattern(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__6; -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__10; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__3; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__9; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__11; LEAN_EXPORT lean_object* l_Lean_Linter_linter_unusedVariables_funArgs; static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7____closed__3; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__2; lean_object* l_Lean_Server_findModuleRefs(lean_object*, lean_object*, uint8_t, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____spec__1(lean_object*, uint8_t, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__3; +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__5; +static lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__3; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087____closed__1; +lean_object* lean_list_to_array(lean_object*, lean_object*); +lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__8; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__2; uint8_t lean_nat_dec_le(lean_object*, lean_object*); +static lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__5; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__6; static lean_object* l_Std_PersistentHashMap_foldlMAux___at_Lean_Linter_unusedVariables___spec__17___closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__6; lean_object* l_Std_PersistentArray_toArray___rarg(lean_object*); lean_object* l_List_filterMap___at_Lean_Linter_collectMacroExpansions_x3f_go___spec__2(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__1; lean_object* l_Lean_Syntax_getRange_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__18(lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___boxed(lean_object*); -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isInCtorOrStructBinder___spec__1(lean_object*, uint8_t, lean_object*); -static lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__12; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__8; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isTopLevelDecl(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInStructure___boxed(lean_object*); -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__2; -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isInInductive___spec__1(lean_object*, uint8_t, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__2; +LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isTopLevelDecl(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Command_instInhabitedScope; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____closed__1; static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_37____closed__3; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___boxed(lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__37___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__12; -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__3; -static lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__11; -static lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__5; static lean_object* l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__22(lean_object*, size_t, size_t, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__1; -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__4; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___boxed(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__11; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__3; uint64_t l___private_Lean_Server_InfoUtils_0__String_hashRange____x40_Lean_Server_InfoUtils___hyg_146_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__10; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg(lean_object*); +lean_object* l_Lean_Elab_Command_getRef(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_builtinUnusedVariablesIgnoreFnsRef; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__7___boxed(lean_object**); +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_linter_unusedVariables_patternVars; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__9; LEAN_EXPORT lean_object* l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__12(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___boxed(lean_object*); -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29(lean_object*, lean_object*, lean_object*, size_t, size_t); -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__2; +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__4; uint8_t l_String_startsWith(lean_object*, lean_object*); -static lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__6; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1___closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___closed__1; lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__6; -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__12; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__8; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__9; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1; lean_object* lean_panic_fn(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__7; -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__11; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__8; LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMap_toList___at_Lean_Server_ModuleRefs_instCoeModuleRefsModuleRefs___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_collectMacroExpansions_x3f_go___at_Lean_Linter_unusedVariables___spec__24___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7____closed__4; -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__3; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__2(lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_InfoTree_visitM_go___at_Lean_Linter_unusedVariables___spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__4; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__11; -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__1; -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__3; -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__7; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____closed__1; LEAN_EXPORT lean_object* l_panic___at_Lean_Linter_unusedVariables___spec__27(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__4; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInInductive(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_getUnusedVariablesIgnoreFnsImpl(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____closed__1; uint8_t l_Std_AssocList_contains___at_Lean_Meta_AbstractMVars_abstractExprMVars___spec__5(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__5; static lean_object* l_panic___at_Lean_Linter_unusedVariables___spec__27___closed__1; +lean_object* l_Lean_Attribute_Builtin_ensureNoArgs(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_37____closed__4; +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_HashSetImp_contains___at_Lean_Linter_unusedVariables_isTopLevelDecl___spec__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__7; -static lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___closed__5; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__10; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__2; LEAN_EXPORT lean_object* l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__21___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__12; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__9; uint8_t l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__12; LEAN_EXPORT lean_object* l_Std_mkHashMap___at_Lean_Linter_unusedVariables___spec__1(lean_object*); +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_67____closed__4; -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__10; lean_object* l_Lean_Elab_Info_lctx(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__3; +static lean_object* l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn___closed__1; static lean_object* l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__2; LEAN_EXPORT lean_object* l_Std_AssocList_replace___at_Lean_Linter_unusedVariables___spec__13(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__4; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInInductive___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isPatternVar___boxed(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__5; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__9; +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____spec__1(lean_object*, uint8_t, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__4; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__10; lean_object* l_Std_HashMap_insert___at_Lean_ForEachExpr_visit___spec__3(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__8; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__38(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__10; LEAN_EXPORT lean_object* l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_insertAt___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_InfoTree_visitM_go___at_Lean_Linter_unusedVariables___spec__26___closed__2; -static lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__3; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__1; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__5; LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__5; -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder(lean_object*); -static lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__7; -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__10; -static lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__7; -static lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__5; -static lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__8; -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDepArrow___rarg(lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__2; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__8; +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__4; +extern lean_object* l_instInhabitedPUnit; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__10; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__5; +lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__7; +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_7____closed__1() { _start: { @@ -742,7 +798,160 @@ x_3 = lean_box(x_2); return x_3; } } -static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1() { +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122____closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122____closed__1; +x_3 = lean_st_mk_ref(x_2, x_1); +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +lean_inc(x_6); +lean_inc(x_5); +lean_dec(x_3); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_5); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +} +} +static lean_object* _init_l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Linter_builtinUnusedVariablesIgnoreFnsRef; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(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; uint8_t x_9; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn___closed__1; +x_4 = lean_st_ref_get(x_3, x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_array_push(x_5, x_1); +x_8 = lean_st_ref_set(x_3, x_7, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +return x_8; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_8); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +return x_12; +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_", 1); +return x_1; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_4 = l_Lean_Syntax_getId(x_1); +x_5 = 1; +x_6 = l_Lean_Name_toString(x_4, x_5); +x_7 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___closed__1; +x_8 = l_String_startsWith(x_6, x_7); +return x_8; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("null", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__4() { _start: { lean_object* x_1; @@ -750,17 +959,17 @@ x_1 = lean_mk_string_from_bytes("Lean", 4); return x_1; } } -static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__2() { +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__3() { +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__6() { _start: { lean_object* x_1; @@ -768,17 +977,17 @@ x_1 = lean_mk_string_from_bytes("Parser", 6); return x_1; } } -static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4() { +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__2; -x_2 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__5; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__5() { +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__8() { _start: { lean_object* x_1; @@ -786,17 +995,3353 @@ x_1 = lean_mk_string_from_bytes("Command", 7); return x_1; } } -static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6() { +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4; -x_2 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__5; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__8; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__7() { +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("variable", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__10; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__11; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__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_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__13; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__14; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__15; +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_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__16; +x_5 = l_Lean_Linter_stackMatches(x_2, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("structure", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__3; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__7; +x_5 = l_Lean_Linter_stackMatches(x_2, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_3, 0); +x_5 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +x_6 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____spec__1(x_1, x_2, x_5); +x_7 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_7 == 0) +{ +return x_6; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("inductive", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__3; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__7; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("optDeclSig", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__9; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("declSig", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__11; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__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_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__10; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__13; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +lean_dec(x_3); +lean_dec(x_1); +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__8; +lean_inc(x_2); +x_5 = l_Lean_Linter_stackMatches(x_2, x_4); +if (x_5 == 0) +{ +uint8_t x_6; +lean_dec(x_2); +x_6 = 0; +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_unsigned_to_nat(3u); +x_8 = l_List_get_x3f___rarg(x_2, x_7); +lean_dec(x_2); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +x_9 = 0; +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_12, x_13); +lean_dec(x_12); +if (x_14 == 0) +{ +uint8_t x_15; +lean_dec(x_11); +x_15 = 0; +return x_15; +} +else +{ +uint8_t x_16; lean_object* x_17; uint8_t x_18; +x_16 = 0; +x_17 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__14; +x_18 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____spec__1(x_11, x_16, x_17); +return x_18; +} +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox(x_2); +lean_dec(x_2); +x_5 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____spec__1(x_1, x_4, x_3); +lean_dec(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1(x_1, x_2, x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_3, 0); +x_5 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +x_6 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____spec__1(x_1, x_2, x_5); +x_7 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_7 == 0) +{ +return x_6; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__10; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__3; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ctor", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__7; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("structSimpleBinder", 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__9; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__8; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__11; +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_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +lean_dec(x_3); +lean_dec(x_1); +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__6; +lean_inc(x_2); +x_5 = l_Lean_Linter_stackMatches(x_2, x_4); +if (x_5 == 0) +{ +uint8_t x_6; +lean_dec(x_2); +x_6 = 0; +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_unsigned_to_nat(4u); +x_8 = l_List_get_x3f___rarg(x_2, x_7); +lean_dec(x_2); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +x_9 = 0; +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; uint8_t x_14; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = 0; +x_13 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__12; +x_14 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____spec__1(x_11, x_12, x_13); +return x_14; +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox(x_2); +lean_dec(x_2); +x_5 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____spec__1(x_1, x_4, x_3); +lean_dec(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1(x_1, x_2, x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_3, 0); +x_5 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +x_6 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____spec__1(x_1, x_2, x_5); +x_7 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_7 == 0) +{ +return x_6; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__12; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__3; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("opaque", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__6; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("axiom", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__7; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__10; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +lean_dec(x_3); +lean_dec(x_1); +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__5; +lean_inc(x_2); +x_5 = l_Lean_Linter_stackMatches(x_2, x_4); +if (x_5 == 0) +{ +uint8_t x_6; +lean_dec(x_2); +x_6 = 0; +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_unsigned_to_nat(4u); +x_8 = l_List_get_x3f___rarg(x_2, x_7); +lean_dec(x_2); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +x_9 = 0; +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; uint8_t x_14; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = 0; +x_13 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__11; +x_14 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____spec__1(x_11, x_12, x_13); +return x_14; +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox(x_2); +lean_dec(x_2); +x_5 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____spec__1(x_1, x_4, x_3); +lean_dec(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1(x_1, x_2, x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Attr", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("extern", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("simple", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("implementedBy", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__4; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_4 = lean_unsigned_to_nat(1u); +x_5 = l_Lean_Syntax_getArg(x_1, x_4); +x_6 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__1; +x_7 = l_Lean_Name_str___override(x_2, x_6); +x_8 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__2; +lean_inc(x_7); +x_9 = l_Lean_Name_str___override(x_7, x_8); +lean_inc(x_5); +x_10 = l_Lean_Syntax_isOfKind(x_5, x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_11 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__3; +x_12 = l_Lean_Name_str___override(x_7, x_11); +lean_inc(x_5); +x_13 = l_Lean_Syntax_isOfKind(x_5, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +uint8_t x_14; +lean_dec(x_5); +x_14 = 0; +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_15 = lean_unsigned_to_nat(0u); +x_16 = l_Lean_Syntax_getArg(x_5, x_15); +lean_dec(x_5); +x_17 = l_Lean_Syntax_getId(x_16); +lean_dec(x_16); +x_18 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__5; +x_19 = lean_name_eq(x_17, x_18); +lean_dec(x_17); +return x_19; +} +} +else +{ +uint8_t x_20; +lean_dec(x_7); +lean_dec(x_5); +x_20 = 1; +return x_20; +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Term", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attrInstance", 12); +return x_1; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +lean_dec(x_3); +x_4 = lean_unsigned_to_nat(1u); +x_5 = l_Lean_Syntax_getArg(x_1, x_4); +lean_dec(x_1); +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Lean_Syntax_getArg(x_5, x_6); +lean_dec(x_5); +x_8 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__1; +lean_inc(x_2); +x_9 = l_Lean_Name_str___override(x_2, x_8); +x_10 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__2; +x_11 = l_Lean_Name_str___override(x_9, x_10); +lean_inc(x_7); +x_12 = l_Lean_Syntax_isOfKind(x_7, x_11); +lean_dec(x_11); +if (x_12 == 0) +{ +uint8_t x_13; +lean_dec(x_7); +lean_dec(x_2); +x_13 = 0; +return x_13; +} +else +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_box(0); +x_15 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1(x_7, x_2, x_14); +lean_dec(x_7); +return x_15; +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attributes", 10); +return x_1; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +lean_dec(x_3); +x_4 = lean_unsigned_to_nat(1u); +x_5 = l_Lean_Syntax_getArg(x_1, x_4); +lean_dec(x_1); +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Lean_Syntax_getArg(x_5, x_6); +lean_dec(x_5); +x_8 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__1; +lean_inc(x_2); +x_9 = l_Lean_Name_str___override(x_2, x_8); +x_10 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3___closed__1; +x_11 = l_Lean_Name_str___override(x_9, x_10); +lean_inc(x_7); +x_12 = l_Lean_Syntax_isOfKind(x_7, x_11); +lean_dec(x_11); +if (x_12 == 0) +{ +uint8_t x_13; +lean_dec(x_7); +lean_dec(x_2); +x_13 = 0; +return x_13; +} +else +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_box(0); +x_15 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2(x_7, x_2, x_14); +return x_15; +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("declModifiers", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("declaration", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__4; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__7; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__8; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__9; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__10; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_19; uint8_t x_20; +lean_dec(x_3); +lean_dec(x_1); +x_19 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__11; +lean_inc(x_2); +x_20 = l_Lean_Linter_stackMatches(x_2, x_19); +if (x_20 == 0) +{ +uint8_t x_21; +lean_dec(x_2); +x_21 = 0; +return x_21; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_unsigned_to_nat(3u); +x_23 = l_List_get_x3f___rarg(x_2, x_22); +if (lean_obj_tag(x_23) == 0) +{ +uint8_t x_24; +lean_dec(x_2); +x_24 = 0; +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +lean_dec(x_23); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +lean_dec(x_25); +x_27 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__10; +lean_inc(x_26); +x_28 = l_Lean_Syntax_isOfKind(x_26, x_27); +if (x_28 == 0) +{ +lean_object* x_29; uint8_t x_30; +x_29 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__12; +x_30 = l_Lean_Syntax_isOfKind(x_26, x_29); +if (x_30 == 0) +{ +uint8_t x_31; +lean_dec(x_2); +x_31 = 0; +return x_31; +} +else +{ +lean_object* x_32; +x_32 = lean_box(0); +x_4 = x_32; +goto block_18; +} +} +else +{ +lean_object* x_33; +lean_dec(x_26); +x_33 = lean_box(0); +x_4 = x_33; +goto block_18; +} +} +} +block_18: +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_4); +x_5 = lean_unsigned_to_nat(5u); +x_6 = l_List_get_x3f___rarg(x_2, x_5); +lean_dec(x_2); +if (lean_obj_tag(x_6) == 0) +{ +uint8_t x_7; +x_7 = 0; +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Lean_Syntax_getArg(x_9, x_10); +lean_dec(x_9); +x_12 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__2; +lean_inc(x_11); +x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); +if (x_13 == 0) +{ +uint8_t x_14; +lean_dec(x_11); +x_14 = 0; +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_15 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7; +x_16 = lean_box(0); +x_17 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3(x_11, x_15, x_16); +return x_17; +} +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2(x_1, x_2, x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3(x_1, x_2, x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4(x_1, x_2, x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("explicitBinder", 14); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__3; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("depArrow", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__6; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__4; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__8; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__9; +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_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__10; +x_5 = l_Lean_Linter_stackMatches(x_2, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("letIdDecl", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("whereStructField", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Lean_Linter_getLinterUnusedVariablesFunArgs(x_3); +if (x_4 == 0) +{ +lean_object* x_5; uint8_t x_6; +x_5 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__7; +lean_inc(x_2); +x_6 = l_Lean_Linter_stackMatches(x_2, x_5); +if (x_6 == 0) +{ +uint8_t x_7; +lean_dec(x_2); +x_7 = 0; +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_unsigned_to_nat(3u); +x_9 = l_List_get_x3f___rarg(x_2, x_8); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +lean_dec(x_2); +x_10 = 0; +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_ctor_get(x_11, 1); +lean_inc(x_12); +lean_dec(x_11); +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_dec_eq(x_12, x_13); +lean_dec(x_12); +if (x_14 == 0) +{ +uint8_t x_15; +lean_dec(x_2); +x_15 = 0; +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_unsigned_to_nat(5u); +x_17 = l_List_get_x3f___rarg(x_2, x_16); +lean_dec(x_2); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +x_18 = 0; +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +lean_dec(x_17); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +lean_dec(x_19); +x_21 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__9; +x_22 = l_Lean_Syntax_isOfKind(x_20, x_21); +if (x_22 == 0) +{ +uint8_t x_23; +x_23 = 1; +return x_23; +} +else +{ +uint8_t x_24; +x_24 = 0; +return x_24; +} +} +} +} +} +} +else +{ +uint8_t x_25; +lean_dec(x_2); +x_25 = 0; +return x_25; +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_3, 0); +x_5 = lean_ctor_get(x_3, 1); +lean_inc(x_1); +x_6 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____spec__1(x_1, x_2, x_5); +x_7 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_7 == 0) +{ +return x_6; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____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; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__1; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____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_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +lean_dec(x_1); +x_4 = l_Lean_Linter_getLinterUnusedVariablesFunArgs(x_3); +lean_dec(x_3); +if (x_4 == 0) +{ +lean_object* x_5; uint8_t x_6; +x_5 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__3; +lean_inc(x_2); +x_6 = l_Lean_Linter_stackMatches(x_2, x_5); +if (x_6 == 0) +{ +uint8_t x_7; +lean_dec(x_2); +x_7 = 0; +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_unsigned_to_nat(3u); +x_9 = l_List_get_x3f___rarg(x_2, x_8); +lean_dec(x_2); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = 0; +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +x_14 = lean_unsigned_to_nat(0u); +x_15 = lean_nat_dec_eq(x_13, x_14); +lean_dec(x_13); +if (x_15 == 0) +{ +uint8_t x_16; +lean_dec(x_12); +x_16 = 0; +return x_16; +} +else +{ +uint8_t x_17; lean_object* x_18; uint8_t x_19; +x_17 = 0; +x_18 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__14; +x_19 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____spec__1(x_12, x_17, x_18); +return x_19; +} +} +} +} +else +{ +uint8_t x_20; +lean_dec(x_2); +x_20 = 0; +return x_20; +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox(x_2); +lean_dec(x_2); +x_5 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____spec__1(x_1, x_4, x_3); +lean_dec(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1(x_1, x_2, x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("basicFun", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__3; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("paren", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__6; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__7; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__8; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__9; +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_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Lean_Linter_getLinterUnusedVariablesFunArgs(x_3); +if (x_4 == 0) +{ +lean_object* x_5; uint8_t x_6; +x_5 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__5; +lean_inc(x_2); +x_6 = l_Lean_Linter_stackMatches(x_2, x_5); +if (x_6 == 0) +{ +lean_object* x_7; uint8_t x_8; +x_7 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__10; +x_8 = l_Lean_Linter_stackMatches(x_2, x_7); +return x_8; +} +else +{ +uint8_t x_9; +lean_dec(x_2); +x_9 = 1; +return x_9; +} +} +else +{ +uint8_t x_10; +lean_dec(x_2); +x_10 = 0; +return x_10; +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +static lean_object* _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("matchAlt", 8); +return x_1; +} +} +static lean_object* _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1; +x_2 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7; +x_2 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("inductionAltLHS", 15); +return x_1; +} +} +static lean_object* _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__4; +x_2 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1(uint8_t x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_2, 1); +lean_inc(x_4); +lean_dec(x_2); +x_5 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1(x_1, x_4); +x_6 = lean_ctor_get(x_3, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_3, 1); +lean_inc(x_7); +lean_dec(x_3); +x_8 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__2; +lean_inc(x_6); +x_9 = l_Lean_Syntax_isOfKind(x_6, x_8); +if (x_9 == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__6; +x_11 = l_Lean_Syntax_isOfKind(x_6, x_10); +if (x_11 == 0) +{ +lean_dec(x_7); +return x_5; +} +else +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_unsigned_to_nat(2u); +x_13 = lean_nat_dec_eq(x_7, x_12); +lean_dec(x_7); +if (x_13 == 0) +{ +return x_5; +} +else +{ +uint8_t x_14; +x_14 = 1; +return x_14; +} +} +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_dec_eq(x_7, x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__6; +x_18 = l_Lean_Syntax_isOfKind(x_6, x_17); +if (x_18 == 0) +{ +lean_dec(x_7); +return x_5; +} +else +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_unsigned_to_nat(2u); +x_20 = lean_nat_dec_eq(x_7, x_19); +lean_dec(x_7); +if (x_20 == 0) +{ +return x_5; +} +else +{ +uint8_t x_21; +x_21 = 1; +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_7); +lean_dec(x_6); +x_22 = 1; +return x_22; +} +} +} +} +} +LEAN_EXPORT uint8_t l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +lean_dec(x_1); +x_4 = l_Lean_Linter_getLinterUnusedVariablesPatternVars(x_3); +if (x_4 == 0) +{ +uint8_t x_5; uint8_t x_6; +x_5 = 0; +x_6 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1(x_5, x_2); +return x_6; +} +else +{ +uint8_t x_7; +lean_dec(x_2); +x_7 = 0; +return x_7; +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____lambda__1___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____closed__1; +x_3 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; lean_object* x_5; +x_3 = lean_unbox(x_1); +lean_dec(x_1); +x_4 = l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1(x_3, x_2); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unusedVariablesIgnoreFns", 24); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(lean_list_to_array), 2, 1); +lean_closure_set(x_1, 0, lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__1___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__2___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__6() { +_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_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__2; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__4; +x_3 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__5; +x_4 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__3; +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__6; +x_3 = l_Lean_registerSimplePersistentEnvExtension___rarg(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__2___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____lambda__2(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Linter_unusedVariablesIgnoreFnsExt; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____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; +x_6 = lean_st_ref_get(x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1___closed__1; +x_11 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_10, x_9, x_1); +x_12 = l_Lean_setEnv___at_Lean_registerTagAttribute___spec__2(x_11, x_3, x_4, x_8); +return x_12; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Linter", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__5; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("IgnoreFunction", 14); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__2; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("invalid attribute 'unusedVariablesIgnoreFn', must be of type `Lean.Linter.IgnoreFunction`", 89); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__5; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____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_dec(x_2); +lean_inc(x_1); +x_6 = l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(x_1, x_3, x_4, x_5); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = l_Lean_ConstantInfo_type(x_7); +lean_dec(x_7); +x_10 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__4; +x_11 = l_Lean_Expr_isConstOf(x_9, x_10); +lean_dec(x_9); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; +lean_dec(x_1); +x_12 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__6; +x_13 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__3(x_12, x_3, x_4, x_8); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +return x_13; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_13); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_box(0); +x_19 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1(x_1, x_18, x_3, x_4, x_8); +return x_19; +} +} +else +{ +uint8_t x_20; +lean_dec(x_1); +x_20 = !lean_is_exclusive(x_6); +if (x_20 == 0) +{ +return x_6; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_6, 0); +x_22 = lean_ctor_get(x_6, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_6); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("invalid attribute 'unusedVariablesIgnoreFn', must be global", 59); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +lean_inc(x_5); +lean_inc(x_4); +x_7 = l_Lean_Attribute_Builtin_ensureNoArgs(x_2, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; uint8_t x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = 0; +x_10 = l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_135_(x_3, x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +lean_dec(x_1); +x_11 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__2; +x_12 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__3(x_11, x_4, x_5, x_8); +lean_dec(x_5); +lean_dec(x_4); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_12); +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_box(0); +x_18 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2(x_1, x_17, x_4, x_5, x_8); +lean_dec(x_5); +lean_dec(x_4); +return x_18; +} +} +else +{ +uint8_t x_19; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_19 = !lean_is_exclusive(x_7); +if (x_19 == 0) +{ +return x_7; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_7, 0); +x_21 = lean_ctor_get(x_7, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_7); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attribute cannot be erased", 26); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____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_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__2; +x_6 = l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(x_5, x_2, x_3, x_4); +return x_6; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("unusedVariablesIgnoreFn", 23); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Marks a function of type `Lean.Linter.IgnoreFunction` for suppressing unused variable warnings", 94); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__2; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__3; +x_3 = 0; +x_4 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___boxed), 4, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__4; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__5; +x_3 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__6; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__7; +x_3 = l_Lean_registerBuiltinAttribute(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____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_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____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_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_3); +lean_dec(x_3); +x_8 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3(x_1, x_2, x_7, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____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_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____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_EXPORT lean_object* l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_5 = l_Lean_Elab_Command_getRef(x_2, x_3, x_4); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec(x_5); +x_8 = lean_ctor_get(x_2, 4); +lean_inc(x_8); +lean_inc(x_8); +x_9 = l_Lean_Elab_getBetterRef(x_6, x_8); +lean_dec(x_6); +x_10 = l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(x_1, x_2, x_3, x_7); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___spec__1(x_11, x_8, x_2, x_3, x_12); +lean_dec(x_2); +lean_dec(x_8); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_9); +lean_ctor_set(x_16, 1, x_15); +lean_ctor_set_tag(x_13, 1); +lean_ctor_set(x_13, 0, x_16); +return x_13; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_13, 0); +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_13); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_9); +lean_ctor_set(x_19, 1, x_17); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3___rarg___boxed), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec(x_1); +x_6 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_6, 0, x_5); +x_7 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_7, 0, x_6); +x_8 = l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3___rarg(x_7, x_2, x_3, x_4); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_2); +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +lean_dec(x_1); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_4); +return x_10; +} +} +} +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2___rarg___boxed), 4, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_6 = lean_st_ref_get(x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_st_ref_get(x_4, x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_ctor_get(x_11, 2); +lean_inc(x_13); +lean_dec(x_11); +x_14 = l_Lean_Elab_Command_instInhabitedScope; +x_15 = l_List_head_x21___rarg(x_14, x_13); +lean_dec(x_13); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +lean_dec(x_15); +x_17 = l_Lean_Environment_evalConstCheck___rarg(x_9, x_16, x_1, x_2); +lean_dec(x_16); +x_18 = l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2___rarg(x_17, x_3, x_4, x_12); +lean_dec(x_4); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_evalConstCheck___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_evalConstCheck___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__1___rarg), 5, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_mapM___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__4(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) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_6 = lean_box(0); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_5); +return x_7; +} +else +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_2); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_2, 0); +x_10 = lean_ctor_get(x_2, 1); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_11 = l_Lean_evalConstCheck___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__1___rarg(x_1, x_9, x_3, x_4, x_5); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +x_14 = l_List_mapM___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__4(x_1, x_10, x_3, x_4, x_13); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_14, 0); +lean_ctor_set(x_2, 1, x_16); +lean_ctor_set(x_2, 0, x_12); +lean_ctor_set(x_14, 0, x_2); +return x_14; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_14, 0); +x_18 = lean_ctor_get(x_14, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_14); +lean_ctor_set(x_2, 1, x_17); +lean_ctor_set(x_2, 0, x_12); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_2); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +else +{ +uint8_t x_20; +lean_dec(x_12); +lean_free_object(x_2); +x_20 = !lean_is_exclusive(x_14); +if (x_20 == 0) +{ +return x_14; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_14, 0); +x_22 = lean_ctor_get(x_14, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_14); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +else +{ +uint8_t x_24; +lean_free_object(x_2); +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_11); +if (x_24 == 0) +{ +return x_11; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_11, 0); +x_26 = lean_ctor_get(x_11, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_11); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_2, 0); +x_29 = lean_ctor_get(x_2, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_2); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_30 = l_Lean_evalConstCheck___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__1___rarg(x_1, x_28, x_3, x_4, x_5); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +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_33 = l_List_mapM___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__4(x_1, x_29, x_3, x_4, 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; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + x_36 = x_33; +} else { + lean_dec_ref(x_33); + x_36 = lean_box(0); +} +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_31); +lean_ctor_set(x_37, 1, x_34); +if (lean_is_scalar(x_36)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_36; +} +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_35); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +lean_dec(x_31); +x_39 = lean_ctor_get(x_33, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_33, 1); +lean_inc(x_40); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + x_41 = x_33; +} else { + lean_dec_ref(x_33); + x_41 = lean_box(0); +} +if (lean_is_scalar(x_41)) { + x_42 = lean_alloc_ctor(1, 2, 0); +} else { + x_42 = x_41; +} +lean_ctor_set(x_42, 0, x_39); +lean_ctor_set(x_42, 1, x_40); +return x_42; +} +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +lean_dec(x_29); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_43 = lean_ctor_get(x_30, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_30, 1); +lean_inc(x_44); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_45 = x_30; +} else { + lean_dec_ref(x_30); + x_45 = lean_box(0); +} +if (lean_is_scalar(x_45)) { + x_46 = lean_alloc_ctor(1, 2, 0); +} else { + x_46 = x_45; +} +lean_ctor_set(x_46, 0, x_43); +lean_ctor_set(x_46, 1, x_44); +return x_46; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Linter_getUnusedVariablesIgnoreFnsImpl(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_4 = lean_st_ref_get(x_2, x_3); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_ctor_get(x_5, 0); +lean_inc(x_7); +lean_dec(x_5); +x_8 = l_instInhabitedPUnit; +x_9 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1___closed__1; +x_10 = l_Lean_SimplePersistentEnvExtension_getEntries___rarg(x_8, x_9, x_7); +lean_dec(x_7); +x_11 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__4; +x_12 = l_List_mapM___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__4(x_11, x_10, x_1, x_2, x_6); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn___closed__1; +x_16 = lean_st_ref_get(x_15, x_14); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_16, 0); +x_19 = l_List_foldl___at_Array_appendList___spec__1___rarg(x_18, x_13); +lean_ctor_set(x_16, 0, x_19); +return x_16; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_16, 0); +x_21 = lean_ctor_get(x_16, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_16); +x_22 = l_List_foldl___at_Array_appendList___spec__1___rarg(x_20, x_13); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_21); +return x_23; +} +} +else +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_12); +if (x_24 == 0) +{ +return x_12; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_12, 0); +x_26 = lean_ctor_get(x_12, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_12); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_throwError___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__3___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_ofExcept___at_Lean_Linter_getUnusedVariablesIgnoreFnsImpl___spec__2___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_3); +return x_5; +} +} +static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1() { _start: { lean_object* x_1; @@ -804,12 +4349,12 @@ x_1 = lean_mk_string_from_bytes("declId", 6); return x_1; } } -static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__8() { +static lean_object* _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__7; +x_1 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9; +x_2 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -818,7 +4363,7 @@ LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_skipDeclIdIfPresent(lean_ _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__8; +x_2 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__2; lean_inc(x_1); x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); if (x_3 == 0) @@ -887,106 +4432,60 @@ return x_9; static lean_object* _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Term", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4; -x_2 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("letIdDecl", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2; -x_2 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__3; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__4; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__6() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__5; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__3; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isTopLevelDecl(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isTopLevelDecl(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -uint8_t x_4; lean_object* x_5; -x_4 = 0; -x_5 = l_Lean_Syntax_getRange_x3f(x_2, x_4); -if (lean_obj_tag(x_5) == 0) +uint8_t x_5; lean_object* x_6; +x_5 = 0; +x_6 = l_Lean_Syntax_getRange_x3f(x_2, x_5); +if (lean_obj_tag(x_6) == 0) { -uint8_t x_6; +uint8_t x_7; lean_dec(x_3); lean_dec(x_1); -x_6 = 0; -return x_6; +x_7 = 0; +return x_7; } else { -lean_object* x_7; uint8_t x_8; -x_7 = lean_ctor_get(x_5, 0); -lean_inc(x_7); -lean_dec(x_5); -x_8 = l_Std_HashSetImp_contains___at_Lean_Linter_unusedVariables_isTopLevelDecl___spec__1(x_1, x_7); -if (x_8 == 0) +lean_object* x_8; uint8_t x_9; +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_8); +lean_dec(x_6); +x_9 = l_Std_HashSetImp_contains___at_Lean_Linter_unusedVariables_isTopLevelDecl___spec__1(x_1, x_8); +if (x_9 == 0) { -uint8_t x_9; +uint8_t x_10; lean_dec(x_3); -x_9 = 0; -return x_9; +x_10 = 0; +return x_10; } else { -lean_object* x_10; uint8_t x_11; -x_10 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__6; -x_11 = l_Lean_Linter_stackMatches(x_3, x_10); -if (x_11 == 0) -{ -uint8_t x_12; -x_12 = 1; -return x_12; -} -else +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1; +x_12 = l_Lean_Linter_stackMatches(x_3, x_11); +if (x_12 == 0) { uint8_t x_13; -x_13 = 0; +x_13 = 1; return x_13; } +else +{ +uint8_t x_14; +x_14 = 0; +return x_14; +} } } } @@ -1011,2327 +4510,16 @@ x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isTopLevelDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -uint8_t x_4; lean_object* x_5; -x_4 = l_Lean_Linter_unusedVariables_isTopLevelDecl(x_1, x_2, x_3); -x_5 = lean_box(x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_matchesUnusedPattern___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("_", 1); -return x_1; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_matchesUnusedPattern(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_3 = l_Lean_Syntax_getId(x_1); -x_4 = 1; -x_5 = l_Lean_Name_toString(x_3, x_4); -x_6 = l_Lean_Linter_unusedVariables_matchesUnusedPattern___closed__1; -x_7 = l_String_startsWith(x_5, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_matchesUnusedPattern___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_Linter_unusedVariables_matchesUnusedPattern(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("null", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("variable", 8); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__4; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__5; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__6; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__7; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__8; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__9; -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_EXPORT uint8_t l_Lean_Linter_unusedVariables_isVariable___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__10; -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isVariable(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isVariable___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isVariable___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isVariable___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isVariable___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isVariable(x_1); -lean_dec(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structure", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__3; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__4; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__5; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__6; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInStructure___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__7; -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInStructure(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInStructure___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInStructure___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInStructure___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInStructure___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInStructure(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isInInductive___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_dec(x_1); -return x_2; -} -else -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; -x_4 = lean_ctor_get(x_3, 0); -x_5 = lean_ctor_get(x_3, 1); -lean_inc(x_1); -x_6 = l_List_foldr___at_Lean_Linter_unusedVariables_isInInductive___spec__1(x_1, x_2, x_5); -x_7 = l_Lean_Syntax_isOfKind(x_1, x_4); -if (x_7 == 0) -{ -return x_6; -} -else -{ -uint8_t x_8; -x_8 = 1; -return x_8; -} -} -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("inductive", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__3; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__4; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__5; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__6; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__7; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("optDeclSig", 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__9; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__11() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("declSig", 7); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__11; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__10; -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__13; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInInductive___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__8; -lean_inc(x_1); -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -if (x_3 == 0) -{ -uint8_t x_4; -lean_dec(x_1); -x_4 = 0; -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_unsigned_to_nat(3u); -x_6 = l_List_get_x3f___rarg(x_1, x_5); -lean_dec(x_1); -if (lean_obj_tag(x_6) == 0) -{ -uint8_t x_7; -x_7 = 0; -return x_7; -} -else -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -x_10 = lean_ctor_get(x_8, 1); -lean_inc(x_10); -lean_dec(x_8); -x_11 = lean_unsigned_to_nat(0u); -x_12 = lean_nat_dec_eq(x_10, x_11); -lean_dec(x_10); -if (x_12 == 0) -{ -uint8_t x_13; -lean_dec(x_9); -x_13 = 0; -return x_13; -} -else -{ -uint8_t x_14; lean_object* x_15; uint8_t x_16; -x_14 = 0; -x_15 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__14; -x_16 = l_List_foldr___at_Lean_Linter_unusedVariables_isInInductive___spec__1(x_9, x_14, x_15); -return x_16; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInInductive(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInInductive___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isInInductive___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; uint8_t x_5; lean_object* x_6; -x_4 = lean_unbox(x_2); -lean_dec(x_2); -x_5 = l_List_foldr___at_Lean_Linter_unusedVariables_isInInductive___spec__1(x_1, x_4, x_3); -lean_dec(x_3); -x_6 = lean_box(x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInInductive___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInInductive___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInInductive___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInInductive(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isInCtorOrStructBinder___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_dec(x_1); -return x_2; -} -else -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; -x_4 = lean_ctor_get(x_3, 0); -x_5 = lean_ctor_get(x_3, 1); -lean_inc(x_1); -x_6 = l_List_foldr___at_Lean_Linter_unusedVariables_isInCtorOrStructBinder___spec__1(x_1, x_2, x_5); -x_7 = l_Lean_Syntax_isOfKind(x_1, x_4); -if (x_7 == 0) -{ -return x_6; -} -else -{ -uint8_t x_8; -x_8 = 1; -return x_8; -} -} -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__10; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = lean_box(0); -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__1; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__3; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__4; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__5; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ctor", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__7; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structSimpleBinder", 18); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__9; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__8; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__11; -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_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__6; -lean_inc(x_1); -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -if (x_3 == 0) -{ -uint8_t x_4; -lean_dec(x_1); -x_4 = 0; -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_unsigned_to_nat(4u); -x_6 = l_List_get_x3f___rarg(x_1, x_5); -lean_dec(x_1); -if (lean_obj_tag(x_6) == 0) -{ -uint8_t x_7; -x_7 = 0; -return x_7; -} -else -{ -lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; uint8_t x_12; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -lean_dec(x_8); -x_10 = 0; -x_11 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__12; -x_12 = l_List_foldr___at_Lean_Linter_unusedVariables_isInCtorOrStructBinder___spec__1(x_9, x_10, x_11); -return x_12; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isInCtorOrStructBinder___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; uint8_t x_5; lean_object* x_6; -x_4 = lean_unbox(x_2); -lean_dec(x_2); -x_5 = l_List_foldr___at_Lean_Linter_unusedVariables_isInCtorOrStructBinder___spec__1(x_1, x_4, x_3); -lean_dec(x_3); -x_6 = lean_box(x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_dec(x_1); -return x_2; -} -else -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; -x_4 = lean_ctor_get(x_3, 0); -x_5 = lean_ctor_get(x_3, 1); -lean_inc(x_1); -x_6 = l_List_foldr___at_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___spec__1(x_1, x_2, x_5); -x_7 = l_Lean_Syntax_isOfKind(x_1, x_4); -if (x_7 == 0) -{ -return x_6; -} -else -{ -uint8_t x_8; -x_8 = 1; -return x_8; -} -} -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__12; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__1; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__3; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__4; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("opaque", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("axiom", 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__8; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__7; -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__10; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__5; -lean_inc(x_1); -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -if (x_3 == 0) -{ -uint8_t x_4; -lean_dec(x_1); -x_4 = 0; -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_unsigned_to_nat(4u); -x_6 = l_List_get_x3f___rarg(x_1, x_5); -lean_dec(x_1); -if (lean_obj_tag(x_6) == 0) -{ -uint8_t x_7; -x_7 = 0; -return x_7; -} -else -{ -lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; uint8_t x_12; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -lean_dec(x_8); -x_10 = 0; -x_11 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__11; -x_12 = l_List_foldr___at_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___spec__1(x_9, x_10, x_11); -return x_12; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; uint8_t x_5; lean_object* x_6; -x_4 = lean_unbox(x_2); -lean_dec(x_2); -x_5 = l_List_foldr___at_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___spec__1(x_1, x_4, x_3); -lean_dec(x_3); -x_6 = lean_box(x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom(x_1); -lean_dec(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Attr", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("extern", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("simple", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("implementedBy", 13); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__4; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_4 = lean_unsigned_to_nat(1u); -x_5 = l_Lean_Syntax_getArg(x_1, x_4); -x_6 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__1; -x_7 = l_Lean_Name_str___override(x_2, x_6); -x_8 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__2; -lean_inc(x_7); -x_9 = l_Lean_Name_str___override(x_7, x_8); -lean_inc(x_5); -x_10 = l_Lean_Syntax_isOfKind(x_5, x_9); -lean_dec(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_11 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__3; -x_12 = l_Lean_Name_str___override(x_7, x_11); -lean_inc(x_5); -x_13 = l_Lean_Syntax_isOfKind(x_5, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -uint8_t x_14; -lean_dec(x_5); -x_14 = 0; -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Lean_Syntax_getArg(x_5, x_15); -lean_dec(x_5); -x_17 = l_Lean_Syntax_getId(x_16); -lean_dec(x_16); -x_18 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__5; -x_19 = lean_name_eq(x_17, x_18); -lean_dec(x_17); -return x_19; -} -} -else -{ -uint8_t x_20; -lean_dec(x_7); -lean_dec(x_5); -x_20 = 1; -return x_20; -} -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("attrInstance", 12); -return x_1; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -lean_dec(x_3); -x_4 = lean_unsigned_to_nat(1u); -x_5 = l_Lean_Syntax_getArg(x_1, x_4); -lean_dec(x_1); -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Syntax_getArg(x_5, x_6); -lean_dec(x_5); -x_8 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1; -lean_inc(x_2); -x_9 = l_Lean_Name_str___override(x_2, x_8); -x_10 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2___closed__1; -x_11 = l_Lean_Name_str___override(x_9, x_10); -lean_inc(x_7); -x_12 = l_Lean_Syntax_isOfKind(x_7, x_11); -lean_dec(x_11); -if (x_12 == 0) -{ -uint8_t x_13; -lean_dec(x_7); -lean_dec(x_2); -x_13 = 0; -return x_13; -} -else -{ -lean_object* x_14; uint8_t x_15; -x_14 = lean_box(0); -x_15 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1(x_7, x_2, x_14); -lean_dec(x_7); -return x_15; -} -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("attributes", 10); -return x_1; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -lean_dec(x_3); -x_4 = lean_unsigned_to_nat(1u); -x_5 = l_Lean_Syntax_getArg(x_1, x_4); -lean_dec(x_1); -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Syntax_getArg(x_5, x_6); -lean_dec(x_5); -x_8 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1; -lean_inc(x_2); -x_9 = l_Lean_Name_str___override(x_2, x_8); -x_10 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3___closed__1; -x_11 = l_Lean_Name_str___override(x_9, x_10); -lean_inc(x_7); -x_12 = l_Lean_Syntax_isOfKind(x_7, x_11); -lean_dec(x_11); -if (x_12 == 0) -{ -uint8_t x_13; -lean_dec(x_7); -lean_dec(x_2); -x_13 = 0; -return x_13; -} -else -{ -lean_object* x_14; uint8_t x_15; -x_14 = lean_box(0); -x_15 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2(x_7, x_2, x_14); -return x_15; -} -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("declModifiers", 13); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("declaration", 11); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__3; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__4; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__5; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__6; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__7; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__8; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__9; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__10; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_17; uint8_t x_18; -x_17 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__11; -lean_inc(x_1); -x_18 = l_Lean_Linter_stackMatches(x_1, x_17); -if (x_18 == 0) -{ -uint8_t x_19; -lean_dec(x_1); -x_19 = 0; -return x_19; -} -else -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_unsigned_to_nat(3u); -x_21 = l_List_get_x3f___rarg(x_1, x_20); -if (lean_obj_tag(x_21) == 0) -{ -uint8_t x_22; -lean_dec(x_1); -x_22 = 0; -return x_22; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_23 = lean_ctor_get(x_21, 0); -lean_inc(x_23); -lean_dec(x_21); -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -lean_dec(x_23); -x_25 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__10; -lean_inc(x_24); -x_26 = l_Lean_Syntax_isOfKind(x_24, x_25); -if (x_26 == 0) -{ -lean_object* x_27; uint8_t x_28; -x_27 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__12; -x_28 = l_Lean_Syntax_isOfKind(x_24, x_27); -if (x_28 == 0) -{ -uint8_t x_29; -lean_dec(x_1); -x_29 = 0; -return x_29; -} -else -{ -lean_object* x_30; -x_30 = lean_box(0); -x_2 = x_30; -goto block_16; -} -} -else -{ -lean_object* x_31; -lean_dec(x_24); -x_31 = lean_box(0); -x_2 = x_31; -goto block_16; -} -} -} -block_16: -{ -lean_object* x_3; lean_object* x_4; -lean_dec(x_2); -x_3 = lean_unsigned_to_nat(5u); -x_4 = l_List_get_x3f___rarg(x_1, x_3); -lean_dec(x_1); -if (lean_obj_tag(x_4) == 0) -{ -uint8_t x_5; -x_5 = 0; -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); +uint8_t x_5; lean_object* x_6; +x_5 = l_Lean_Linter_unusedVariables_isTopLevelDecl(x_1, x_2, x_3, x_4); lean_dec(x_4); -x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -lean_dec(x_6); -x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Lean_Syntax_getArg(x_7, x_8); -lean_dec(x_7); -x_10 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__2; -lean_inc(x_9); -x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); -if (x_11 == 0) -{ -uint8_t x_12; -lean_dec(x_9); -x_12 = 0; -return x_12; -} -else -{ -lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_13 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4; -x_14 = lean_box(0); -x_15 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3(x_9, x_13, x_14); -return x_15; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; lean_object* x_5; -x_4 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1(x_1, x_2, x_3); -lean_dec(x_3); -lean_dec(x_1); -x_5 = lean_box(x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; lean_object* x_5; -x_4 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2(x_1, x_2, x_3); -x_5 = lean_box(x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; lean_object* x_5; -x_4 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3(x_1, x_2, x_3); -x_5 = lean_box(x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition(x_1); -lean_dec(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("explicitBinder", 14); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2; -x_2 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("depArrow", 8); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2; -x_2 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__4; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__5; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__6; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__7; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__8; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDepArrow___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__9; -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDepArrow(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInDepArrow___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDepArrow___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInDepArrow(x_1); -lean_dec(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__5; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__1; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__3; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("whereStructField", 16); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6; -x_2 = l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__5; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__4; -lean_inc(x_1); -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -if (x_3 == 0) -{ -uint8_t x_4; -lean_dec(x_1); -x_4 = 0; -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_unsigned_to_nat(3u); -x_6 = l_List_get_x3f___rarg(x_1, x_5); -if (lean_obj_tag(x_6) == 0) -{ -uint8_t x_7; -lean_dec(x_1); -x_7 = 0; -return x_7; -} -else -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_ctor_get(x_8, 1); -lean_inc(x_9); -lean_dec(x_8); -x_10 = lean_unsigned_to_nat(1u); -x_11 = lean_nat_dec_eq(x_9, x_10); -lean_dec(x_9); -if (x_11 == 0) -{ -uint8_t x_12; -lean_dec(x_1); -x_12 = 0; -return x_12; -} -else -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_unsigned_to_nat(5u); -x_14 = l_List_get_x3f___rarg(x_1, x_13); -lean_dec(x_1); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -x_15 = 0; -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_16 = lean_ctor_get(x_14, 0); -lean_inc(x_16); -lean_dec(x_14); -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -lean_dec(x_16); -x_18 = l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__6; -x_19 = l_Lean_Syntax_isOfKind(x_17, x_18); -if (x_19 == 0) -{ -uint8_t x_20; -x_20 = 1; -return x_20; -} -else -{ -uint8_t x_21; -x_21 = 0; -return x_21; -} -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInLetDeclaration___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInLetDeclaration(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isInDeclarationSignature___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_dec(x_1); -return x_2; -} -else -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; -x_4 = lean_ctor_get(x_3, 0); -x_5 = lean_ctor_get(x_3, 1); -lean_inc(x_1); -x_6 = l_List_foldr___at_Lean_Linter_unusedVariables_isInDeclarationSignature___spec__1(x_1, x_2, x_5); -x_7 = l_Lean_Syntax_isOfKind(x_1, x_4); -if (x_7 == 0) -{ -return x_6; -} -else -{ -uint8_t x_8; -x_8 = 1; -return x_8; -} -} -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___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; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__1; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___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_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__3; -lean_inc(x_1); -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -if (x_3 == 0) -{ -uint8_t x_4; -lean_dec(x_1); -x_4 = 0; -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_unsigned_to_nat(3u); -x_6 = l_List_get_x3f___rarg(x_1, x_5); -lean_dec(x_1); -if (lean_obj_tag(x_6) == 0) -{ -uint8_t x_7; -x_7 = 0; -return x_7; -} -else -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -x_10 = lean_ctor_get(x_8, 1); -lean_inc(x_10); -lean_dec(x_8); -x_11 = lean_unsigned_to_nat(0u); -x_12 = lean_nat_dec_eq(x_10, x_11); -lean_dec(x_10); -if (x_12 == 0) -{ -uint8_t x_13; -lean_dec(x_9); -x_13 = 0; -return x_13; -} -else -{ -uint8_t x_14; lean_object* x_15; uint8_t x_16; -x_14 = 0; -x_15 = l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__14; -x_16 = l_List_foldr___at_Lean_Linter_unusedVariables_isInDeclarationSignature___spec__1(x_9, x_14, x_15); -return x_16; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isInDeclarationSignature___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; uint8_t x_5; lean_object* x_6; -x_4 = lean_unbox(x_2); -lean_dec(x_2); -x_5 = l_List_foldr___at_Lean_Linter_unusedVariables_isInDeclarationSignature___spec__1(x_1, x_4, x_3); -lean_dec(x_3); x_6 = lean_box(x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInDeclarationSignature___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInDeclarationSignature(x_1); -lean_dec(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("basicFun", 8); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2; -x_2 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__3; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__4; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("paren", 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2; -x_2 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__7; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__8; -x_2 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__5; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3; -x_2 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__9; -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_EXPORT uint8_t l_Lean_Linter_unusedVariables_isInFun___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__5; -lean_inc(x_1); -x_3 = l_Lean_Linter_stackMatches(x_1, x_2); -if (x_3 == 0) -{ -lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Linter_unusedVariables_isInFun___rarg___closed__10; -x_5 = l_Lean_Linter_stackMatches(x_1, x_4); -return x_5; -} -else -{ -uint8_t x_6; -lean_dec(x_1); -x_6 = 1; -return x_6; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInFun(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInFun___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInFun___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isInFun___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isInFun___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isInFun(x_1); -lean_dec(x_1); -return x_2; -} -} -static lean_object* _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("matchAlt", 8); -return x_1; -} -} -static lean_object* _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2; -x_2 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Tactic", 6); -return x_1; -} -} -static lean_object* _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4; -x_2 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__3; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("inductionAltLHS", 15); -return x_1; -} -} -static lean_object* _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__4; -x_2 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__5; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1(uint8_t x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -return x_1; -} -else -{ -lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_3 = lean_ctor_get(x_2, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_2, 1); -lean_inc(x_4); -lean_dec(x_2); -x_5 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1(x_1, x_4); -x_6 = lean_ctor_get(x_3, 0); -lean_inc(x_6); -x_7 = lean_ctor_get(x_3, 1); -lean_inc(x_7); -lean_dec(x_3); -x_8 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__2; -lean_inc(x_6); -x_9 = l_Lean_Syntax_isOfKind(x_6, x_8); -if (x_9 == 0) -{ -lean_object* x_10; uint8_t x_11; -x_10 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__6; -x_11 = l_Lean_Syntax_isOfKind(x_6, x_10); -if (x_11 == 0) -{ -lean_dec(x_7); -return x_5; -} -else -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_unsigned_to_nat(2u); -x_13 = lean_nat_dec_eq(x_7, x_12); -lean_dec(x_7); -if (x_13 == 0) -{ -return x_5; -} -else -{ -uint8_t x_14; -x_14 = 1; -return x_14; -} -} -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = lean_unsigned_to_nat(1u); -x_16 = lean_nat_dec_eq(x_7, x_15); -if (x_16 == 0) -{ -lean_object* x_17; uint8_t x_18; -x_17 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__6; -x_18 = l_Lean_Syntax_isOfKind(x_6, x_17); -if (x_18 == 0) -{ -lean_dec(x_7); -return x_5; -} -else -{ -lean_object* x_19; uint8_t x_20; -x_19 = lean_unsigned_to_nat(2u); -x_20 = lean_nat_dec_eq(x_7, x_19); -lean_dec(x_7); -if (x_20 == 0) -{ -return x_5; -} -else -{ -uint8_t x_21; -x_21 = 1; -return x_21; -} -} -} -else -{ -uint8_t x_22; -lean_dec(x_7); -lean_dec(x_6); -x_22 = 1; -return x_22; -} -} -} -} -} -LEAN_EXPORT uint8_t l_Lean_Linter_unusedVariables_isPatternVar___rarg(lean_object* x_1) { -_start: -{ -uint8_t x_2; uint8_t x_3; -x_2 = 0; -x_3 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isPatternVar(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isPatternVar___rarg___boxed), 1, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; uint8_t x_4; lean_object* x_5; -x_3 = lean_unbox(x_1); -lean_dec(x_1); -x_4 = l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1(x_3, x_2); -x_5 = lean_box(x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isPatternVar___rarg___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Linter_unusedVariables_isPatternVar___rarg(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Linter_unusedVariables_isPatternVar___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Linter_unusedVariables_isPatternVar(x_1); -lean_dec(x_1); -return x_2; -} -} LEAN_EXPORT lean_object* l_Std_mkHashMap___at_Lean_Linter_unusedVariables___spec__1(lean_object* x_1) { _start: { @@ -6857,315 +8045,332 @@ return x_38; } } } -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5) { +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6) { _start: { -uint8_t x_6; -x_6 = lean_usize_dec_eq(x_4, x_5); -if (x_6 == 0) +uint8_t x_7; +x_7 = lean_usize_dec_eq(x_5, x_6); +if (x_7 == 0) { -lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_7 = lean_array_uget(x_3, x_4); +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_array_uget(x_4, x_5); lean_inc(x_2); +lean_inc(x_3); lean_inc(x_1); -x_8 = lean_apply_2(x_7, x_1, x_2); -x_9 = lean_unbox(x_8); -lean_dec(x_8); -if (x_9 == 0) -{ -size_t x_10; size_t x_11; -x_10 = 1; -x_11 = lean_usize_add(x_4, x_10); -x_4 = x_11; -goto _start; -} -else -{ -uint8_t x_13; -lean_dec(x_2); -lean_dec(x_1); -x_13 = 1; -return x_13; -} -} -else -{ -uint8_t x_14; -lean_dec(x_2); -lean_dec(x_1); -x_14 = 0; -return x_14; -} -} -} -LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { -_start: -{ -if (lean_obj_tag(x_4) == 0) -{ -lean_dec(x_1); -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; -x_5 = lean_ctor_get(x_4, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_4, 1); -lean_inc(x_6); -lean_dec(x_4); -lean_inc(x_1); -x_7 = l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(x_1, x_2, x_3, x_6); -x_8 = lean_ctor_get(x_5, 2); -lean_inc(x_8); -lean_dec(x_5); -lean_inc(x_1); -x_9 = l_Lean_Linter_findSyntaxStack_x3f(x_8, x_1); -if (lean_obj_tag(x_9) == 0) -{ -lean_dec(x_1); -return x_7; -} -else -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); +x_9 = lean_apply_3(x_8, x_1, x_3, x_2); +x_10 = lean_unbox(x_9); lean_dec(x_9); -x_11 = lean_array_get_size(x_2); -x_12 = lean_unsigned_to_nat(0u); -x_13 = lean_nat_dec_lt(x_12, x_11); -if (x_13 == 0) -{ -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_1); -return x_7; -} -else -{ -uint8_t x_14; -x_14 = lean_nat_dec_le(x_11, x_11); -if (x_14 == 0) -{ -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_1); -return x_7; -} -else -{ -size_t x_15; size_t x_16; uint8_t x_17; -x_15 = 0; -x_16 = lean_usize_of_nat(x_11); -lean_dec(x_11); -x_17 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29(x_1, x_10, x_2, x_15, x_16); -if (x_17 == 0) -{ -return x_7; -} -else -{ -uint8_t x_18; -x_18 = 1; -return x_18; -} -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -uint8_t x_10; -x_10 = lean_usize_dec_eq(x_5, x_6); if (x_10 == 0) { -lean_object* x_11; lean_object* x_12; -x_11 = lean_array_uget(x_4, x_5); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_2); -x_12 = l_Lean_Linter_collectMacroExpansions_x3f___at_Lean_Linter_unusedVariables___spec__23(x_2, x_11, x_7, x_8, x_9); -if (lean_obj_tag(x_12) == 0) -{ -lean_object* x_13; -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; size_t x_15; size_t x_16; -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -x_15 = 1; -x_16 = lean_usize_add(x_5, x_15); -x_5 = x_16; -x_9 = x_14; +size_t x_11; size_t x_12; +x_11 = 1; +x_12 = lean_usize_add(x_5, x_11); +x_5 = x_12; goto _start; } else { -uint8_t x_18; -x_18 = !lean_is_exclusive(x_12); -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; uint8_t x_23; -x_19 = lean_ctor_get(x_12, 1); -x_20 = lean_ctor_get(x_12, 0); -lean_dec(x_20); -x_21 = lean_ctor_get(x_13, 0); -lean_inc(x_21); -lean_dec(x_13); -x_22 = 0; -lean_inc(x_1); -x_23 = l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(x_1, x_3, x_22, x_21); -if (x_23 == 0) -{ -size_t x_24; size_t x_25; -lean_free_object(x_12); -x_24 = 1; -x_25 = lean_usize_add(x_5, x_24); -x_5 = x_25; -x_9 = x_19; -goto _start; -} -else -{ -uint8_t x_27; lean_object* x_28; -lean_dec(x_8); -lean_dec(x_7); +uint8_t x_14; +lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_27 = 1; -x_28 = lean_box(x_27); -lean_ctor_set(x_12, 0, x_28); -return x_12; +x_14 = 1; +return x_14; } } else { -lean_object* x_29; lean_object* x_30; uint8_t x_31; uint8_t x_32; -x_29 = lean_ctor_get(x_12, 1); -lean_inc(x_29); -lean_dec(x_12); -x_30 = lean_ctor_get(x_13, 0); -lean_inc(x_30); -lean_dec(x_13); -x_31 = 0; -lean_inc(x_1); -x_32 = l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(x_1, x_3, x_31, x_30); -if (x_32 == 0) -{ -size_t x_33; size_t x_34; -x_33 = 1; -x_34 = lean_usize_add(x_5, x_33); -x_5 = x_34; -x_9 = x_29; -goto _start; -} -else -{ -uint8_t x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_8); -lean_dec(x_7); +uint8_t x_15; +lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_36 = 1; -x_37 = lean_box(x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_29); -return x_38; +x_15 = 0; +return x_15; } } } -} -else -{ -uint8_t x_39; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_39 = !lean_is_exclusive(x_12); -if (x_39 == 0) -{ -return x_12; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_12, 0); -x_41 = lean_ctor_get(x_12, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_12); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; -} -} -} -else -{ -uint8_t x_43; lean_object* x_44; lean_object* x_45; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_43 = 0; -x_44 = lean_box(x_43); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_9); -return x_45; -} -} -} -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5) { +LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { -uint8_t x_6; -x_6 = lean_usize_dec_eq(x_4, x_5); -if (x_6 == 0) +if (lean_obj_tag(x_5) == 0) { -lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_7 = lean_array_uget(x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_4; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec(x_5); +lean_inc(x_3); lean_inc(x_2); -lean_inc(x_1); -x_8 = lean_apply_2(x_7, x_1, x_2); -x_9 = lean_unbox(x_8); -lean_dec(x_8); -if (x_9 == 0) +x_8 = l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(x_1, x_2, x_3, x_4, x_7); +x_9 = lean_ctor_get(x_6, 2); +lean_inc(x_9); +lean_dec(x_6); +lean_inc(x_2); +x_10 = l_Lean_Linter_findSyntaxStack_x3f(x_9, x_2); +if (lean_obj_tag(x_10) == 0) { -size_t x_10; size_t x_11; -x_10 = 1; -x_11 = lean_usize_add(x_4, x_10); -x_4 = x_11; +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_array_get_size(x_1); +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_lt(x_13, x_12); +if (x_14 == 0) +{ +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +else +{ +uint8_t x_15; +x_15 = lean_nat_dec_le(x_12, x_12); +if (x_15 == 0) +{ +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +else +{ +size_t x_16; size_t x_17; uint8_t x_18; +x_16 = 0; +x_17 = lean_usize_of_nat(x_12); +lean_dec(x_12); +x_18 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29(x_2, x_3, x_11, x_1, x_16, x_17); +if (x_18 == 0) +{ +return x_8; +} +else +{ +uint8_t x_19; +x_19 = 1; +return x_19; +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = lean_usize_dec_eq(x_6, x_7); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_array_uget(x_5, x_6); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_3); +x_13 = l_Lean_Linter_collectMacroExpansions_x3f___at_Lean_Linter_unusedVariables___spec__23(x_3, x_12, x_8, x_9, x_10); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; size_t x_16; size_t x_17; +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = 1; +x_17 = lean_usize_add(x_6, x_16); +x_6 = x_17; +x_10 = x_15; goto _start; } else { -uint8_t x_13; +uint8_t x_19; +x_19 = !lean_is_exclusive(x_13); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; uint8_t x_24; +x_20 = lean_ctor_get(x_13, 1); +x_21 = lean_ctor_get(x_13, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_14, 0); +lean_inc(x_22); +lean_dec(x_14); +x_23 = 0; +lean_inc(x_4); +lean_inc(x_2); +x_24 = l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(x_1, x_2, x_4, x_23, x_22); +if (x_24 == 0) +{ +size_t x_25; size_t x_26; +lean_free_object(x_13); +x_25 = 1; +x_26 = lean_usize_add(x_6, x_25); +x_6 = x_26; +x_10 = x_20; +goto _start; +} +else +{ +uint8_t x_28; lean_object* x_29; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_3); lean_dec(x_2); -lean_dec(x_1); -x_13 = 1; +x_28 = 1; +x_29 = lean_box(x_28); +lean_ctor_set(x_13, 0, x_29); return x_13; } } else { +lean_object* x_30; lean_object* x_31; uint8_t x_32; uint8_t x_33; +x_30 = lean_ctor_get(x_13, 1); +lean_inc(x_30); +lean_dec(x_13); +x_31 = lean_ctor_get(x_14, 0); +lean_inc(x_31); +lean_dec(x_14); +x_32 = 0; +lean_inc(x_4); +lean_inc(x_2); +x_33 = l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(x_1, x_2, x_4, x_32, x_31); +if (x_33 == 0) +{ +size_t x_34; size_t x_35; +x_34 = 1; +x_35 = lean_usize_add(x_6, x_34); +x_6 = x_35; +x_10 = x_30; +goto _start; +} +else +{ +uint8_t x_37; lean_object* x_38; lean_object* x_39; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_37 = 1; +x_38 = lean_box(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_30); +return x_39; +} +} +} +} +else +{ +uint8_t x_40; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_40 = !lean_is_exclusive(x_13); +if (x_40 == 0) +{ +return x_13; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_13, 0); +x_42 = lean_ctor_get(x_13, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_13); +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; +} +} +} +else +{ +uint8_t x_44; lean_object* x_45; lean_object* x_46; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_44 = 0; +x_45 = lean_box(x_44); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_10); +return x_46; +} +} +} +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_usize_dec_eq(x_5, x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_array_uget(x_4, x_5); +lean_inc(x_2); +lean_inc(x_3); +lean_inc(x_1); +x_9 = lean_apply_3(x_8, x_1, x_3, x_2); +x_10 = lean_unbox(x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +size_t x_11; size_t x_12; +x_11 = 1; +x_12 = lean_usize_add(x_5, x_11); +x_5 = x_12; +goto _start; +} +else +{ uint8_t x_14; +lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_14 = 0; +x_14 = 1; return x_14; } } +else +{ +uint8_t x_15; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_15 = 0; +return x_15; +} +} } LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__33(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { _start: @@ -7283,440 +8488,206 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_13; lean_object* x_14; +uint8_t x_14; lean_object* x_15; if (x_3 == 0) { -uint8_t x_20; +uint8_t x_21; +lean_dec(x_8); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_20 = 0; -x_13 = x_20; -x_14 = x_12; -goto block_19; +x_21 = 0; +x_14 = x_21; +x_15 = x_13; +goto block_20; } else { if (x_4 == 0) { -uint8_t x_21; +uint8_t x_22; +lean_dec(x_8); +lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_21 = 0; -x_13 = x_21; -x_14 = x_12; -goto block_19; -} -else -{ -size_t x_22; size_t x_23; lean_object* x_24; x_22 = 0; -x_23 = lean_usize_of_nat(x_5); +x_14 = x_22; +x_15 = x_13; +goto block_20; +} +else +{ +size_t x_23; size_t x_24; lean_object* x_25; +x_23 = 0; +x_24 = lean_usize_of_nat(x_5); lean_dec(x_5); +lean_inc(x_12); lean_inc(x_11); -lean_inc(x_10); lean_inc(x_2); -x_24 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31(x_6, x_2, x_7, x_8, x_22, x_23, x_10, x_11, x_12); -if (lean_obj_tag(x_24) == 0) +x_25 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31(x_6, x_7, x_2, x_8, x_9, x_23, x_24, x_11, x_12, x_13); +lean_dec(x_6); +if (lean_obj_tag(x_25) == 0) { -lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_24, 1); +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); -lean_dec(x_24); -x_27 = lean_unbox(x_25); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); lean_dec(x_25); -x_13 = x_27; -x_14 = x_26; -goto block_19; +x_28 = lean_unbox(x_26); +lean_dec(x_26); +x_14 = x_28; +x_15 = x_27; +goto block_20; } else { -uint8_t x_28; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_2); -x_28 = !lean_is_exclusive(x_24); -if (x_28 == 0) -{ -return x_24; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_24, 0); -x_30 = lean_ctor_get(x_24, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_24); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; -} -} -} -} -block_19: -{ -if (x_13 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_box(0); -x_16 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1(x_1, x_2, x_15, x_10, x_11, x_14); -lean_dec(x_11); -lean_dec(x_2); -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_2); -x_17 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3; -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_14); -return x_18; -} -} -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -lean_dec(x_10); -lean_inc(x_6); -x_14 = l_Lean_Linter_findSyntaxStack_x3f(x_8, x_6); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; +uint8_t x_29; lean_dec(x_12); lean_dec(x_11); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); lean_dec(x_2); -x_15 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3; -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_13); -return x_16; -} -else +x_29 = !lean_is_exclusive(x_25); +if (x_29 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = lean_ctor_get(x_14, 0); -lean_inc(x_17); -lean_dec(x_14); -x_18 = lean_array_get_size(x_9); -x_19 = lean_unsigned_to_nat(0u); -x_20 = lean_nat_dec_lt(x_19, x_18); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_18); -lean_dec(x_17); -x_21 = lean_box(0); -x_22 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_7, x_21, x_11, x_12, x_13); -lean_dec(x_7); -lean_dec(x_9); -return x_22; -} -else -{ -uint8_t x_23; -x_23 = lean_nat_dec_le(x_18, x_18); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -lean_dec(x_17); -x_24 = lean_box(0); -x_25 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_7, x_24, x_11, x_12, x_13); -lean_dec(x_7); -lean_dec(x_9); return x_25; } else { -size_t x_26; size_t x_27; uint8_t x_28; -x_26 = 0; -x_27 = lean_usize_of_nat(x_18); -lean_dec(x_18); -lean_inc(x_6); -x_28 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32(x_6, x_17, x_9, x_26, x_27); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; -x_29 = lean_box(0); -x_30 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_7, x_29, x_11, x_12, x_13); -lean_dec(x_7); -lean_dec(x_9); -return x_30; -} -else -{ -lean_object* x_31; lean_object* x_32; -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_2); -x_31 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3; -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_13); +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_25, 0); +x_31 = lean_ctor_get(x_25, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_25); +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; } } } } -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__1() { -_start: +block_20: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(1u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__2() { -_start: +if (x_14 == 0) { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isPatternVar___boxed), 1, 0); -return x_1; +lean_object* x_16; lean_object* x_17; +x_16 = lean_box(0); +x_17 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1(x_1, x_2, x_16, x_11, x_12, x_15); +lean_dec(x_12); +lean_dec(x_2); +return x_17; } -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__3() { -_start: +else { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__1; -x_2 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -uint8_t x_15; +lean_object* x_18; lean_object* x_19; +lean_dec(x_12); lean_dec(x_11); -x_15 = l_Lean_Linter_getLinterUnusedVariablesPatternVars(x_9); -lean_dec(x_9); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__3; -x_17 = l_Array_append___rarg(x_10, x_16); -x_18 = lean_box(0); -x_19 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_17, x_18, x_12, x_13, x_14); +lean_dec(x_2); +x_18 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3; +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_15); return x_19; } -else -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_box(0); -x_21 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_10, x_20, x_12, x_13, x_14); -return x_21; } } } -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__1() { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(9u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_matchesUnusedPattern___boxed), 2, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isVariable___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInStructure___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInInductive___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInDepArrow___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(3u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__11() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInLetDeclaration___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__10; -x_2 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__11; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__13() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInDeclarationSignature___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__12; -x_2 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__13; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isInFun___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__14; -x_2 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__15; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; 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; uint8_t x_34; +lean_object* x_15; lean_dec(x_11); -x_15 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isTopLevelDecl___boxed), 3, 1); -lean_closure_set(x_15, 0, x_1); -x_16 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__1; -x_17 = lean_array_push(x_16, x_15); -x_18 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__2; -x_19 = lean_array_push(x_17, x_18); -x_20 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__3; -x_21 = lean_array_push(x_19, x_20); -x_22 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__4; -x_23 = lean_array_push(x_21, x_22); -x_24 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__5; -x_25 = lean_array_push(x_23, x_24); -x_26 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__6; -x_27 = lean_array_push(x_25, x_26); -x_28 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__7; -x_29 = lean_array_push(x_27, x_28); -x_30 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__8; -x_31 = lean_array_push(x_29, x_30); -x_32 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__9; -x_33 = lean_array_push(x_31, x_32); -x_34 = l_Lean_Linter_getLinterUnusedVariablesFunArgs(x_10); -if (x_34 == 0) +lean_inc(x_7); +x_15 = l_Lean_Linter_findSyntaxStack_x3f(x_10, x_7); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_35 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__16; -x_36 = l_Array_append___rarg(x_33, x_35); -x_37 = lean_box(0); -x_38 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_36, x_37, x_12, x_13, x_14); +lean_object* x_16; lean_object* x_17; +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_2); -return x_38; +x_16 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3; +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_14); +return x_17; } else { -lean_object* x_39; lean_object* x_40; -x_39 = lean_box(0); -x_40 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33, x_39, x_12, x_13, x_14); +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_ctor_get(x_15, 0); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_array_get_size(x_6); +x_20 = lean_unsigned_to_nat(0u); +x_21 = lean_nat_dec_lt(x_20, x_19); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_19); +lean_dec(x_18); +x_22 = lean_box(0); +x_23 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_22, x_12, x_13, x_14); +return x_23; +} +else +{ +uint8_t x_24; +x_24 = lean_nat_dec_le(x_19, x_19); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +lean_dec(x_19); +lean_dec(x_18); +x_25 = lean_box(0); +x_26 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14); +return x_26; +} +else +{ +size_t x_27; size_t x_28; uint8_t x_29; +x_27 = 0; +x_28 = lean_usize_of_nat(x_19); +lean_dec(x_19); +lean_inc(x_8); +lean_inc(x_7); +x_29 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32(x_7, x_8, x_18, x_6, x_27, x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_box(0); +x_31 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_30, x_12, x_13, x_14); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_2); -return x_40; +x_32 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3; +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_14); +return x_33; } } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +} +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -7735,10 +8706,9 @@ lean_dec(x_16); lean_dec(x_13); lean_dec(x_12); lean_dec(x_10); -lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_4); +lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); x_18 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3; @@ -7751,12 +8721,13 @@ else { lean_object* x_20; lean_object* x_21; x_20 = lean_box(0); -x_21 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_16, x_20, x_12, x_13, x_14); +x_21 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_16, x_9, x_10, x_20, x_12, x_13, x_14); +lean_dec(x_2); return x_21; } } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* 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) { _start: { uint8_t x_18; @@ -7771,10 +8742,9 @@ lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); lean_dec(x_10); -lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_4); +lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -7804,7 +8774,7 @@ lean_dec(x_23); lean_dec(x_22); lean_dec(x_12); x_26 = lean_box(0); -x_27 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_26, x_15, x_16, x_17); +x_27 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_26, x_15, x_16, x_17); return x_27; } else @@ -7818,7 +8788,7 @@ lean_dec(x_23); lean_dec(x_22); lean_dec(x_12); x_29 = lean_box(0); -x_30 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_29, x_15, x_16, x_17); +x_30 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_29, x_15, x_16, x_17); return x_30; } else @@ -7833,7 +8803,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; x_34 = lean_box(0); -x_35 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34, x_15, x_16, x_17); +x_35 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34, x_15, x_16, x_17); return x_35; } else @@ -7842,10 +8812,9 @@ lean_object* x_36; lean_object* x_37; lean_dec(x_16); lean_dec(x_15); lean_dec(x_10); -lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_4); +lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -7865,10 +8834,9 @@ lean_dec(x_16); lean_dec(x_15); lean_dec(x_12); lean_dec(x_10); -lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_4); +lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -7881,7 +8849,7 @@ return x_39; } } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { if (lean_obj_tag(x_9) == 0) @@ -7890,9 +8858,8 @@ lean_object* x_14; lean_dec(x_12); lean_dec(x_11); lean_dec(x_8); -lean_dec(x_6); +lean_dec(x_7); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_10); @@ -8016,12 +8983,11 @@ lean_object* x_44; lean_object* x_45; x_44 = lean_box(0); lean_inc(x_12); lean_inc(x_11); -lean_inc(x_8); +lean_inc(x_7); lean_inc(x_1); -lean_inc(x_3); +lean_inc(x_8); lean_inc(x_4); -lean_inc(x_6); -x_45 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__7(x_24, x_6, x_37, x_31, x_5, x_7, x_4, x_26, x_3, x_1, x_23, x_8, x_22, x_44, x_11, x_12, x_13); +x_45 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5(x_24, x_37, x_31, x_5, x_6, x_4, x_8, x_26, x_3, x_1, x_23, x_7, x_22, x_44, x_11, x_12, x_13); if (lean_obj_tag(x_45) == 0) { lean_object* x_46; @@ -8034,9 +9000,8 @@ lean_dec(x_21); lean_dec(x_12); lean_dec(x_11); lean_dec(x_8); -lean_dec(x_6); +lean_dec(x_7); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); x_47 = !lean_is_exclusive(x_45); if (x_47 == 0) @@ -8087,9 +9052,8 @@ lean_dec(x_21); lean_dec(x_12); lean_dec(x_11); lean_dec(x_8); -lean_dec(x_6); +lean_dec(x_7); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_1); x_56 = !lean_is_exclusive(x_45); if (x_56 == 0) @@ -8572,157 +9536,200 @@ lean_dec(x_20); x_24 = lean_nat_dec_le(x_3, x_3); if (x_6 == 0) { -lean_object* x_57; -x_57 = l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__1; -x_25 = x_57; -goto block_56; +lean_object* x_66; +x_66 = l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__1; +x_25 = x_66; +goto block_65; } else { -size_t x_58; size_t x_59; lean_object* x_60; lean_object* x_61; -x_58 = lean_usize_of_nat(x_3); -x_59 = 0; -x_60 = l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__1; -x_61 = l_Array_foldrMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__37(x_2, x_58, x_59, x_60); -x_25 = x_61; -goto block_56; +size_t x_67; size_t x_68; lean_object* x_69; lean_object* x_70; +x_67 = lean_usize_of_nat(x_3); +x_68 = 0; +x_69 = l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__1; +x_70 = l_Array_foldrMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__37(x_2, x_67, x_68, x_69); +x_25 = x_70; +goto block_65; } -block_56: +block_65: { -lean_object* x_26; lean_object* x_27; lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_40 = lean_ctor_get(x_25, 1); -lean_inc(x_40); +lean_object* x_26; lean_object* x_27; lean_object* x_49; lean_object* x_50; uint8_t x_51; +x_49 = lean_ctor_get(x_25, 1); +lean_inc(x_49); lean_dec(x_25); -x_41 = lean_array_get_size(x_40); -x_42 = lean_nat_dec_lt(x_13, x_41); -if (x_42 == 0) +x_50 = lean_array_get_size(x_49); +x_51 = lean_nat_dec_lt(x_13, x_50); +if (x_51 == 0) { -lean_object* x_43; -lean_dec(x_41); -lean_dec(x_40); -x_43 = l_Lean_Linter_unusedVariables___lambda__1___closed__1; -x_26 = x_43; +lean_object* x_52; +lean_dec(x_50); +lean_dec(x_49); +x_52 = l_Lean_Linter_unusedVariables___lambda__1___closed__1; +x_26 = x_52; x_27 = x_21; -goto block_39; +goto block_48; } else { -uint8_t x_44; -x_44 = lean_nat_dec_le(x_41, x_41); -if (x_44 == 0) +uint8_t x_53; +x_53 = lean_nat_dec_le(x_50, x_50); +if (x_53 == 0) { -lean_object* x_45; -lean_dec(x_41); -lean_dec(x_40); -x_45 = l_Lean_Linter_unusedVariables___lambda__1___closed__1; -x_26 = x_45; +lean_object* x_54; +lean_dec(x_50); +lean_dec(x_49); +x_54 = l_Lean_Linter_unusedVariables___lambda__1___closed__1; +x_26 = x_54; x_27 = x_21; -goto block_39; +goto block_48; } else { -size_t x_46; size_t x_47; lean_object* x_48; lean_object* x_49; -x_46 = 0; -x_47 = lean_usize_of_nat(x_41); -lean_dec(x_41); -x_48 = l_Lean_Linter_unusedVariables___lambda__1___closed__1; +size_t x_55; size_t x_56; lean_object* x_57; lean_object* x_58; +x_55 = 0; +x_56 = lean_usize_of_nat(x_50); +lean_dec(x_50); +x_57 = l_Lean_Linter_unusedVariables___lambda__1___closed__1; lean_inc(x_9); lean_inc(x_8); -x_49 = l_Array_foldlMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__36(x_40, x_46, x_47, x_48, x_8, x_9, x_21); -lean_dec(x_40); -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_50; lean_object* x_51; -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_49, 1); -lean_inc(x_51); +x_58 = l_Array_foldlMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__36(x_49, x_55, x_56, x_57, x_8, x_9, x_21); lean_dec(x_49); -x_26 = x_50; -x_27 = x_51; -goto block_39; +if (lean_obj_tag(x_58) == 0) +{ +lean_object* x_59; lean_object* x_60; +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_58, 1); +lean_inc(x_60); +lean_dec(x_58); +x_26 = x_59; +x_27 = x_60; +goto block_48; } else { -uint8_t x_52; +uint8_t x_61; lean_dec(x_23); lean_dec(x_22); lean_dec(x_9); lean_dec(x_8); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_52 = !lean_is_exclusive(x_49); -if (x_52 == 0) +x_61 = !lean_is_exclusive(x_58); +if (x_61 == 0) { -return x_49; +return x_58; } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_49, 0); -x_54 = lean_ctor_get(x_49, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_49); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_58, 0); +x_63 = lean_ctor_get(x_58, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_dec(x_58); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +return x_64; } } } } -block_39: +block_48: { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = l_Std_HashMap_toList___at_Lean_Linter_unusedVariables___spec__20(x_23); -x_29 = lean_box(0); -x_30 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34(x_4, x_5, x_2, x_3, x_6, x_22, x_24, x_26, x_28, x_29, x_8, x_9, x_27); -if (lean_obj_tag(x_30) == 0) +lean_object* x_28; +lean_inc(x_9); +lean_inc(x_8); +x_28 = l_Lean_Linter_getUnusedVariablesIgnoreFnsImpl(x_8, x_9, x_27); +if (lean_obj_tag(x_28) == 0) { -uint8_t x_31; -x_31 = !lean_is_exclusive(x_30); -if (x_31 == 0) +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; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec(x_28); +x_31 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables_isTopLevelDecl___boxed), 4, 1); +lean_closure_set(x_31, 0, x_22); +x_32 = l_Array_insertAt___rarg(x_29, x_13, x_31); +x_33 = l_Std_HashMap_toList___at_Lean_Linter_unusedVariables___spec__20(x_23); +x_34 = lean_box(0); +x_35 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34(x_4, x_5, x_2, x_3, x_6, x_24, x_26, x_32, x_33, x_34, x_8, x_9, x_30); +if (lean_obj_tag(x_35) == 0) { -lean_object* x_32; -x_32 = lean_ctor_get(x_30, 0); -lean_dec(x_32); -lean_ctor_set(x_30, 0, x_29); -return x_30; +uint8_t x_36; +x_36 = !lean_is_exclusive(x_35); +if (x_36 == 0) +{ +lean_object* x_37; +x_37 = lean_ctor_get(x_35, 0); +lean_dec(x_37); +lean_ctor_set(x_35, 0, x_34); +return x_35; } else { -lean_object* x_33; lean_object* x_34; -x_33 = lean_ctor_get(x_30, 1); -lean_inc(x_33); -lean_dec(x_30); -x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_29); -lean_ctor_set(x_34, 1, x_33); -return x_34; +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_35, 1); +lean_inc(x_38); +lean_dec(x_35); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_34); +lean_ctor_set(x_39, 1, x_38); +return x_39; } } else { -uint8_t x_35; -x_35 = !lean_is_exclusive(x_30); -if (x_35 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_35); +if (x_40 == 0) { -return x_30; +return x_35; } else { -lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_36 = lean_ctor_get(x_30, 0); -x_37 = lean_ctor_get(x_30, 1); -lean_inc(x_37); -lean_inc(x_36); -lean_dec(x_30); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set(x_38, 1, x_37); -return x_38; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_35, 0); +x_42 = lean_ctor_get(x_35, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_35); +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; +} +} +} +else +{ +uint8_t x_44; +lean_dec(x_26); +lean_dec(x_23); +lean_dec(x_22); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_3); +x_44 = !lean_is_exclusive(x_28); +if (x_44 == 0) +{ +return x_28; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_28, 0); +x_46 = lean_ctor_get(x_28, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_28); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } @@ -8857,6 +9864,7 @@ lean_dec(x_14); x_24 = lean_box(0); x_25 = l_Lean_Linter_unusedVariables___lambda__1(x_18, x_17, x_19, x_1, x_10, x_21, x_24, x_3, x_4, x_23); lean_dec(x_10); +lean_dec(x_17); return x_25; } else @@ -9081,58 +10089,58 @@ lean_dec(x_1); return x_10; } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -size_t x_6; size_t x_7; uint8_t x_8; lean_object* x_9; -x_6 = lean_unbox_usize(x_4); -lean_dec(x_4); +size_t x_7; size_t x_8; uint8_t x_9; lean_object* x_10; x_7 = lean_unbox_usize(x_5); lean_dec(x_5); -x_8 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29(x_1, x_2, x_3, x_6, x_7); -lean_dec(x_3); -x_9 = lean_box(x_8); -return x_9; +x_8 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_9 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__29(x_1, x_2, x_3, x_4, x_7, x_8); +lean_dec(x_4); +x_10 = lean_box(x_9); +return x_10; } } -LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables___spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Linter_unusedVariables___spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -uint8_t x_5; uint8_t x_6; lean_object* x_7; -x_5 = lean_unbox(x_3); -lean_dec(x_3); -x_6 = l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(x_1, x_2, x_5, x_4); -lean_dec(x_2); -x_7 = lean_box(x_6); -return x_7; +uint8_t x_6; uint8_t x_7; lean_object* x_8; +x_6 = lean_unbox(x_4); +lean_dec(x_4); +x_7 = l_List_foldr___at_Lean_Linter_unusedVariables___spec__30(x_1, x_2, x_3, x_6, x_5); +lean_dec(x_1); +x_8 = lean_box(x_7); +return x_8; } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -size_t x_10; size_t x_11; lean_object* x_12; -x_10 = lean_unbox_usize(x_5); -lean_dec(x_5); +size_t x_11; size_t x_12; lean_object* x_13; x_11 = lean_unbox_usize(x_6); lean_dec(x_6); -x_12 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31(x_1, x_2, x_3, x_4, x_10, x_11, x_7, x_8, x_9); -lean_dec(x_4); -lean_dec(x_3); -return x_12; +x_12 = lean_unbox_usize(x_7); +lean_dec(x_7); +x_13 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__31(x_1, x_2, x_3, x_4, x_5, x_11, x_12, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec(x_1); +return x_13; } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -size_t x_6; size_t x_7; uint8_t x_8; lean_object* x_9; -x_6 = lean_unbox_usize(x_4); -lean_dec(x_4); +size_t x_7; size_t x_8; uint8_t x_9; lean_object* x_10; x_7 = lean_unbox_usize(x_5); lean_dec(x_5); -x_8 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32(x_1, x_2, x_3, x_6, x_7); -lean_dec(x_3); -x_9 = lean_box(x_8); -return x_9; +x_8 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_9 = l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__32(x_1, x_2, x_3, x_4, x_7, x_8); +lean_dec(x_4); +x_10 = lean_box(x_9); +return x_10; } } LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Linter_unusedVariables___spec__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -9161,23 +10169,7 @@ lean_dec(x_1); return x_7; } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; uint8_t x_14; lean_object* x_15; -x_13 = lean_unbox(x_3); -lean_dec(x_3); -x_14 = lean_unbox(x_4); -lean_dec(x_4); -x_15 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_1); -return x_15; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; lean_object* x_16; @@ -9185,12 +10177,14 @@ x_14 = lean_unbox(x_3); lean_dec(x_3); x_15 = lean_unbox(x_4); lean_dec(x_4); -x_16 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(x_1, x_2, x_14, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__2(x_1, x_2, x_14, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +lean_dec(x_9); lean_dec(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; lean_object* x_17; @@ -9198,12 +10192,13 @@ x_15 = lean_unbox(x_3); lean_dec(x_3); x_16 = lean_unbox(x_4); lean_dec(x_4); -x_17 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(x_1, x_2, x_15, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__3(x_1, x_2, x_15, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_9); lean_dec(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; lean_object* x_17; @@ -9211,23 +10206,12 @@ x_15 = lean_unbox(x_4); lean_dec(x_4); x_16 = lean_unbox(x_5); lean_dec(x_5); -x_17 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5(x_1, x_2, x_3, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4(x_1, x_2, x_3, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_9); return x_17; } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -uint8_t x_15; uint8_t x_16; lean_object* x_17; -x_15 = lean_unbox(x_5); -lean_dec(x_5); -x_16 = lean_unbox(x_6); -lean_dec(x_6); -x_17 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__6(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -return x_17; -} -} -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__7___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -9248,11 +10232,12 @@ lean_object* x_17 = _args[16]; _start: { uint8_t x_18; uint8_t x_19; lean_object* x_20; -x_18 = lean_unbox(x_5); +x_18 = lean_unbox(x_4); +lean_dec(x_4); +x_19 = lean_unbox(x_5); lean_dec(x_5); -x_19 = lean_unbox(x_6); -lean_dec(x_6); -x_20 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__7(x_1, x_2, x_3, x_4, x_18, x_19, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_20 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5(x_1, x_2, x_3, x_18, x_19, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_9); return x_20; } } @@ -9262,9 +10247,10 @@ _start: uint8_t x_14; uint8_t x_15; lean_object* x_16; x_14 = lean_unbox(x_5); lean_dec(x_5); -x_15 = lean_unbox(x_7); -lean_dec(x_7); -x_16 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34(x_1, x_2, x_3, x_4, x_14, x_6, x_15, x_8, x_9, x_10, x_11, x_12, x_13); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_3); lean_dec(x_2); return x_16; } @@ -9329,10 +10315,11 @@ lean_dec(x_6); x_12 = l_Lean_Linter_unusedVariables___lambda__1(x_1, x_2, x_3, x_4, x_5, x_11, x_7, x_8, x_9, x_10); lean_dec(x_7); lean_dec(x_5); +lean_dec(x_2); return x_12; } } -static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601____closed__1() { +static lean_object* _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087____closed__1() { _start: { lean_object* x_1; @@ -9340,11 +10327,11 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Linter_unusedVariables), 4, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601____closed__1; +x_2 = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087____closed__1; x_3 = l_Lean_Elab_Command_addLinter(x_2, x_1); return x_3; } @@ -9427,248 +10414,373 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Linter_linter_unusedVariables_patternVars = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Linter_linter_unusedVariables_patternVars); lean_dec_ref(res); -}l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1(); +}l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122____closed__1); +if (builtin) {res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_122_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_Linter_builtinUnusedVariablesIgnoreFnsRef = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_Linter_builtinUnusedVariablesIgnoreFnsRef); +lean_dec_ref(res); +}l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn___closed__1 = _init_l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn___closed__1(); +lean_mark_persistent(l_Lean_Linter_addBuiltinUnusedVariablesIgnoreFn___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_194_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__8 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__8); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__9); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__10 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__10); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__11 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__11(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__11); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__12 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__12(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__12); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__13 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__13(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__13); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__14 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__14(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__14); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__15 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__15(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__15); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__16 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__16(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____lambda__1___closed__16); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_217_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____lambda__1___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_251_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__8 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__8); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__9 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__9); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__10 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__10); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__11 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__11(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__11); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__12 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__12(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__12); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__13 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__13(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__13); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__14 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__14(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____lambda__1___closed__14); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_285_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__8 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__8); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__9 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__9); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__10 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__10); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__11 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__11(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__11); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__12 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__12(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____lambda__1___closed__12); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_373_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__8 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__8); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__9 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__9); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__10 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__10); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__11 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__11(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____lambda__1___closed__11); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_455_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__2___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__3___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__8 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__8(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__8); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__9 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__9(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__9); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__10 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__10(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__10); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__11 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__11(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____lambda__4___closed__11); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_537_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__8 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__8); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__9 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__9); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__10 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____lambda__1___closed__10); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1001_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__8 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__8); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__9 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____lambda__1___closed__9); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1033_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1146_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__7); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__8 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__8); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__9 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__9); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__10 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____lambda__1___closed__10); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1239_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__1 = _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__1(); +lean_mark_persistent(l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__1); +l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__2 = _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__2(); +lean_mark_persistent(l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__2); +l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__3 = _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__3(); +lean_mark_persistent(l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__3); +l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__4 = _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__4(); +lean_mark_persistent(l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__4); +l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__5 = _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__5(); +lean_mark_persistent(l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__5); +l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__6 = _init_l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__6(); +lean_mark_persistent(l_List_foldr___at_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____spec__1___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1294_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369____closed__6); +if (builtin) {res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1369_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_Linter_unusedVariablesIgnoreFnsExt = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_Linter_unusedVariablesIgnoreFnsExt); +lean_dec_ref(res); +}l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__1___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__2___closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__3___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____lambda__4___closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__1); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__2 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__2(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__2); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__3 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__3(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__3); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__4 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__4(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__4); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__5 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__5(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__5); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__6 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__6(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__6); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__7 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__7(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409____closed__7); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_1409_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1(); lean_mark_persistent(l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__1); l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__2 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__2(); lean_mark_persistent(l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__2); -l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__3 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__3); -l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__4); -l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__5 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__5); -l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__6); -l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__7 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__7); -l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__8 = _init_l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__8(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_skipDeclIdIfPresent___closed__8); l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1 = _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1(); lean_mark_persistent(l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__1); -l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2 = _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__2); -l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__3 = _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__3); -l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__4 = _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__4); -l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__5 = _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__5); -l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__6 = _init_l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isTopLevelDecl___closed__6); -l_Lean_Linter_unusedVariables_matchesUnusedPattern___closed__1 = _init_l_Lean_Linter_unusedVariables_matchesUnusedPattern___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_matchesUnusedPattern___closed__1); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__1); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__2); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__3); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__4); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__5); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__6); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__7 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__7); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__8 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__8(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__8); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__9 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__9(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__9); -l_Lean_Linter_unusedVariables_isVariable___rarg___closed__10 = _init_l_Lean_Linter_unusedVariables_isVariable___rarg___closed__10(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isVariable___rarg___closed__10); -l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__4); -l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__5); -l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__6); -l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__7 = _init_l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInStructure___rarg___closed__7); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__4); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__5); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__6); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__7 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__7); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__8 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__8(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__8); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__9 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__9(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__9); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__10 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__10(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__10); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__11 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__11(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__11); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__12 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__12(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__12); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__13 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__13(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__13); -l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__14 = _init_l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__14(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInInductive___rarg___closed__14); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__4); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__5); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__6); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__7 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__7); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__8 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__8(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__8); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__9 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__9(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__9); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__10 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__10(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__10); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__11 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__11(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__11); -l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__12 = _init_l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__12(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInCtorOrStructBinder___rarg___closed__12); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__4); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__5); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__6); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__7 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__7); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__8 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__8(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__8); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__9 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__9(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__9); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__10 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__10(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__10); -l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__11 = _init_l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__11(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInOpaqueOrAxiom___rarg___closed__11); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__1 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__1); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__2 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__2); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__3 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__3); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__4 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__4); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__5 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__1___closed__5); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2___closed__1 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__2___closed__1); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3___closed__1 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___lambda__3___closed__1); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__4); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__5); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__6); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__7 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__7); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__8 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__8(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__8); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__9 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__9(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__9); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__10 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__10(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__10); -l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__11 = _init_l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__11(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDefWithForeignDefinition___rarg___closed__11); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__4); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__5); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__6); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__7 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__7); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__8 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__8(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__8); -l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__9 = _init_l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__9(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDepArrow___rarg___closed__9); -l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__4); -l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__5); -l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInLetDeclaration___rarg___closed__6); -l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInDeclarationSignature___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__1 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__1(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__1); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__2 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__2(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__2); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__3 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__3(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__3); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__4 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__4(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__4); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__5 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__5(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__5); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__6 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__6(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__6); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__7 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__7(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__7); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__8 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__8(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__8); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__9 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__9(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__9); -l_Lean_Linter_unusedVariables_isInFun___rarg___closed__10 = _init_l_Lean_Linter_unusedVariables_isInFun___rarg___closed__10(); -lean_mark_persistent(l_Lean_Linter_unusedVariables_isInFun___rarg___closed__10); -l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__1 = _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__1(); -lean_mark_persistent(l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__1); -l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__2 = _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__2(); -lean_mark_persistent(l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__2); -l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__3 = _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__3(); -lean_mark_persistent(l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__3); -l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__4 = _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__4(); -lean_mark_persistent(l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__4); -l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__5 = _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__5(); -lean_mark_persistent(l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__5); -l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__6 = _init_l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__6(); -lean_mark_persistent(l_List_foldr___at_Lean_Linter_unusedVariables_isPatternVar___spec__1___closed__6); l_Std_PersistentHashMap_foldlMAux___at_Lean_Linter_unusedVariables___spec__17___closed__1 = _init_l_Std_PersistentHashMap_foldlMAux___at_Lean_Linter_unusedVariables___spec__17___closed__1(); lean_mark_persistent(l_Std_PersistentHashMap_foldlMAux___at_Lean_Linter_unusedVariables___spec__17___closed__1); l_panic___at_Lean_Linter_unusedVariables___spec__27___closed__1 = _init_l_panic___at_Lean_Linter_unusedVariables___spec__27___closed__1(); @@ -9691,44 +10803,6 @@ l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___clos lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__2); l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3(); lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__1___closed__3); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__1 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__1(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__1); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__2 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__2(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__2); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__3 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__3(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__4___closed__3); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__1 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__1(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__1); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__2 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__2(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__2); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__3 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__3(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__3); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__4 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__4(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__4); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__5 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__5(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__5); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__6 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__6(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__6); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__7 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__7(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__7); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__8 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__8(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__8); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__9 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__9(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__9); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__10 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__10(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__10); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__11 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__11(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__11); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__12 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__12(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__12); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__13 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__13(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__13); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__14 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__14(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__14); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__15 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__15(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__15); -l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__16 = _init_l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__16(); -lean_mark_persistent(l_List_forIn_loop___at_Lean_Linter_unusedVariables___spec__34___lambda__5___closed__16); l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__1 = _init_l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__1(); lean_mark_persistent(l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__1); l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__2 = _init_l_Std_AssocList_foldlM___at_Lean_Linter_unusedVariables___spec__35___closed__2(); @@ -9737,9 +10811,9 @@ l_Array_foldrMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__37___closed__ lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_Lean_Linter_unusedVariables___spec__37___closed__1); l_Lean_Linter_unusedVariables___lambda__1___closed__1 = _init_l_Lean_Linter_unusedVariables___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Linter_unusedVariables___lambda__1___closed__1); -l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601____closed__1(); -lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601____closed__1); -res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_2601_(lean_io_mk_world()); +l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087____closed__1 = _init_l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087____closed__1(); +lean_mark_persistent(l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087____closed__1); +res = l_Lean_Linter_initFn____x40_Lean_Linter_Basic___hyg_3087_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0));