From f600c67bb4bcd79d7197a66eb29fac54affbe294 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Wed, 12 Aug 2020 10:24:35 -0700 Subject: [PATCH] chore: update stage0 --- stage0/src/Init/Core.lean | 3 + stage0/src/Init/Data/String/Basic.lean | 24 +- stage0/src/Init/LeanInit.lean | 9 + stage0/src/Lean/Elab/App.lean | 2 + stage0/src/Lean/Elab/Match.lean | 378 +- stage0/src/Lean/Elab/Term.lean | 19 +- stage0/src/Lean/Parser.lean | 11 + stage0/src/Lean/Parser/Parser.lean | 14 +- .../src/Lean/PrettyPrinter/Parenthesizer.lean | 11 +- stage0/stdlib/Init/Core.c | 37 + stage0/stdlib/Init/Data/Int/Basic.c | 190 +- stage0/stdlib/Init/Data/String/Basic.c | 766 +- stage0/stdlib/Init/LeanInit.c | 60 + stage0/stdlib/Init/System/IO.c | 2 - stage0/stdlib/Lean/Compiler/ExportAttr.c | 174 +- stage0/stdlib/Lean/Delaborator.c | 24 +- stage0/stdlib/Lean/Elab/App.c | 1397 +- stage0/stdlib/Lean/Elab/Match.c | 27855 ++++++++++++++-- stage0/stdlib/Lean/Elab/Syntax.c | 78 +- stage0/stdlib/Lean/Elab/Term.c | 672 +- stage0/stdlib/Lean/Parser.c | 22 + stage0/stdlib/Lean/Parser/Command.c | 5795 ++++ stage0/stdlib/Lean/Parser/Level.c | 1211 + stage0/stdlib/Lean/Parser/Parser.c | 818 +- stage0/stdlib/Lean/Parser/Syntax.c | 3665 ++ stage0/stdlib/Lean/Parser/Tactic.c | 2327 ++ stage0/stdlib/Lean/Parser/Term.c | 10667 ++++++ .../stdlib/Lean/PrettyPrinter/Parenthesizer.c | 304 +- stage0/stdlib/Lean/Structure.c | 1 - stage0/stdlib/Lean/Util/Path.c | 3 +- 30 files changed, 51005 insertions(+), 5534 deletions(-) diff --git a/stage0/src/Init/Core.lean b/stage0/src/Init/Core.lean index deffdce7c5..8313a3d4e0 100644 --- a/stage0/src/Init/Core.lean +++ b/stage0/src/Init/Core.lean @@ -120,6 +120,9 @@ a issues when proving equational theorems. The equation Compiler uses it as a marker. -/ @[macroInline, reducible] def idRhs (α : Sort u) (a : α) : α := a +/-- Auxiliary Declaration used to implement the named patterns `x@p` -/ +@[reducible] def namedPattern {α : Sort u} (x a : α) : α := a + inductive PUnit : Sort u | unit : PUnit diff --git a/stage0/src/Init/Data/String/Basic.lean b/stage0/src/Init/Data/String/Basic.lean index 94301f02ce..54ccd1c708 100644 --- a/stage0/src/Init/Data/String/Basic.lean +++ b/stage0/src/Init/Data/String/Basic.lean @@ -368,6 +368,14 @@ namespace Substring | ⟨s, b, _⟩, p => if p = b then p else s.prev (b+p) - b +def nextn : Substring → Nat → String.Pos → String.Pos +| ss, 0, p => p +| ss, i+1, p => ss.nextn i (ss.next p) + +def prevn : Substring → String.Pos → Nat → String.Pos +| ss, 0, p => p +| ss, i+1, p => ss.prevn i (ss.prev p) + @[inline] def front (s : Substring) : Char := s.get 0 @@ -376,24 +384,16 @@ match s with | ⟨s, b, e⟩ => (String.posOfAux s c e b) - b @[inline] def drop : Substring → Nat → Substring -| ⟨s, b, e⟩, n => - if b + n ≥ e then "".toSubstring - else ⟨s, b+n, e⟩ +| ss@⟨s, b, e⟩, n => ⟨s, ss.nextn n b, e⟩ @[inline] def dropRight : Substring → Nat → Substring -| ⟨s, b, e⟩, n => - if e - n ≤ b then "".toSubstring - else ⟨s, b, e - n⟩ +| ss@⟨s, b, e⟩, n => ⟨s, b, ss.prevn n e⟩ @[inline] def take : Substring → Nat → Substring -| ⟨s, b, e⟩, n => - let e := if b + n ≥ e then e else b + n; - ⟨s, b, e⟩ +| ss@⟨s, b, e⟩, n => ⟨s, b, ss.nextn n b⟩ @[inline] def takeRight : Substring → Nat → Substring -| ⟨s, b, e⟩, n => - let b := if e - n ≤ b then b else e - n; - ⟨s, b, e⟩ +| ss@⟨s, b, e⟩, n => ⟨s, ss.prevn n e, e⟩ @[inline] def atEnd : Substring → String.Pos → Bool | ⟨s, b, e⟩, p => b + p == e diff --git a/stage0/src/Init/LeanInit.lean b/stage0/src/Init/LeanInit.lean index 96661445e0..de7ecbe6b6 100644 --- a/stage0/src/Init/LeanInit.lean +++ b/stage0/src/Init/LeanInit.lean @@ -761,6 +761,15 @@ match stx with | id@(Syntax.ident _ _ _ _) => if relaxed then some (id, mkNullNode) else none | _ => none +def getIdOfTermId (stx : Syntax) : Name := +match stx with +| Syntax.node k args => + if k == `Lean.Parser.Term.id && args.size == 2 then + (args.get! 0).getId + else + Name.anonymous +| _ => Name.anonymous + /-- Similar to `isTermId?`, but succeeds only if the optional part is a `none`. -/ def isSimpleTermId? (stx : Syntax) (relaxed : Bool := false) : Option Syntax := match stx.isTermId? relaxed with diff --git a/stage0/src/Lean/Elab/App.lean b/stage0/src/Lean/Elab/App.lean index 4b360929af..69677d1a25 100644 --- a/stage0/src/Lean/Elab/App.lean +++ b/stage0/src/Lean/Elab/App.lean @@ -531,6 +531,8 @@ private partial def elabAppFn (ref : Syntax) : Syntax → List LVal → Array Na elabAppFn e (newLVals ++ lvals) namedArgs args expectedType? explicit acc | `($e[$idx]) => elabAppFn e (LVal.getOp idx :: lvals) namedArgs args expectedType? explicit acc + | `($id:ident@$t:term) => + throwError ref "unexpected occurrence of named pattern" | `($id:ident$us:explicitUniv*) => do -- Remark: `id.` should already have been expanded us ← if us.isEmpty then pure [] else elabExplicitUniv (us.get! 0); diff --git a/stage0/src/Lean/Elab/Match.lean b/stage0/src/Lean/Elab/Match.lean index 9ab9b1b0f3..be294a503f 100644 --- a/stage0/src/Lean/Elab/Match.lean +++ b/stage0/src/Lean/Elab/Match.lean @@ -4,6 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.Elab.Term +import Lean.Meta.EqnCompiler.MatchPattern +import Lean.Meta.EqnCompiler.DepElim namespace Lean namespace Elab @@ -21,18 +23,19 @@ withPosition $ fun pos => (if optionalFirstBar then optional "| " else "| ") >> sepBy1 matchAlt (checkColGe pos.column "alternatives must be indented" >> "|") -def matchDiscr := optIdent >> termParser +def matchDiscr := parser! optional (try (ident >> checkNoWsBefore "no space before ':'" >> ":")) >> termParser def «match» := parser!:leadPrec "match " >> sepBy1 matchDiscr ", " >> optType >> " with " >> matchAlts ``` -/ structure MatchAltView := +(ref : Syntax) (patterns : Array Syntax) (rhs : Syntax) def mkMatchAltView (matchAlt : Syntax) : MatchAltView := -{ patterns := (matchAlt.getArg 0).getArgs.getSepElems, rhs := matchAlt.getArg 2 } +{ ref := matchAlt, patterns := (matchAlt.getArg 0).getArgs.getSepElems, rhs := matchAlt.getArg 2 } private def expandSimpleMatch (stx discr lhsVar rhs : Syntax) (expectedType? : Option Expr) : TermElabM Expr := do newStx ← `(let $lhsVar := $discr; $rhs); @@ -52,6 +55,29 @@ if optType.isNone then else pure $ (optType.getArg 0).getArg 1 +private def elabMatchOptType (matchStx : Syntax) (numDiscrs : Nat) : TermElabM Expr := do +typeStx ← liftMacroM $ expandMatchOptType matchStx (matchStx.getArg 2) numDiscrs; +elabType typeStx + +private partial def elabDiscrsAux (ref : Syntax) (discrStxs : Array Syntax) (expectedType : Expr) : Nat → Expr → Array Expr → TermElabM (Array Expr) +| i, matchType, discrs => + if h : i < discrStxs.size then do + let discrStx := discrStxs.get ⟨i, h⟩; + matchType ← whnf ref matchType; + match matchType with + | Expr.forallE _ d b _ => do + discr ← elabTerm discrStx d; + discr ← ensureHasType discrStx d discr; + elabDiscrsAux (i+1) (b.instantiate1 discr) (discrs.push discr) + | _ => throwError ref ("invalid type provided to match-expression, function type with arity #" ++ toString discrStxs ++ " expected") + else do + unlessM (isDefEq ref matchType expectedType) $ + throwError ref ("invalid result type provided to match-expression" ++ indentExpr matchType ++ Format.line ++ "expected type" ++ indentExpr expectedType); + pure discrs + +private def elabDiscrs (ref : Syntax) (discrStxs : Array Syntax) (matchType : Expr) (expectedType : Expr) : TermElabM (Array Expr) := +elabDiscrsAux ref discrStxs expectedType 0 matchType #[] + /- nodeWithAntiquot "matchAlt" `Lean.Parser.Term.matchAlt $ sepBy1 termParser ", " >> darrow >> termParser -/ @@ -66,6 +92,249 @@ private def getMatchAlts (stx : Syntax) : Array MatchAltView := let alts : Array Syntax := (stx.getArg 5).getArgs.filter fun alt => alt.getKind == `Lean.Parser.Term.matchAlt; alts.map mkMatchAltView +inductive PatternVar +| localVar (userName : Name) +-- anonymous variables (`_`) are encoded using metavariables +| anonymousVar (mvarUserName : Name) + +instance PatternVar.hasToString : HasToString PatternVar := +⟨fun v => match v with + | PatternVar.localVar x => toString x + | PatternVar.anonymousVar x => "?" ++ toString x⟩ + +/- + Patterns define new local variables. + This module collect them and preprocess `_` occurring in patterns. + Recall that an `_` may represent anonymous variables or inaccessible terms + that implied by typing constraints. Thus, we represent them with fresh named holes `?x`. + After we elaborate the pattern, if the metavariable remains unassigned, we transform it into + a regular pattern variable. Otherwise, it becomes an inaccessible term. + + Macros occurring in patterns are expanded before the `collectPatternVars` method is executed. + The following kinds of Syntax are handled by this module + - Constructor applications + - Applications of functions tagged with the `[matchPattern]` attribute + - Identifiers + - Anonymous constructors + - Structure instances + - Inaccessible terms + - Named patterns + - Tuple literals + - Type ascriptions + - Literals: num, string and char +-/ +namespace CollectPatternVars + +structure State := +(found : NameSet := {}) +(vars : Array PatternVar := #[]) + +abbrev M := StateT State TermElabM + +private def throwCtorExpected {α} (stx : Syntax) : M α := +liftM $ throwError stx "invalid pattern, constructor or constant marked with '[matchPattern]' expected" + +private def getNumExplicitCtorParams (ref : Syntax) (ctorVal : ConstructorVal) : TermElabM Nat := +liftMetaM ref $ Meta.forallBoundedTelescope ctorVal.type ctorVal.nparams fun ps _ => + ps.foldlM + (fun acc p => do + localDecl ← Meta.getLocalDecl p.fvarId!; + if localDecl.binderInfo.isExplicit then pure $ acc+1 else pure acc) + 0 + +private def throwAmbiguous {α} (ref : Syntax) (fs : List Expr) : M α := +liftM $ throwError ref ("ambiguous pattern, use fully qualified name, possible interpretations " ++ fs) + +private def processVar (ref : Syntax) (id : Name) (mustBeCtor : Bool := false) : M Unit := do +when mustBeCtor $ throwCtorExpected ref; +unless id.eraseMacroScopes.isAtomic $ liftM $ throwError ref "invalid pattern variable, must be atomic"; +s ← get; +when (s.found.contains id) $ liftM $ throwError ref ("invalid pattern, variable '" ++ id ++ "' occurred more than once"); +modify fun s => { s with vars := s.vars.push (PatternVar.localVar id), found := s.found.insert id } + +/- Check whether `stx` is a pattern variable or constructor-like (i.e., constructor or constant tagged with `[matchPattern]` attribute) + If `mustBeCtor == true`, then `stx` cannot be a pattern variable. + + If `stx` is a constructor, then return the number of explicit arguments that are inductive type parameters. -/ +private def processIdAux (stx : Syntax) (mustBeCtor : Bool) : M Nat := do +env ← liftM $ getEnv; +match stx.isTermId? true with +| none => throwCtorExpected stx +| some (id, opt) => do + when ((opt.getArg 0).isOfKind `Lean.Parser.Term.namedPattern) $ + liftM $ throwError stx "invalid occurrence of named pattern"; + match id with + | Syntax.ident _ _ val preresolved => do + rs ← liftM $ catch (resolveName stx val preresolved []) (fun _ => pure []); + let rs := rs.filter fun ⟨f, projs⟩ => projs.isEmpty; + let fs := rs.map fun ⟨f, _⟩ => f; + match fs with + | [] => do processVar stx id.getId mustBeCtor; pure 0 + | [f] => match f with + | Expr.const fName _ _ => + match env.find? fName with + | some $ ConstantInfo.ctorInfo val => liftM $ getNumExplicitCtorParams stx val + | some $ info => + if EqnCompiler.hasMatchPatternAttribute env fName then pure 0 + else do processVar stx id.getId mustBeCtor; pure 0 + | none => throwCtorExpected stx + | _ => do processVar stx id.getId mustBeCtor; pure 0 + | _ => throwAmbiguous stx fs + | _ => unreachable! + +private def processCtor (stx : Syntax) : M Nat := +processIdAux stx true + +private def processId (stx : Syntax) : M Unit := do +_ ← processIdAux stx false; pure () + +private def throwInvalidPattern {α} (stx : Syntax) : M α := +liftM $ throwError stx "invalid pattern" + +private partial def collect : Syntax → M Syntax +| stx@(Syntax.node k args) => withFreshMacroScope $ + if k == `Lean.Parser.Term.app then do + let appFn := args.get! 0; + let appArgs := (args.get! 1).getArgs; + appArgs.forM fun appArg => + when (appArg.isOfKind `Lean.Parser.Term.namedPattern) $ + liftM $ throwError appArg "named parameters are not allowed in patterns"; + /- We must skip explict inducitve datatype parameters since they are by defaul inaccessible. + Example: `A` is inaccessible term at `Sum.inl A b` -/ + numArgsToSkip ← processCtor appFn; + appArgs ← appArgs.mapIdxM fun i arg => if i < numArgsToSkip then pure arg else collect arg; + pure $ Syntax.node k $ args.set! 1 (mkNullNode appArgs) + else if k == `Lean.Parser.Term.anonymousCtor then do + elems ← (args.get! 1).getArgs.mapSepElemsM $ collect; + pure $ Syntax.node k $ args.set! 1 $ mkNullNode elems + else if k == `Lean.Parser.Term.structInst then do + /- { " >> optional (try (termParser >> " with ")) >> sepBy structInstField ", " true >> optional ".." >> optional (" : " >> termParser) >> " }" -/ + let withMod := args.get! 1; + unless withMod.isNone $ + liftM $ throwError withMod "invalid struct instance pattern, 'with' is not allowed in patterns"; + let fields := (args.get! 2).getArgs; + fields ← fields.mapSepElemsM fun field => do { + -- parser! structInstLVal >> " := " >> termParser + newVal ← collect (field.getArg 2); + pure $ field.setArg 2 newVal + }; + pure $ Syntax.node k $ args.set! 2 $ mkNullNode fields + else if k == `Lean.Parser.Term.hole then do + r ← `(?x); + modify fun s => { s with vars := s.vars.push $ PatternVar.anonymousVar $ (r.getArg 1).getId }; + pure r + else if k == `Lean.Parser.Term.paren then + let arg := args.get! 1; + if arg.isNone then + pure stx -- `()` + else do + let t := arg.getArg 0; + let s := arg.getArg 1; + if s.isNone || (s.getArg 0).isOfKind `Lean.Parser.Term.typeAscription then do + -- Ignore `s`, since it empty or it is a type ascription + t ← collect t; + let arg := arg.setArg 0 t; + pure $ Syntax.node k $ args.set! 1 arg + else do + -- Tuple literal is a constructor + t ← collect t; + let arg := arg.setArg 0 t; + let tupleTail := s.getArg 0; + let tupleTailElems := (tupleTail.getArg 1).getArgs; + tupleTailElems ← tupleTailElems.mapSepElemsM collect; + let tupleTail := tupleTail.setArg 1 $ mkNullNode tupleTailElems; + let s := s.setArg 0 tupleTail; + let arg := arg.setArg 1 s; + pure $ Syntax.node k $ args.set! 1 arg + else if k == `Lean.Parser.Term.id then do + let extra := args.get! 1; + if extra.isNone then do + processId stx; + pure stx + else if (extra.getArg 0).isOfKind `Lean.Parser.Term.explicitUniv then do + _ ← processCtor stx; + pure stx + else if (extra.getArg 0).isOfKind `Lean.Parser.Term.namedPattern then do + /- Recall that + def namedPattern := checkNoWsBefore "no space before '@'" >> parser! "@" >> termParser maxPrec + def id := parser! ident >> optional (explicitUniv <|> namedPattern) -/ + let id := stx.getIdOfTermId; + processVar stx id; + let pat := (extra.getArg 0).getArg 1; + pat ← collect pat; + `(namedPattern $(mkTermIdFrom stx id) $pat) + else + throwInvalidPattern stx + else if k == `Lean.Parser.Term.inaccessible then + pure stx + else if k == `Lean.Parser.Term.str then + pure stx + else if k == `Lean.Parser.Term.num then + pure stx + else if k == `Lean.Parser.Term.char then + pure stx + else if k == choiceKind then + liftM $ throwError stx "invalid pattern, notation is ambiguous" + else + throwInvalidPattern stx +| stx@(Syntax.ident _ _ _ _) => do + processId stx; + pure stx +| stx => + throwInvalidPattern stx + +def main (alt : MatchAltView) : M MatchAltView := do +patterns ← alt.patterns.mapM fun p => do { + liftM $ trace `Elab.match p fun _ => "collecting variables at pattern: " ++ p; + collect p +}; +pure { alt with patterns := patterns } + +end CollectPatternVars + +private def collectPatternVars (alt : MatchAltView) : TermElabM (Array PatternVar × MatchAltView) := do +(alt, s) ← (CollectPatternVars.main alt).run {}; +pure (s.vars, alt) + +private partial def withPatternVarsAux {α} (ref : Syntax) (pVars : Array PatternVar) (k : TermElabM α) : Nat → TermElabM α +| i => + if h : i < pVars.size then + match pVars.get ⟨i, h⟩ with + | PatternVar.anonymousVar _ => withPatternVarsAux (i+1) + | PatternVar.localVar userName => do + type ← mkFreshTypeMVar ref; + withLocalDecl ref userName BinderInfo.default type fun _ => withPatternVarsAux (i+1) + else + k + +private def withPatternVars {α} (ref : Syntax) (pVars : Array PatternVar) (k : TermElabM α) : TermElabM α := +withPatternVarsAux ref pVars k 0 + +private partial def elabPatternsAux (ref : Syntax) (patternStxs : Array Syntax) : Nat → Expr → Array Expr → TermElabM (Array Expr) +| i, matchType, patterns => + if h : i < patternStxs.size then do + matchType ← whnf ref matchType; + match matchType with + | Expr.forallE _ d b _ => do + pattern ← elabTerm (patternStxs.get ⟨i, h⟩) d; + elabPatternsAux (i+1) (b.instantiate1 pattern) (patterns.push pattern) + | _ => throwError ref "unexpected match type" + else + pure patterns + +private def elabPatterns (ref : Syntax) (patternStxs : Array Syntax) (matchType : Expr) : TermElabM (Array Expr) := do +patterns ← elabPatternsAux ref patternStxs 0 matchType #[]; +trace `Elab.match ref fun _ => "patterns: " ++ patterns; +pure patterns + +def elabMatchAltView (alt : MatchAltView) (matchType : Expr) : TermElabM (Meta.DepElim.AltLHS × Expr) := do +(patternVars, alt) ← collectPatternVars alt; +trace `Elab.match alt.ref fun _ => "patternVars: " ++ toString patternVars; +withPatternVars alt.ref patternVars do + ps ← elabPatterns alt.ref alt.patterns matchType; + -- TODO + pure (⟨[], []⟩, arbitrary _) + /- ``` parser!:leadPrec "match " >> sepBy1 matchDiscr ", " >> optType >> " with " >> matchAlts @@ -74,15 +343,106 @@ Remark the `optIdent` must be `none` at `matchDiscr`. They are expanded by `expa -/ private def elabMatchCore (stx : Syntax) (expectedType? : Option Expr) : TermElabM Expr := do tryPostponeIfNoneOrMVar expectedType?; -let discrs := (stx.getArg 1).getArgs.getSepElems.map fun d => d.getArg 1; -typeStx ← liftMacroM $ expandMatchOptType stx (stx.getArg 2) discrs.size; -type ← elabType typeStx; +expectedType ← match expectedType? with + | some expectedType => pure expectedType + | none => mkFreshTypeMVar stx; +let discrStxs := (stx.getArg 1).getArgs.getSepElems.map fun d => d.getArg 1; +matchType ← elabMatchOptType stx discrStxs.size; matchAlts ← expandMacrosInPatterns $ getMatchAlts stx; -throwError stx ("WIP type: " ++ type ++ "\n" ++ toString discrs ++ "\n" ++ toString (matchAlts.map fun alt => toString alt.patterns)) +discrs ← elabDiscrs stx discrStxs matchType expectedType; +alts ← matchAlts.mapM $ fun alt => elabMatchAltView alt matchType; +throwError stx ("WIP type: " ++ matchType ++ "\n" ++ discrs ++ "\n" ++ toString (matchAlts.map fun alt => toString alt.patterns)) + +/- Auxiliary method for `expandMatchDiscr?` -/ +private partial def mkMatchType (discrs : Array Syntax) : Nat → MacroM Syntax +| i => withFreshMacroScope $ + if h : i < discrs.size then + let discr := discrs.get ⟨i, h⟩; + if discr.isOfKind `Lean.Parser.Term.matchDiscr then do + type ← mkMatchType (i+1); + if (discr.getArg 0).isNone then + `(_ → $type) + else + let t := discr.getArg 1; + `((x : _) → x = $t → $type) + else + mkMatchType (i+1) + else + `(_) + +private def mkOptType (typeStx : Syntax) : Syntax := +mkNullNode #[mkNode `Lean.Parser.Term.typeSpec #[mkAtomFrom typeStx ", ", typeStx]] + +/- Auxiliary method for `expandMatchDiscr?` -/ +private partial def mkNewDiscrs (discrs : Array Syntax) : Nat → Array Syntax → MacroM (Array Syntax) +| i, newDiscrs => + if h : i < discrs.size then + let discr := discrs.get ⟨i, h⟩; + if discr.isOfKind `Lean.Parser.Term.matchDiscr then do + if (discr.getArg 0).isNone then + mkNewDiscrs (i+1) (newDiscrs.push discr) + else do + let newDiscrs := newDiscrs.push $ discr.setArg 0 mkNullNode; + let newDiscrs := newDiscrs.push $ mkAtomFrom discr ", "; + eqPrf ← `(Eq.refl _); + let newDiscrs := newDiscrs.push $ mkNode `Lean.Parser.Term.matchDiscr #[mkNullNode, eqPrf]; + mkNewDiscrs (i+1) newDiscrs + else + mkNewDiscrs (i+1) (newDiscrs.push discr) + else + pure newDiscrs + +/- Auxiliary method for `expandMatchDiscr?` -/ +private partial def mkNewPatterns (ref : Syntax) (discrs patterns : Array Syntax) : Nat → Array Syntax → MacroM (Array Syntax) +| i, newPatterns => + if h : i < discrs.size then + let discr := discrs.get ⟨i, h⟩; + if h : i < patterns.size then + let pattern := patterns.get ⟨i, h⟩; + if discr.isOfKind `Lean.Parser.Term.matchDiscr then do + if (discr.getArg 0).isNone then + mkNewPatterns (i+1) (newPatterns.push pattern) + else + let newPatterns := newPatterns.push pattern; + let newPatterns := newPatterns.push $ mkAtomFrom pattern ", "; + let ident := (discr.getArg 0).getArg 0; + let newPatterns := newPatterns.push $ mkTermIdFromIdent ident; + mkNewPatterns (i+1) newPatterns + else + -- it is a ", " + mkNewPatterns (i+1) (newPatterns.push pattern) + else + throw $ Macro.Exception.error ref ("invalid number of patterns, expected #" ++ toString discrs.size) + else + pure newPatterns + +/- Auxiliary method for `expandMatchDiscr?` -/ +private partial def mkNewAlt (discrs : Array Syntax) (alt : Syntax) : MacroM Syntax := do +let patterns := (alt.getArg 0).getArgs; +newPatterns ← mkNewPatterns alt discrs patterns 0 #[]; +pure $ alt.setArg 0 (mkNullNode newPatterns) + +/- Auxiliary method for `expandMatchDiscr?` -/ +private partial def mkNewAlts (discrs : Array Syntax) (alts : Array Syntax) : MacroM (Array Syntax) := +alts.mapSepElemsM $ mkNewAlt discrs /-- Expand discriminants of the form `h : t` -/ private def expandMatchDiscr? (stx : Syntax) : MacroM (Option Syntax) := do -pure none -- TODO +let discrs := (stx.getArg 1).getArgs; +if discrs.getSepElems.all fun d => (d.getArg 0).isNone then + pure none -- nothing to be done +else do + unless (stx.getArg 2).isNone $ + throw $ Macro.Exception.error (stx.getArg 2) "match expected type should not be provided when discriminants with equality proofs are used"; + matchType ← mkMatchType discrs 0; + let matchType := matchType.copyInfo stx; + let stx := stx.setArg 2 (mkOptType matchType); + newDiscrs ← mkNewDiscrs discrs 0 #[]; + let stx := stx.setArg 1 (mkNullNode newDiscrs); + let alts := (stx.getArg 5).getArgs; + newAlts ← mkNewAlts discrs alts; + let stx := stx.setArg 5 (mkNullNode newAlts); + pure stx -- parser! "match " >> sepBy1 termParser ", " >> optType >> " with " >> matchAlts @[builtinTermElab «match»] def elabMatch : TermElab := @@ -97,6 +457,10 @@ fun stx expectedType? => match_syntax stx with | some stxNew => withMacroExpansion stx stxNew $ elabTerm stxNew expectedType? | none => elabMatchCore stx expectedType? +@[init] private def regTraceClasses : IO Unit := do +registerTraceClass `Elab.match; +pure () + end Term end Elab end Lean diff --git a/stage0/src/Lean/Elab/Term.lean b/stage0/src/Lean/Elab/Term.lean index 4d6b487a10..04f24996c9 100644 --- a/stage0/src/Lean/Elab/Term.lean +++ b/stage0/src/Lean/Elab/Term.lean @@ -1117,23 +1117,20 @@ fun stx expectedType? => withMacroExpansion stx pairs (elabTerm pairs expectedType?) | _ => throwError stx "unexpected parentheses notation" -@[builtinTermElab «listLit»] def elabListLit : TermElab := -fun stx expectedType? => do +@[builtinMacro Lean.Parser.Term.listLit] def expandListLit : Macro := +fun stx => let openBkt := stx.getArg 0; let args := stx.getArg 1; let closeBkt := stx.getArg 2; let consId := mkTermIdFrom openBkt `List.cons; let nilId := mkTermIdFrom closeBkt `List.nil; - let newStx := args.foldSepRevArgs (fun arg r => mkAppStx consId #[arg, r]) nilId; - withMacroExpansion stx newStx $ elabTerm newStx expectedType? + pure $ args.foldSepRevArgs (fun arg r => mkAppStx consId #[arg, r]) nilId -@[builtinTermElab «arrayLit»] def elabArrayLit : TermElab := -fun stx expectedType? => do +@[builtinMacro Lean.Parser.Term.arrayLit] def expandArrayLit : Macro := +fun stx => match_syntax stx with - | `(#[$args*]) => do - newStx ← `(List.toArray [$args*]); - withMacroExpansion stx newStx (elabTerm newStx expectedType?) - | _ => throwError stx "unexpected array literal syntax" + | `(#[$args*]) => `(List.toArray [$args*]) + | _ => throw $ Macro.Exception.error stx "unexpected array literal syntax" private partial def resolveLocalNameAux (lctx : LocalContext) : Name → List String → Option (Expr × List String) | n, projs => @@ -1196,7 +1193,7 @@ result? ← resolveLocalName n; match result? with | some (e, projs) => do unless explicitLevels.isEmpty $ - throwError ref ("invalid use of explicit universe parameters, '" ++ toString e.fvarId! ++ "' is a local"); + throwError ref ("invalid use of explicit universe parameters, '" ++ e ++ "' is a local"); pure [(e, projs)] | none => let process (candidates : List (Name × List String)) : TermElabM (List (Expr × List String)) := do { diff --git a/stage0/src/Lean/Parser.lean b/stage0/src/Lean/Parser.lean index def4ccf065..8d51ef832b 100644 --- a/stage0/src/Lean/Parser.lean +++ b/stage0/src/Lean/Parser.lean @@ -10,3 +10,14 @@ import Lean.Parser.Tactic import Lean.Parser.Command import Lean.Parser.Module import Lean.Parser.Syntax + +namespace Lean +namespace Parser + +-- Close the mutual recursion loop; see corresponding `[extern]` in the parenthesizer. +@[export lean_mk_antiquot_parenthesizer] +def mkAntiquot.parenthesizer' (name : String) (kind : Option SyntaxNodeKind) (anonymous := true) : PrettyPrinter.Parenthesizer := +mkAntiquot.parenthesizer name kind anonymous + +end Parser +end Lean diff --git a/stage0/src/Lean/Parser/Parser.lean b/stage0/src/Lean/Parser/Parser.lean index a1408d1761..8ae8368f06 100644 --- a/stage0/src/Lean/Parser/Parser.lean +++ b/stage0/src/Lean/Parser/Parser.lean @@ -1616,6 +1616,18 @@ def mkBuiltinTokenTable : IO (IO.Ref TokenTable) := IO.mkRef {} def mkBuiltinSyntaxNodeKindSetRef : IO (IO.Ref SyntaxNodeKindSet) := IO.mkRef {} @[init mkBuiltinSyntaxNodeKindSetRef] constant builtinSyntaxNodeKindSetRef : IO.Ref SyntaxNodeKindSet := arbitrary _ +def registerBuiltinNodeKindSet (k : SyntaxNodeKind) : IO Unit := +builtinSyntaxNodeKindSetRef.modify fun s => s.insert k + +@[init] private def registerAuxiliaryNodeKindSets : IO Unit := do +registerBuiltinNodeKindSet choiceKind; +registerBuiltinNodeKindSet identKind; +registerBuiltinNodeKindSet strLitKind; +registerBuiltinNodeKindSet numLitKind; +registerBuiltinNodeKindSet charLitKind; +registerBuiltinNodeKindSet nameLitKind; +pure () + def mkBuiltinParserCategories : IO (IO.Ref ParserCategories) := IO.mkRef {} @[init mkBuiltinParserCategories] constant builtinParserCategoriesRef : IO.Ref ParserCategories := arbitrary _ @@ -1887,7 +1899,7 @@ parserExtension.addEntry env $ ParserExtensionEntry.kind k def isValidSyntaxNodeKind (env : Environment) (k : SyntaxNodeKind) : Bool := let kinds := (parserExtension.getState env).kinds; -kinds.contains k || k == choiceKind || k == identKind || isLitKind k +kinds.contains k def getSyntaxNodeKinds (env : Environment) : List SyntaxNodeKind := do let kinds := (parserExtension.getState env).kinds; diff --git a/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean b/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean index 778ba7e981..b4df00904e 100644 --- a/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean +++ b/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean @@ -210,7 +210,7 @@ catch p1 $ fun e => match e with -- Note that there is a mutual recursion -- `categoryParser -> mkAntiquot -> termParser -> categoryParser`, so we need to introduce an indirection somewhere -- anyway. ---@[extern "lean_mk_antiquot_parenthesizer"] +@[extern 7 "lean_mk_antiquot_parenthesizer"] constant mkAntiquot.parenthesizer' (name : String) (kind : Option SyntaxNodeKind) (anonymous := true) : Parenthesizer := arbitrary _ @@ -479,9 +479,12 @@ unsafe def mkParenthesizerOfConstantUnsafe (constName : Name) (compileParenthesi fun env => match env.find? constName with | none => throw $ IO.userError ("unknow constant '" ++ toString constName ++ "'") | some info => - if info.type.isConstOf `Lean.Parser.TrailingParser || info.type.isConstOf `Lean.Parser.Parser then do - env ← compile env constName /- builtin -/ false; - pure (parenthesizerForKind constName, env) + if info.type.isConstOf `Lean.Parser.TrailingParser || info.type.isConstOf `Lean.Parser.Parser then + match parenthesizerAttribute.getValues env constName with + | p::_ => pure (p, env) + | _ => do + env ← compile env constName /- builtin -/ false; + pure (parenthesizerForKind constName, env) else do d ← IO.ofExcept $ env.evalConst TrailingParserDescr constName; compileParenthesizerDescr d env diff --git a/stage0/stdlib/Init/Core.c b/stage0/stdlib/Init/Core.c index 4ec0402dfc..2078024f3f 100644 --- a/stage0/stdlib/Init/Core.c +++ b/stage0/stdlib/Init/Core.c @@ -55,6 +55,7 @@ lean_object* l_Quot_indep(lean_object*, lean_object*, lean_object*); lean_object* l_Function_comp(lean_object*, lean_object*, lean_object*); lean_object* l_Eq_ndrecOn___rarg(lean_object*); lean_object* l_bit1(lean_object*); +lean_object* l_namedPattern(lean_object*, lean_object*); lean_object* l_dite_Decidable(lean_object*, lean_object*, lean_object*); lean_object* l_dite_Decidable___rarg(uint8_t, lean_object*, lean_object*); lean_object* l_idDelta___rarg(lean_object*); @@ -76,6 +77,7 @@ lean_object* l_Prod_sizeof(lean_object*, lean_object*); lean_object* l_arbitrary___rarg(lean_object*); lean_object* l_And_Decidable___rarg___boxed(lean_object*, lean_object*); lean_object* l_prodHasDecidableLt___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_namedPattern___rarg___boxed(lean_object*); uint8_t l_Ne_Decidable___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_std_priority_default; lean_object* l_Sigma_sizeof___at_Sigma_HasSizeof___spec__1(lean_object*, lean_object*); @@ -122,6 +124,7 @@ uint8_t l_Not_Decidable___rarg(uint8_t); lean_object* l_Quotient_mk___boxed(lean_object*, lean_object*); lean_object* l_Forall_Inhabited(lean_object*, lean_object*); lean_object* l_List_sizeof___main___rarg(lean_object*, lean_object*); +lean_object* l_namedPattern___rarg(lean_object*); uint8_t l_not(uint8_t); lean_object* l_Eq_mpr(lean_object*, lean_object*, lean_object*); lean_object* l_Quot_recOn___rarg(lean_object*, lean_object*, lean_object*); @@ -205,6 +208,7 @@ lean_object* l_implies_Decidable___rarg___boxed(lean_object*, lean_object*); lean_object* l_Thunk_mk___boxed(lean_object*, lean_object*); lean_object* l_NonScalar_Inhabited; lean_object* l_ite___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_namedPattern___boxed(lean_object*, lean_object*); uint8_t l_or(uint8_t, uint8_t); lean_object* l_Nat_add___boxed(lean_object*, lean_object*); uint8_t l_Decidable_decide___rarg(uint8_t); @@ -489,6 +493,39 @@ lean_dec(x_1); return x_2; } } +lean_object* l_namedPattern___rarg(lean_object* x_1) { +_start: +{ +lean_inc(x_1); +return x_1; +} +} +lean_object* l_namedPattern(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_namedPattern___rarg___boxed), 1, 0); +return x_3; +} +} +lean_object* l_namedPattern___rarg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_namedPattern___rarg(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* l_namedPattern___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_namedPattern(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} lean_object* _init_l_Unit_unit() { _start: { diff --git a/stage0/stdlib/Init/Data/Int/Basic.c b/stage0/stdlib/Init/Data/Int/Basic.c index 3b9e5c4a42..b0fbdc54c8 100644 --- a/stage0/stdlib/Init/Data/Int/Basic.c +++ b/stage0/stdlib/Init/Data/Int/Basic.c @@ -15,9 +15,7 @@ extern "C" { #endif uint8_t l_String_isInt(lean_object*); lean_object* l_Int_HasNeg; -lean_object* l_String_toInt_x3f___closed__1; lean_object* l_Int_natMod(lean_object*, lean_object*); -uint8_t l_String_isInt___closed__1; lean_object* l_Int_repr___boxed(lean_object*); lean_object* l_String_toInt_x21___closed__1; lean_object* l_Int_HasOne; @@ -29,11 +27,11 @@ lean_object* l_Int_sub___boxed(lean_object*, lean_object*); lean_object* l_Int_HasMod___closed__1; lean_object* l___private_Init_Util_1__mkPanicMessage(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Int_Int_DecidableEq(lean_object*, lean_object*); +lean_object* l_Substring_nextn___main(lean_object*, lean_object*, lean_object*); lean_object* l_Int_negSucc___boxed(lean_object*); lean_object* l_String_toInt_x3f(lean_object*); lean_object* l_Int_HasRepr; lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_String_toInt_x3f___closed__2; lean_object* l_Int_HasZero; lean_object* l_Int_HasAdd; lean_object* lean_string_utf8_byte_size(lean_object*); @@ -73,14 +71,12 @@ lean_object* l_Int_toNat(lean_object*); lean_object* lean_int_neg(lean_object*); lean_object* l_Int_one___closed__1; uint8_t l_UInt32_decEq(uint32_t, uint32_t); -extern lean_object* l_Substring_drop___closed__2; lean_object* lean_int_neg_succ_of_nat(lean_object*); uint8_t lean_int_dec_le(lean_object*, lean_object*); lean_object* l_Int_one; lean_object* l_Int_HasCoe(lean_object*); lean_object* l_Int_negOfNat(lean_object*); lean_object* l_Int_HasMul; -uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Int_HasLess; lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Int_subNatNat___boxed(lean_object*, lean_object*); @@ -623,56 +619,6 @@ lean_dec(x_1); return x_3; } } -lean_object* _init_l_String_toInt_x3f___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Substring_drop___closed__2; -x_2 = l_Substring_toNat_x3f(x_1); -return x_2; -} -} -lean_object* _init_l_String_toInt_x3f___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = l_String_toInt_x3f___closed__1; -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_2; -x_2 = lean_box(0); -return x_2; -} -else -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_1); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = lean_ctor_get(x_1, 0); -x_5 = lean_nat_to_int(x_4); -x_6 = lean_int_neg(x_5); -lean_dec(x_5); -lean_ctor_set(x_1, 0, x_6); -return x_1; -} -else -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = lean_ctor_get(x_1, 0); -lean_inc(x_7); -lean_dec(x_1); -x_8 = lean_nat_to_int(x_7); -x_9 = lean_int_neg(x_8); -lean_dec(x_8); -x_10 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_10, 0, x_9); -return x_10; -} -} -} -} lean_object* l_String_toInt_x3f(lean_object* x_1) { _start: { @@ -719,72 +665,58 @@ return x_13; } else { -lean_object* x_14; lean_object* x_15; uint8_t x_16; +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; x_14 = lean_string_utf8_byte_size(x_1); -x_15 = lean_unsigned_to_nat(1u); -x_16 = lean_nat_dec_le(x_14, x_15); -if (x_16 == 0) +lean_inc(x_14); +lean_inc(x_1); +x_15 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_2); +lean_ctor_set(x_15, 2, x_14); +x_16 = lean_unsigned_to_nat(1u); +x_17 = l_Substring_nextn___main(x_15, x_16, x_2); +lean_dec(x_15); +x_18 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); +lean_ctor_set(x_18, 2, x_14); +x_19 = l_Substring_toNat_x3f(x_18); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_17; lean_object* x_18; -x_17 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_17, 0, x_1); -lean_ctor_set(x_17, 1, x_15); -lean_ctor_set(x_17, 2, x_14); -x_18 = l_Substring_toNat_x3f(x_17); -if (lean_obj_tag(x_18) == 0) +lean_object* x_20; +x_20 = lean_box(0); +return x_20; +} +else { -lean_object* x_19; -x_19 = lean_box(0); +uint8_t x_21; +x_21 = !lean_is_exclusive(x_19); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_19, 0); +x_23 = lean_nat_to_int(x_22); +x_24 = lean_int_neg(x_23); +lean_dec(x_23); +lean_ctor_set(x_19, 0, x_24); return x_19; } else { -uint8_t x_20; -x_20 = !lean_is_exclusive(x_18); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_18, 0); -x_22 = lean_nat_to_int(x_21); -x_23 = lean_int_neg(x_22); -lean_dec(x_22); -lean_ctor_set(x_18, 0, x_23); -return x_18; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_24 = lean_ctor_get(x_18, 0); -lean_inc(x_24); -lean_dec(x_18); -x_25 = lean_nat_to_int(x_24); -x_26 = lean_int_neg(x_25); -lean_dec(x_25); -x_27 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_27, 0, x_26); -return x_27; -} -} -} -else -{ -lean_object* x_28; -lean_dec(x_14); -lean_dec(x_1); -x_28 = l_String_toInt_x3f___closed__2; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_25 = lean_ctor_get(x_19, 0); +lean_inc(x_25); +lean_dec(x_19); +x_26 = lean_nat_to_int(x_25); +x_27 = lean_int_neg(x_26); +lean_dec(x_26); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_27); return x_28; } } } } -uint8_t _init_l_String_isInt___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; -x_1 = l_Substring_drop___closed__2; -x_2 = l_Substring_isNat(x_1); -return x_2; -} } uint8_t l_String_isInt(lean_object* x_1) { _start: @@ -803,31 +735,26 @@ return x_6; } else { -lean_object* x_7; lean_object* x_8; uint8_t x_9; +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_7 = lean_string_utf8_byte_size(x_1); -x_8 = lean_unsigned_to_nat(1u); -x_9 = lean_nat_dec_le(x_7, x_8); -if (x_9 == 0) -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_10, 0, x_1); -lean_ctor_set(x_10, 1, x_8); -lean_ctor_set(x_10, 2, x_7); -x_11 = l_Substring_isNat(x_10); -return x_11; -} -else -{ -uint8_t x_12; -lean_dec(x_7); -lean_dec(x_1); -x_12 = l_String_isInt___closed__1; +lean_inc(x_7); +lean_inc(x_1); +x_8 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_2); +lean_ctor_set(x_8, 2, x_7); +x_9 = lean_unsigned_to_nat(1u); +x_10 = l_Substring_nextn___main(x_8, x_9, x_2); +lean_dec(x_8); +x_11 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set(x_11, 2, x_7); +x_12 = l_Substring_isNat(x_11); return x_12; } } } -} lean_object* l_String_isInt___boxed(lean_object* x_1) { _start: { @@ -959,11 +886,6 @@ l_Int_HasMod___closed__1 = _init_l_Int_HasMod___closed__1(); lean_mark_persistent(l_Int_HasMod___closed__1); l_Int_HasMod = _init_l_Int_HasMod(); lean_mark_persistent(l_Int_HasMod); -l_String_toInt_x3f___closed__1 = _init_l_String_toInt_x3f___closed__1(); -lean_mark_persistent(l_String_toInt_x3f___closed__1); -l_String_toInt_x3f___closed__2 = _init_l_String_toInt_x3f___closed__2(); -lean_mark_persistent(l_String_toInt_x3f___closed__2); -l_String_isInt___closed__1 = _init_l_String_isInt___closed__1(); l_String_toInt_x21___closed__1 = _init_l_String_toInt_x21___closed__1(); lean_mark_persistent(l_String_toInt_x21___closed__1); l_String_toInt_x21___closed__2 = _init_l_String_toInt_x21___closed__2(); diff --git a/stage0/stdlib/Init/Data/String/Basic.c b/stage0/stdlib/Init/Data/String/Basic.c index 86538f2450..589cdfc891 100644 --- a/stage0/stdlib/Init/Data/String/Basic.c +++ b/stage0/stdlib/Init/Data/String/Basic.c @@ -35,7 +35,6 @@ lean_object* l_Substring_extract___closed__1; lean_object* l_String_length___boxed(lean_object*); lean_object* l_String_Iterator_remainingBytes___boxed(lean_object*); lean_object* l_String_foldrAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_String_take___boxed(lean_object*, lean_object*); lean_object* l_Substring_extract___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_String_Basic_4__utf8SetAux(uint32_t, lean_object*, lean_object*, lean_object*); lean_object* l_String_trimRight___boxed(lean_object*); @@ -47,7 +46,6 @@ lean_object* l_Substring_drop(lean_object*, lean_object*); lean_object* l_String_mk___boxed(lean_object*); lean_object* l_String_Iterator_extract___boxed(lean_object*, lean_object*); lean_object* l_Substring_toNat_x3f(lean_object*); -lean_object* l_Substring_takeRight___boxed(lean_object*, lean_object*); lean_object* l_String_revPosOf(lean_object*, uint32_t); lean_object* l_Substring_toString___boxed(lean_object*); lean_object* l_Substring_takeWhileAux___main___at_String_nextUntil___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -71,6 +69,7 @@ lean_object* l_String_toSubstring(lean_object*); lean_object* l_Substring_extract(lean_object*, lean_object*, lean_object*); lean_object* l_String_append___boxed(lean_object*, lean_object*); lean_object* l_String_Iterator_hasPrev___boxed(lean_object*); +lean_object* l_Substring_nextn___main(lean_object*, lean_object*, lean_object*); uint8_t l_String_any(lean_object*, lean_object*); lean_object* l_String_foldl___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_String_foldlAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -91,7 +90,6 @@ lean_object* l_String_splitOn(lean_object*, lean_object*); lean_object* l_String_dropWhile(lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_String_trimLeft___boxed(lean_object*); -lean_object* l_String_dropRight___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Data_String_Basic_7__utf8ExtractAux_u2081___main(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_String_isPrefixOfAux(lean_object*, lean_object*, lean_object*); lean_object* l_String_foldlAux___main___at_String_toNat_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -106,9 +104,9 @@ lean_object* l___private_Init_Data_String_Basic_5__utf8PrevAux___main(lean_objec lean_object* l_String_foldlAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_offsetOfPosAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_HasAppend; +lean_object* l_Substring_prevn___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); uint8_t l_Substring_all(lean_object*, lean_object*); -lean_object* l_Substring_dropRight___boxed(lean_object*, lean_object*); lean_object* l_String_trimRight(lean_object*); lean_object* l_String_next___boxed(lean_object*, lean_object*); lean_object* l_String_isNat___boxed(lean_object*); @@ -116,18 +114,18 @@ lean_object* l_String_offsetOfPosAux___main___boxed(lean_object*, lean_object*, lean_object* l_Substring_dropWhile(lean_object*, lean_object*); lean_object* l_Substring_all___boxed(lean_object*, lean_object*); lean_object* l_String_takeWhile(lean_object*, lean_object*); -lean_object* l_String_drop___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Substring_next___boxed(lean_object*, lean_object*); +lean_object* l_Substring_prevn(lean_object*, lean_object*, lean_object*); uint8_t l_String_contains(lean_object*, uint32_t); lean_object* l_Substring_next(lean_object*, lean_object*); lean_object* l___private_Init_Data_String_Basic_6__utf8ExtractAux_u2082___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_String_foldlAux___main___at_String_toNat_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_atEnd___boxed(lean_object*, lean_object*); lean_object* l_String_Iterator_forward(lean_object*, lean_object*); +lean_object* l_Substring_prevn___main(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_String_HasLess; -lean_object* l_String_drop___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Data_String_Basic_5__utf8PrevAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_String_foldl___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_String_Basic_4__utf8SetAux___main(uint32_t, lean_object*, lean_object*, lean_object*); @@ -138,6 +136,7 @@ lean_object* l_String_take(lean_object*, lean_object*); uint8_t l_Substring_isNat(lean_object*); lean_object* l_Substring_foldr___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Substring_contains(lean_object*, uint32_t); +lean_object* l_Substring_nextn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_String_Basic_7__utf8ExtractAux_u2081___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_Iterator_pos___boxed(lean_object*); lean_object* l___private_Init_Data_String_Basic_3__utf8GetAux___main___boxed(lean_object*, lean_object*, lean_object*); @@ -161,7 +160,6 @@ uint8_t l_String_all(lean_object*, lean_object*); lean_object* l_Substring_foldl(lean_object*); uint32_t l_Substring_get(lean_object*, lean_object*); lean_object* l_Substring_any___boxed(lean_object*, lean_object*); -lean_object* l_Substring_take___boxed(lean_object*, lean_object*); lean_object* l_String_takeRight(lean_object*, lean_object*); lean_object* l_Substring_toIterator(lean_object*); lean_object* l_Substring_splitOnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -174,6 +172,7 @@ lean_object* l___private_Init_Data_String_Basic_4__utf8SetAux___boxed(lean_objec lean_object* l_String_front___boxed(lean_object*); lean_object* l_String_Iterator_remainingToString___boxed(lean_object*); lean_object* l_Substring_trimRight(lean_object*); +lean_object* l_Substring_nextn___main___boxed(lean_object*, lean_object*, lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); lean_object* l_String_splitOnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Substring_takeRightWhileAux(lean_object*, lean_object*, lean_object*, lean_object*); @@ -185,6 +184,7 @@ lean_object* l_String_foldr___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Substring_beq(lean_object*, lean_object*); lean_object* l_String_anyAux___main___at_Substring_all___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_Iterator_next(lean_object*); +lean_object* l_Substring_nextn(lean_object*, lean_object*, lean_object*); lean_object* l_String_nextUntil___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Substring_front___boxed(lean_object*); lean_object* l_String_trimLeft(lean_object*); @@ -198,7 +198,6 @@ lean_object* l_String_splitAux(lean_object*, lean_object*, lean_object*, lean_ob uint8_t l_String_Iterator_hasNext(lean_object*); lean_object* l_String_Iterator_nextn___main(lean_object*, lean_object*); lean_object* l_String_decEq___boxed(lean_object*, lean_object*); -lean_object* l_String_takeRight___boxed(lean_object*, lean_object*); uint32_t l_String_front(lean_object*); lean_object* l_String_mapAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_String_dropWhile___boxed(lean_object*, lean_object*); @@ -206,7 +205,6 @@ lean_object* l_String_anyAux___main___at_Substring_contains___spec__1___boxed(le lean_object* l_Substring_atEnd___boxed(lean_object*, lean_object*); lean_object* l_Substring_posOf___boxed(lean_object*, lean_object*); lean_object* l_Substring_takeWhileAux___main___at_String_nextUntil___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Substring_drop___closed__1; lean_object* l_String_nextWhile(lean_object*, lean_object*, lean_object*); lean_object* l_String_Iterator_hasNext___boxed(lean_object*); lean_object* l_String_Iterator_prevn___main(lean_object*, lean_object*); @@ -216,9 +214,7 @@ uint8_t l_UInt32_decEq(uint32_t, uint32_t); lean_object* l_String_intercalate(lean_object*, lean_object*); lean_object* l_String_posOfAux(lean_object*, uint32_t, lean_object*, lean_object*); lean_object* l_String_splitAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Substring_drop___closed__2; uint8_t l_String_isEmpty(lean_object*); -lean_object* l_Substring_drop___boxed(lean_object*, lean_object*); uint32_t l___private_Init_Data_String_Basic_3__utf8GetAux(lean_object*, lean_object*, lean_object*); lean_object* l_String_foldrAux(lean_object*); uint8_t l_String_DecidableEq(lean_object*, lean_object*); @@ -309,6 +305,7 @@ lean_object* l_String_revPosOfAux___main(lean_object*, uint32_t, lean_object*); lean_object* l_Substring_prev___boxed(lean_object*, lean_object*); lean_object* l_Substring_get___boxed(lean_object*, lean_object*); lean_object* l_String_posOf(lean_object*, uint32_t); +lean_object* l_Substring_splitOnAux___main___closed__1; lean_object* l_Substring_dropRightWhile(lean_object*, lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); lean_object* l_String_modify___boxed(lean_object*, lean_object*, lean_object*); @@ -317,10 +314,12 @@ lean_object* lean_uint32_to_nat(uint32_t); lean_object* l_Substring_contains___boxed(lean_object*, lean_object*); lean_object* l_List_foldl___main___at_String_join___spec__1(lean_object*, lean_object*); lean_object* lean_string_mk(lean_object*); +lean_object* l_Substring_splitOnAux___main___closed__2; lean_object* l___private_Init_Data_String_Basic_1__csize(uint32_t); lean_object* l_Substring_prev(lean_object*, lean_object*); lean_object* l_String_foldlAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_offsetOfPos(lean_object*, lean_object*); +lean_object* l_Substring_prevn___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_lt(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_String_HasSizeof; @@ -3223,6 +3222,145 @@ lean_dec(x_1); return x_3; } } +lean_object* l_Substring_nextn___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_nat_dec_eq(x_2, x_4); +if (x_5 == 0) +{ +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; uint8_t x_13; +x_6 = lean_unsigned_to_nat(1u); +x_7 = lean_nat_sub(x_2, x_6); +lean_dec(x_2); +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +x_10 = lean_ctor_get(x_1, 2); +x_11 = lean_nat_add(x_9, x_3); +lean_dec(x_3); +x_12 = lean_string_utf8_next(x_8, x_11); +lean_dec(x_11); +x_13 = lean_nat_dec_lt(x_10, x_12); +if (x_13 == 0) +{ +lean_object* x_14; +x_14 = lean_nat_sub(x_12, x_9); +lean_dec(x_12); +x_2 = x_7; +x_3 = x_14; +goto _start; +} +else +{ +lean_object* x_16; +lean_dec(x_12); +x_16 = lean_nat_sub(x_10, x_9); +x_2 = x_7; +x_3 = x_16; +goto _start; +} +} +else +{ +lean_dec(x_2); +return x_3; +} +} +} +lean_object* l_Substring_nextn___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Substring_nextn___main(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Substring_nextn(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Substring_nextn___main(x_1, x_2, x_3); +return x_4; +} +} +lean_object* l_Substring_nextn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Substring_nextn(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Substring_prevn___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_nat_dec_eq(x_2, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_unsigned_to_nat(1u); +x_7 = lean_nat_sub(x_2, x_6); +lean_dec(x_2); +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +x_10 = lean_nat_dec_eq(x_3, x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_nat_add(x_9, x_3); +lean_dec(x_3); +x_12 = lean_string_utf8_prev(x_8, x_11); +lean_dec(x_11); +x_13 = lean_nat_sub(x_12, x_9); +lean_dec(x_12); +x_2 = x_7; +x_3 = x_13; +goto _start; +} +else +{ +x_2 = x_7; +goto _start; +} +} +else +{ +lean_dec(x_2); +return x_3; +} +} +} +lean_object* l_Substring_prevn___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Substring_prevn___main(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Substring_prevn(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Substring_prevn___main(x_1, x_2, x_3); +return x_4; +} +} +lean_object* l_Substring_prevn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Substring_prevn(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} uint32_t l_Substring_front(lean_object* x_1) { _start: { @@ -3277,309 +3415,146 @@ x_4 = l_Substring_posOf(x_1, x_3); return x_4; } } -lean_object* _init_l_Substring_drop___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_String_splitAux___main___closed__1; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -lean_object* _init_l_Substring_drop___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_String_splitAux___main___closed__1; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Substring_drop___closed__1; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} lean_object* l_Substring_drop(lean_object* x_1, lean_object* x_2) { _start: { -uint8_t x_3; -x_3 = !lean_is_exclusive(x_1); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_4 = lean_ctor_get(x_1, 0); -x_5 = lean_ctor_get(x_1, 1); -x_6 = lean_ctor_get(x_1, 2); -x_7 = lean_nat_add(x_5, x_2); -lean_dec(x_5); -x_8 = lean_nat_dec_le(x_6, x_7); -if (x_8 == 0) -{ -lean_ctor_set(x_1, 1, x_7); -return x_1; -} -else -{ -lean_object* x_9; -lean_dec(x_7); -lean_free_object(x_1); -lean_dec(x_6); -lean_dec(x_4); -x_9 = l_Substring_drop___closed__2; -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_1, 0); -x_11 = lean_ctor_get(x_1, 1); -x_12 = lean_ctor_get(x_1, 2); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_dec(x_1); -x_13 = lean_nat_add(x_11, x_2); -lean_dec(x_11); -x_14 = lean_nat_dec_le(x_12, x_13); -if (x_14 == 0) -{ -lean_object* x_15; -x_15 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_15, 0, x_10); -lean_ctor_set(x_15, 1, x_13); -lean_ctor_set(x_15, 2, x_12); -return x_15; -} -else -{ -lean_object* x_16; -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_10); -x_16 = l_Substring_drop___closed__2; -return x_16; -} -} -} -} -lean_object* l_Substring_drop___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Substring_drop(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} -lean_object* l_Substring_dropRight(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_1); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_4 = lean_ctor_get(x_1, 0); -x_5 = lean_ctor_get(x_1, 1); -x_6 = lean_ctor_get(x_1, 2); -x_7 = lean_nat_sub(x_6, x_2); -lean_dec(x_6); -x_8 = lean_nat_dec_le(x_7, x_5); -if (x_8 == 0) -{ -lean_ctor_set(x_1, 2, x_7); -return x_1; -} -else -{ -lean_object* x_9; -lean_dec(x_7); -lean_free_object(x_1); -lean_dec(x_5); -lean_dec(x_4); -x_9 = l_Substring_drop___closed__2; -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_1, 0); -x_11 = lean_ctor_get(x_1, 1); -x_12 = lean_ctor_get(x_1, 2); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_dec(x_1); -x_13 = lean_nat_sub(x_12, x_2); -lean_dec(x_12); -x_14 = lean_nat_dec_le(x_13, x_11); -if (x_14 == 0) -{ -lean_object* x_15; -x_15 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_15, 0, x_10); -lean_ctor_set(x_15, 1, x_11); -lean_ctor_set(x_15, 2, x_13); -return x_15; -} -else -{ -lean_object* x_16; -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -x_16 = l_Substring_drop___closed__2; -return x_16; -} -} -} -} -lean_object* l_Substring_dropRight___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Substring_dropRight(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} -lean_object* l_Substring_take(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_1); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); x_5 = lean_ctor_get(x_1, 2); -x_6 = lean_nat_add(x_4, x_2); -x_7 = lean_nat_dec_le(x_5, x_6); +lean_inc(x_5); +x_6 = l_Substring_nextn___main(x_1, x_2, x_4); +x_7 = !lean_is_exclusive(x_1); if (x_7 == 0) { -lean_dec(x_5); -lean_ctor_set(x_1, 2, x_6); -return x_1; -} -else -{ -lean_dec(x_6); -return x_1; -} -} -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_1, 0); +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_1, 2); +lean_dec(x_8); x_9 = lean_ctor_get(x_1, 1); -x_10 = lean_ctor_get(x_1, 2); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_dec(x_1); -x_11 = lean_nat_add(x_9, x_2); -x_12 = lean_nat_dec_le(x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; +lean_dec(x_9); +x_10 = lean_ctor_get(x_1, 0); lean_dec(x_10); -x_13 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_13, 0, x_8); -lean_ctor_set(x_13, 1, x_9); -lean_ctor_set(x_13, 2, x_11); -return x_13; -} -else -{ -lean_object* x_14; -lean_dec(x_11); -x_14 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_14, 0, x_8); -lean_ctor_set(x_14, 1, x_9); -lean_ctor_set(x_14, 2, x_10); -return x_14; -} -} -} -} -lean_object* l_Substring_take___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Substring_take(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} -lean_object* l_Substring_takeRight(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_1); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_4 = lean_ctor_get(x_1, 1); -x_5 = lean_ctor_get(x_1, 2); -x_6 = lean_nat_sub(x_5, x_2); -x_7 = lean_nat_dec_le(x_6, x_4); -if (x_7 == 0) -{ -lean_dec(x_4); lean_ctor_set(x_1, 1, x_6); return x_1; } else { -lean_dec(x_6); -return x_1; -} -} -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_1, 0); -x_9 = lean_ctor_get(x_1, 1); -x_10 = lean_ctor_get(x_1, 2); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); +lean_object* x_11; lean_dec(x_1); -x_11 = lean_nat_sub(x_10, x_2); -x_12 = lean_nat_dec_le(x_11, x_9); -if (x_12 == 0) -{ -lean_object* x_13; -lean_dec(x_9); -x_13 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_13, 0, x_8); -lean_ctor_set(x_13, 1, x_11); -lean_ctor_set(x_13, 2, x_10); -return x_13; -} -else -{ -lean_object* x_14; -lean_dec(x_11); -x_14 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_14, 0, x_8); -lean_ctor_set(x_14, 1, x_9); -lean_ctor_set(x_14, 2, x_10); -return x_14; +x_11 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_11, 0, x_3); +lean_ctor_set(x_11, 1, x_6); +lean_ctor_set(x_11, 2, x_5); +return x_11; } } } -} -lean_object* l_Substring_takeRight___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Substring_dropRight(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; -x_3 = l_Substring_takeRight(x_1, x_2); -lean_dec(x_2); -return x_3; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +x_5 = lean_ctor_get(x_1, 2); +lean_inc(x_5); +x_6 = l_Substring_prevn___main(x_1, x_2, x_5); +x_7 = !lean_is_exclusive(x_1); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_1, 2); +lean_dec(x_8); +x_9 = lean_ctor_get(x_1, 1); +lean_dec(x_9); +x_10 = lean_ctor_get(x_1, 0); +lean_dec(x_10); +lean_ctor_set(x_1, 2, x_6); +return x_1; +} +else +{ +lean_object* x_11; +lean_dec(x_1); +x_11 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_11, 0, x_3); +lean_ctor_set(x_11, 1, x_4); +lean_ctor_set(x_11, 2, x_6); +return x_11; +} +} +} +lean_object* l_Substring_take(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_inc(x_4); +x_5 = l_Substring_nextn___main(x_1, x_2, x_4); +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_1, 2); +lean_dec(x_7); +x_8 = lean_ctor_get(x_1, 1); +lean_dec(x_8); +x_9 = lean_ctor_get(x_1, 0); +lean_dec(x_9); +lean_ctor_set(x_1, 2, x_5); +return x_1; +} +else +{ +lean_object* x_10; +lean_dec(x_1); +x_10 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_4); +lean_ctor_set(x_10, 2, x_5); +return x_10; +} +} +} +lean_object* l_Substring_takeRight(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 2); +lean_inc(x_4); +lean_inc(x_4); +x_5 = l_Substring_prevn___main(x_1, x_2, x_4); +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_1, 2); +lean_dec(x_7); +x_8 = lean_ctor_get(x_1, 1); +lean_dec(x_8); +x_9 = lean_ctor_get(x_1, 0); +lean_dec(x_9); +lean_ctor_set(x_1, 1, x_5); +return x_1; +} +else +{ +lean_object* x_10; +lean_dec(x_1); +x_10 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_5); +lean_ctor_set(x_10, 2, x_4); +return x_10; +} } } uint8_t l_Substring_atEnd(lean_object* x_1, lean_object* x_2) { @@ -3694,6 +3669,29 @@ lean_dec(x_2); return x_4; } } +lean_object* _init_l_Substring_splitOnAux___main___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_String_splitAux___main___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Substring_splitOnAux___main___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_String_splitAux___main___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Substring_splitOnAux___main___closed__1; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} lean_object* l_Substring_splitOnAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { @@ -3784,7 +3782,7 @@ lean_ctor_set(x_29, 2, x_28); x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_7); -x_31 = l_Substring_drop___closed__2; +x_31 = l_Substring_splitOnAux___main___closed__2; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -4678,158 +4676,86 @@ x_1 = l_Substring_hasBeq___closed__1; return x_1; } } -lean_object* _init_l_String_drop___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_String_splitAux___main___closed__1; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Substring_drop___closed__1; -x_4 = lean_string_utf8_extract(x_1, x_2, x_3); -return x_4; -} -} lean_object* l_String_drop(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_3 = lean_string_utf8_byte_size(x_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = lean_nat_add(x_4, x_2); -x_6 = lean_nat_dec_le(x_3, x_5); -if (x_6 == 0) -{ -lean_object* x_7; -x_7 = lean_string_utf8_extract(x_1, x_5, x_3); -lean_dec(x_3); -lean_dec(x_5); -return x_7; -} -else -{ -lean_object* x_8; +lean_inc(x_3); +lean_inc(x_1); +x_5 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_4); +lean_ctor_set(x_5, 2, x_3); +x_6 = l_Substring_nextn___main(x_5, x_2, x_4); lean_dec(x_5); +x_7 = lean_string_utf8_extract(x_1, x_6, x_3); lean_dec(x_3); -x_8 = l_String_drop___closed__1; -return x_8; -} -} -} -lean_object* l_String_drop___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_String_drop(x_1, x_2); -lean_dec(x_2); +lean_dec(x_6); lean_dec(x_1); -return x_3; +return x_7; } } lean_object* l_String_dropRight(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_3 = lean_string_utf8_byte_size(x_1); -x_4 = lean_nat_sub(x_3, x_2); -lean_dec(x_3); -x_5 = lean_unsigned_to_nat(0u); -x_6 = lean_nat_dec_le(x_4, x_5); -if (x_6 == 0) -{ -lean_object* x_7; -x_7 = lean_string_utf8_extract(x_1, x_5, x_4); -lean_dec(x_4); -return x_7; -} -else -{ -lean_object* x_8; -lean_dec(x_4); -x_8 = l_String_drop___closed__1; -return x_8; -} -} -} -lean_object* l_String_dropRight___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_String_dropRight(x_1, x_2); -lean_dec(x_2); +x_4 = lean_unsigned_to_nat(0u); +lean_inc(x_3); +lean_inc(x_1); +x_5 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_4); +lean_ctor_set(x_5, 2, x_3); +x_6 = l_Substring_prevn___main(x_5, x_2, x_3); +lean_dec(x_5); +x_7 = lean_string_utf8_extract(x_1, x_4, x_6); +lean_dec(x_6); lean_dec(x_1); -return x_3; +return x_7; } } lean_object* l_String_take(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_3 = lean_string_utf8_byte_size(x_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = lean_nat_add(x_4, x_2); -x_6 = lean_nat_dec_le(x_3, x_5); -if (x_6 == 0) -{ -lean_object* x_7; -lean_dec(x_3); -x_7 = lean_string_utf8_extract(x_1, x_4, x_5); +lean_inc(x_1); +x_5 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_4); +lean_ctor_set(x_5, 2, x_3); +x_6 = l_Substring_nextn___main(x_5, x_2, x_4); lean_dec(x_5); -return x_7; -} -else -{ -lean_object* x_8; -lean_dec(x_5); -x_8 = lean_string_utf8_extract(x_1, x_4, x_3); -lean_dec(x_3); -return x_8; -} -} -} -lean_object* l_String_take___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_String_take(x_1, x_2); -lean_dec(x_2); +x_7 = lean_string_utf8_extract(x_1, x_4, x_6); +lean_dec(x_6); lean_dec(x_1); -return x_3; +return x_7; } } lean_object* l_String_takeRight(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_3 = lean_string_utf8_byte_size(x_1); -x_4 = lean_nat_sub(x_3, x_2); -x_5 = lean_unsigned_to_nat(0u); -x_6 = lean_nat_dec_le(x_4, x_5); -if (x_6 == 0) -{ -lean_object* x_7; -x_7 = lean_string_utf8_extract(x_1, x_4, x_3); +x_4 = lean_unsigned_to_nat(0u); +lean_inc(x_3); +lean_inc(x_1); +x_5 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_4); +lean_ctor_set(x_5, 2, x_3); +lean_inc(x_3); +x_6 = l_Substring_prevn___main(x_5, x_2, x_3); +lean_dec(x_5); +x_7 = lean_string_utf8_extract(x_1, x_6, x_3); lean_dec(x_3); -lean_dec(x_4); -return x_7; -} -else -{ -lean_object* x_8; -lean_dec(x_4); -x_8 = lean_string_utf8_extract(x_1, x_5, x_3); -lean_dec(x_3); -return x_8; -} -} -} -lean_object* l_String_takeRight___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_String_takeRight(x_1, x_2); -lean_dec(x_2); +lean_dec(x_6); lean_dec(x_1); -return x_3; +return x_7; } } lean_object* l_String_takeWhile(lean_object* x_1, lean_object* x_2) { @@ -5075,18 +5001,16 @@ l_String_HasAppend___closed__1 = _init_l_String_HasAppend___closed__1(); lean_mark_persistent(l_String_HasAppend___closed__1); l_String_HasAppend = _init_l_String_HasAppend(); lean_mark_persistent(l_String_HasAppend); -l_Substring_drop___closed__1 = _init_l_Substring_drop___closed__1(); -lean_mark_persistent(l_Substring_drop___closed__1); -l_Substring_drop___closed__2 = _init_l_Substring_drop___closed__2(); -lean_mark_persistent(l_Substring_drop___closed__2); l_Substring_extract___closed__1 = _init_l_Substring_extract___closed__1(); lean_mark_persistent(l_Substring_extract___closed__1); +l_Substring_splitOnAux___main___closed__1 = _init_l_Substring_splitOnAux___main___closed__1(); +lean_mark_persistent(l_Substring_splitOnAux___main___closed__1); +l_Substring_splitOnAux___main___closed__2 = _init_l_Substring_splitOnAux___main___closed__2(); +lean_mark_persistent(l_Substring_splitOnAux___main___closed__2); l_Substring_hasBeq___closed__1 = _init_l_Substring_hasBeq___closed__1(); lean_mark_persistent(l_Substring_hasBeq___closed__1); l_Substring_hasBeq = _init_l_Substring_hasBeq(); lean_mark_persistent(l_Substring_hasBeq); -l_String_drop___closed__1 = _init_l_String_drop___closed__1(); -lean_mark_persistent(l_String_drop___closed__1); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/LeanInit.c b/stage0/stdlib/Init/LeanInit.c index 6445d5551a..575a245a08 100644 --- a/stage0/stdlib/Init/LeanInit.c +++ b/stage0/stdlib/Init/LeanInit.c @@ -19,6 +19,7 @@ lean_object* l_Lean_mkHole___closed__3; lean_object* l___private_Init_LeanInit_13__filterSepElemsMAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_mkCTermIdFrom___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getIdOfTermId(lean_object*); lean_object* lean_string_push(lean_object*, uint32_t); lean_object* l___private_Init_LeanInit_9__decodeHexLitAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toString___closed__1; @@ -275,6 +276,7 @@ lean_object* l_Array_filterSepElems(lean_object*, lean_object*); lean_object* l_Array_mapSepElemsM___at_Array_mapSepElems___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Syntax_identToAtom(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getIdOfTermId___boxed(lean_object*); lean_object* l_Lean_Name_Name_beq___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo___boxed(lean_object*); lean_object* l_Lean_Syntax_getOptionalIdent_x3f(lean_object*); @@ -6069,6 +6071,64 @@ x_4 = l_Lean_Syntax_isTermId_x3f(x_1, x_3); return x_4; } } +lean_object* l_Lean_Syntax_getIdOfTermId(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_2 = lean_ctor_get(x_1, 0); +x_3 = lean_ctor_get(x_1, 1); +x_4 = l_Lean_mkTermIdFromIdent___closed__2; +x_5 = lean_name_eq(x_2, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +x_6 = lean_box(0); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_array_get_size(x_3); +x_8 = lean_unsigned_to_nat(2u); +x_9 = lean_nat_dec_eq(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = lean_box(0); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = l_Lean_Syntax_inhabited; +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_get(x_11, x_3, x_12); +x_14 = l_Lean_Syntax_getId(x_13); +lean_dec(x_13); +return x_14; +} +} +} +else +{ +lean_object* x_15; +x_15 = lean_box(0); +return x_15; +} +} +} +lean_object* l_Lean_Syntax_getIdOfTermId___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_getIdOfTermId(x_1); +lean_dec(x_1); +return x_2; +} +} lean_object* l_Lean_Syntax_isSimpleTermId_x3f(lean_object* x_1, uint8_t x_2) { _start: { diff --git a/stage0/stdlib/Init/System/IO.c b/stage0/stdlib/Init/System/IO.c index 80c8d67f35..e566ff9850 100644 --- a/stage0/stdlib/Init/System/IO.c +++ b/stage0/stdlib/Init/System/IO.c @@ -1704,7 +1704,6 @@ else lean_object* x_16; lean_object* x_17; uint8_t x_18; x_16 = lean_unsigned_to_nat(1u); x_17 = l_String_dropRight(x_5, x_16); -lean_dec(x_5); x_18 = l_System_Platform_isWindows; if (x_18 == 0) { @@ -1730,7 +1729,6 @@ else { lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = l_String_dropRight(x_17, x_16); -lean_dec(x_17); x_27 = lean_array_push(x_2, x_26); x_28 = l_IO_FS_linesAux___main___rarg(x_1, x_3, x_4, x_27); return x_28; diff --git a/stage0/stdlib/Lean/Compiler/ExportAttr.c b/stage0/stdlib/Lean/Compiler/ExportAttr.c index 2063c6a01e..b1e47ddd1e 100644 --- a/stage0/stdlib/Lean/Compiler/ExportAttr.c +++ b/stage0/stdlib/Lean/Compiler/ExportAttr.c @@ -34,7 +34,7 @@ extern lean_object* l_Array_empty___closed__1; uint8_t l_Char_isDigit(uint32_t); lean_object* lean_io_ref_get(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkExportAttr___spec__7(lean_object*, lean_object*); -uint8_t l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Substring_nextn___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___lambda__1___closed__3; lean_object* l_Lean_mkExportAttr___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); @@ -43,7 +43,6 @@ lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExportAttr___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_getExportNameFor___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_inhabited; -extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExportAttr___spec__1___closed__1; lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_getExportNameFor___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); @@ -61,7 +60,6 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___lambda__1___closed__1; uint8_t l___private_Lean_Compiler_ExportAttr_2__isValidCppName(lean_object*); @@ -83,7 +81,6 @@ uint8_t l_Lean_isExport(lean_object*, lean_object*); uint8_t l_Char_isAlpha(uint32_t); extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_exportAttr; -extern lean_object* l_Substring_drop___closed__1; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; uint8_t l_UInt32_decEq(uint32_t, uint32_t); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; @@ -212,102 +209,6 @@ return x_24; } } } -uint8_t l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = lean_nat_dec_eq(x_4, x_3); -if (x_5 == 0) -{ -uint32_t x_6; uint8_t x_7; -x_6 = lean_string_utf8_get(x_2, x_4); -x_7 = l_Char_isAlpha(x_6); -if (x_7 == 0) -{ -uint8_t x_8; -x_8 = l_Char_isDigit(x_6); -if (x_8 == 0) -{ -uint32_t x_9; uint8_t x_10; -x_9 = 95; -x_10 = x_6 == x_9; -if (x_10 == 0) -{ -uint8_t x_11; -lean_dec(x_4); -x_11 = 1; -return x_11; -} -else -{ -lean_object* x_12; -x_12 = lean_string_utf8_next(x_2, x_4); -lean_dec(x_4); -x_4 = x_12; -goto _start; -} -} -else -{ -if (x_1 == 0) -{ -uint8_t x_14; -lean_dec(x_4); -x_14 = 1; -return x_14; -} -else -{ -lean_object* x_15; -x_15 = lean_string_utf8_next(x_2, x_4); -lean_dec(x_4); -x_4 = x_15; -goto _start; -} -} -} -else -{ -if (x_1 == 0) -{ -uint32_t x_17; uint8_t x_18; -x_17 = 95; -x_18 = x_6 == x_17; -if (x_18 == 0) -{ -uint8_t x_19; -lean_dec(x_4); -x_19 = 1; -return x_19; -} -else -{ -lean_object* x_20; -x_20 = lean_string_utf8_next(x_2, x_4); -lean_dec(x_4); -x_4 = x_20; -goto _start; -} -} -else -{ -lean_object* x_22; -x_22 = lean_string_utf8_next(x_2, x_4); -lean_dec(x_4); -x_4 = x_22; -goto _start; -} -} -} -else -{ -uint8_t x_24; -lean_dec(x_4); -x_24 = 0; -return x_24; -} -} -} uint8_t l___private_Lean_Compiler_ExportAttr_1__isValidCppId(lean_object* x_1) { _start: { @@ -318,52 +219,37 @@ x_4 = l_Char_isAlpha(x_3); if (x_4 == 0) { uint8_t x_5; +lean_dec(x_1); x_5 = 0; return x_5; } else { -lean_object* x_6; lean_object* x_7; uint8_t x_8; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_6 = lean_string_utf8_byte_size(x_1); -x_7 = lean_unsigned_to_nat(1u); -x_8 = lean_nat_dec_le(x_6, x_7); -if (x_8 == 0) -{ -uint8_t x_9; -x_9 = l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(x_4, x_1, x_6, x_7); +lean_inc(x_6); +lean_inc(x_1); +x_7 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_7, 0, x_1); +lean_ctor_set(x_7, 1, x_2); +lean_ctor_set(x_7, 2, x_6); +x_8 = lean_unsigned_to_nat(1u); +x_9 = l_Substring_nextn___main(x_7, x_8, x_2); +lean_dec(x_7); +x_10 = l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(x_4, x_1, x_6, x_9); lean_dec(x_6); -if (x_9 == 0) -{ -uint8_t x_10; -x_10 = 1; -return x_10; -} -else +lean_dec(x_1); +if (x_10 == 0) { uint8_t x_11; -x_11 = 0; +x_11 = 1; return x_11; } -} else { -lean_object* x_12; lean_object* x_13; uint8_t x_14; -lean_dec(x_6); -x_12 = l_String_splitAux___main___closed__1; -x_13 = l_Substring_drop___closed__1; -x_14 = l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(x_4, x_12, x_13, x_2); -if (x_14 == 0) -{ -uint8_t x_15; -x_15 = 1; -return x_15; -} -else -{ -uint8_t x_16; -x_16 = 0; -return x_16; -} +uint8_t x_12; +x_12 = 0; +return x_12; } } } @@ -381,25 +267,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; uint8_t x_6; lean_object* x_7; -x_5 = lean_unbox(x_1); -lean_dec(x_1); -x_6 = l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(x_5, x_2, x_3, x_4); -lean_dec(x_3); -lean_dec(x_2); -x_7 = lean_box(x_6); -return x_7; -} -} lean_object* l___private_Lean_Compiler_ExportAttr_1__isValidCppId___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; x_2 = l___private_Lean_Compiler_ExportAttr_1__isValidCppId(x_1); -lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } @@ -411,7 +283,10 @@ if (lean_obj_tag(x_1) == 1) { lean_object* x_2; lean_object* x_3; lean_object* x_4; x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +lean_dec(x_1); if (lean_obj_tag(x_2) == 0) { uint8_t x_9; @@ -433,6 +308,7 @@ x_5 = l___private_Lean_Compiler_ExportAttr_1__isValidCppId(x_3); if (x_5 == 0) { uint8_t x_6; +lean_dec(x_2); x_6 = 0; return x_6; } @@ -446,6 +322,7 @@ goto _start; else { uint8_t x_11; +lean_dec(x_1); x_11 = 0; return x_11; } @@ -456,7 +333,6 @@ _start: { uint8_t x_2; lean_object* x_3; x_2 = l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main(x_1); -lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } @@ -474,7 +350,6 @@ _start: { uint8_t x_2; lean_object* x_3; x_2 = l___private_Lean_Compiler_ExportAttr_2__isValidCppName(x_1); -lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } @@ -1662,6 +1537,7 @@ lean_object* x_6; uint8_t x_7; x_6 = lean_ctor_get(x_4, 0); lean_inc(x_6); lean_dec(x_4); +lean_inc(x_6); x_7 = l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main(x_6); if (x_7 == 0) { diff --git a/stage0/stdlib/Lean/Delaborator.c b/stage0/stdlib/Lean/Delaborator.c index 0d501f2178..3542c48f5b 100644 --- a/stage0/stdlib/Lean/Delaborator.c +++ b/stage0/stdlib/Lean/Delaborator.c @@ -172,7 +172,6 @@ lean_object* l___regBuiltin_Lean_Delaborator_delabCoe___closed__2; lean_object* l_Lean_Delaborator_delabSort___closed__10; extern lean_object* l_Lean_EnvExtension_Inhabited___rarg___closed__1; extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__5; -extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__11; extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Delaborator_delabForall___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabFVar(lean_object*, lean_object*, lean_object*); @@ -256,6 +255,7 @@ lean_object* l_Std_RBNode_find___main___at_Lean_Delaborator_getPPOption___spec__ lean_object* l_Lean_Level_getOffsetAux___main(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_evalNat___main___closed__6; lean_object* l_Lean_Delaborator_withBindingBody___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Term_expandArrayLit___closed__9; lean_object* l_ReaderT_failure___at_Lean_Delaborator_DelabM_inhabited___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_find_x3f___main___at_Lean_Delaborator_delabFor___main___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Std_AssocList_find_x3f___main___at_Lean_Delaborator_delabFor___main___spec__6(lean_object*, lean_object*); @@ -270,6 +270,7 @@ uint8_t l_Lean_Expr_isConst(lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); extern lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__2; lean_object* l_Lean_Delaborator_withBindingDomain(lean_object*); +extern lean_object* l_Lean_Elab_Term_expandArrayLit___closed__8; lean_object* l_Array_umapMAux___main___at_Lean_Delaborator_delabConst___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabProjectionApp(lean_object*, lean_object*, lean_object*); lean_object* l_List_redLength___main___rarg(lean_object*); @@ -306,7 +307,6 @@ extern lean_object* l_Lean_Meta_mkAuxName___closed__1; lean_object* l_Lean_Delaborator_delabAppImplicit___closed__6; lean_object* l_Lean_Delaborator_delabProjectionApp___closed__2; lean_object* l_Lean_Delaborator_getExprKind___closed__5; -extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__10; lean_object* l_Lean_Delaborator_getExprKind___closed__22; extern lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__1; extern lean_object* l_Lean_mkAppStx___closed__3; @@ -14549,10 +14549,10 @@ x_372 = l_Lean_nullKind___closed__2; x_373 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_373, 0, x_372); lean_ctor_set(x_373, 1, x_371); -x_374 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_374 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_375 = lean_array_push(x_374, x_373); x_376 = lean_array_push(x_375, x_20); -x_377 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_377 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_378 = lean_array_push(x_376, x_377); x_379 = l_Lean_Parser_Term_instBinder___elambda__1___closed__2; x_380 = lean_alloc_ctor(1, 2, 0); @@ -15826,10 +15826,10 @@ x_854 = l_Lean_nullKind___closed__2; x_855 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_855, 0, x_854); lean_ctor_set(x_855, 1, x_853); -x_856 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_856 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_857 = lean_array_push(x_856, x_855); x_858 = lean_array_push(x_857, x_20); -x_859 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_859 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_860 = lean_array_push(x_858, x_859); x_861 = l_Lean_Parser_Term_instBinder___elambda__1___closed__2; x_862 = lean_alloc_ctor(1, 2, 0); @@ -16476,10 +16476,10 @@ x_78 = l_Lean_nullKind___closed__2; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); -x_80 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_80 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_81 = lean_array_push(x_80, x_79); x_82 = lean_array_push(x_81, x_23); -x_83 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_83 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_84 = lean_array_push(x_82, x_83); x_85 = l_Lean_Parser_Term_instBinder___elambda__1___closed__2; x_86 = lean_alloc_ctor(1, 2, 0); @@ -16631,10 +16631,10 @@ x_153 = l_Lean_nullKind___closed__2; x_154 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_154, 0, x_153); lean_ctor_set(x_154, 1, x_152); -x_155 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_155 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_156 = lean_array_push(x_155, x_154); x_157 = lean_array_push(x_156, x_96); -x_158 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_158 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_159 = lean_array_push(x_157, x_158); x_160 = l_Lean_Parser_Term_instBinder___elambda__1___closed__2; x_161 = lean_alloc_ctor(1, 2, 0); @@ -16809,10 +16809,10 @@ x_233 = l_Lean_nullKind___closed__2; x_234 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_234, 0, x_233); lean_ctor_set(x_234, 1, x_232); -x_235 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_235 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_236 = lean_array_push(x_235, x_234); x_237 = lean_array_push(x_236, x_173); -x_238 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_238 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_239 = lean_array_push(x_237, x_238); x_240 = l_Lean_Parser_Term_instBinder___elambda__1___closed__2; x_241 = lean_alloc_ctor(1, 2, 0); diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index 6316f946bd..b2dc239653 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -19,6 +19,7 @@ extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l___private_Lean_Elab_App_7__hasOnlyTypeMVar___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; extern lean_object* l_Lean_fieldIdxKind; +extern lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Name_eraseMacroScopes(lean_object*); @@ -244,6 +245,7 @@ lean_object* l___private_Lean_Elab_App_2__elabArg(lean_object*, lean_object*, le lean_object* l___private_Lean_Elab_App_4__tryCoeFun___closed__1; extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; extern lean_object* l_Lean_importModules___closed__1; +lean_object* l___private_Lean_Elab_App_21__elabAppFn___main___closed__1; extern lean_object* l_Lean_formatEntry___closed__1; lean_object* l___private_Lean_Elab_App_15__resolveLVal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -294,6 +296,7 @@ lean_object* l_Lean_Elab_Term_registerSyntheticMVar(lean_object*, lean_object*, lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabProj(lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_21__elabAppFn___main___closed__2; lean_object* l_List_foldlM___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_21__elabAppFn___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -403,6 +406,7 @@ uint8_t l_Lean_isStructure(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__2; lean_object* l___private_Lean_Elab_App_11__elabAppArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__7; +lean_object* l___private_Lean_Elab_App_21__elabAppFn___main___closed__3; uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Arg_inhabited; lean_object* l_Array_forMAux___main___at_Lean_Elab_Term_synthesizeAppInstMVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -14694,6 +14698,34 @@ return x_26; } } } +lean_object* _init_l___private_Lean_Elab_App_21__elabAppFn___main___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("unexpected occurrence of named pattern"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_App_21__elabAppFn___main___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_App_21__elabAppFn___main___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_App_21__elabAppFn___main___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_App_21__elabAppFn___main___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} lean_object* l___private_Lean_Elab_App_21__elabAppFn___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -14709,57 +14741,57 @@ x_14 = lean_name_eq(x_12, x_13); lean_dec(x_12); if (x_14 == 0) { -uint8_t x_15; uint8_t x_285; lean_object* x_393; uint8_t x_394; -x_393 = l_Lean_Parser_Term_proj___elambda__1___closed__2; +uint8_t x_15; uint8_t x_330; lean_object* x_438; uint8_t x_439; +x_438 = l_Lean_Parser_Term_proj___elambda__1___closed__2; lean_inc(x_2); -x_394 = l_Lean_Syntax_isOfKind(x_2, x_393); -if (x_394 == 0) +x_439 = l_Lean_Syntax_isOfKind(x_2, x_438); +if (x_439 == 0) { -uint8_t x_395; -x_395 = 0; -x_285 = x_395; -goto block_392; +uint8_t x_440; +x_440 = 0; +x_330 = x_440; +goto block_437; } else { -lean_object* x_396; lean_object* x_397; lean_object* x_398; uint8_t x_399; -x_396 = l_Lean_Syntax_getArgs(x_2); -x_397 = lean_array_get_size(x_396); -lean_dec(x_396); -x_398 = lean_unsigned_to_nat(3u); -x_399 = lean_nat_dec_eq(x_397, x_398); -lean_dec(x_397); -x_285 = x_399; -goto block_392; +lean_object* x_441; lean_object* x_442; lean_object* x_443; uint8_t x_444; +x_441 = l_Lean_Syntax_getArgs(x_2); +x_442 = lean_array_get_size(x_441); +lean_dec(x_441); +x_443 = lean_unsigned_to_nat(3u); +x_444 = lean_nat_dec_eq(x_442, x_443); +lean_dec(x_442); +x_330 = x_444; +goto block_437; } -block_284: +block_329: { if (x_15 == 0) { -uint8_t x_16; lean_object* x_270; uint8_t x_271; -x_270 = l_Lean_mkTermIdFromIdent___closed__2; +uint8_t x_16; lean_object* x_315; uint8_t x_316; +x_315 = l_Lean_mkTermIdFromIdent___closed__2; lean_inc(x_2); -x_271 = l_Lean_Syntax_isOfKind(x_2, x_270); -if (x_271 == 0) +x_316 = l_Lean_Syntax_isOfKind(x_2, x_315); +if (x_316 == 0) { -uint8_t x_272; -x_272 = 0; -x_16 = x_272; -goto block_269; +uint8_t x_317; +x_317 = 0; +x_16 = x_317; +goto block_314; } else { -lean_object* x_273; lean_object* x_274; lean_object* x_275; uint8_t x_276; -x_273 = l_Lean_Syntax_getArgs(x_2); -x_274 = lean_array_get_size(x_273); -lean_dec(x_273); -x_275 = lean_unsigned_to_nat(2u); -x_276 = lean_nat_dec_eq(x_274, x_275); -lean_dec(x_274); -x_16 = x_276; -goto block_269; +lean_object* x_318; lean_object* x_319; lean_object* x_320; uint8_t x_321; +x_318 = l_Lean_Syntax_getArgs(x_2); +x_319 = lean_array_get_size(x_318); +lean_dec(x_318); +x_320 = lean_unsigned_to_nat(2u); +x_321 = lean_nat_dec_eq(x_319, x_320); +lean_dec(x_319); +x_16 = x_321; +goto block_314; } -block_269: +block_314: { if (x_16 == 0) { @@ -15970,35 +16002,61 @@ return x_252; } else { -lean_object* x_253; lean_object* x_254; lean_object* x_255; uint8_t x_256; +lean_object* x_253; lean_object* x_254; uint8_t x_255; lean_object* x_308; uint8_t x_309; x_253 = lean_unsigned_to_nat(1u); x_254 = l_Lean_Syntax_getArg(x_2, x_253); lean_dec(x_2); -x_255 = l_Lean_Syntax_getArgs(x_254); -lean_dec(x_254); -x_256 = l_Array_isEmpty___rarg(x_255); -if (x_256 == 0) +x_308 = l_Lean_nullKind___closed__2; +lean_inc(x_254); +x_309 = l_Lean_Syntax_isOfKind(x_254, x_308); +if (x_309 == 0) { -lean_object* x_257; lean_object* x_258; lean_object* x_259; -x_257 = l_Lean_Syntax_inhabited; -x_258 = lean_array_get(x_257, x_255, x_176); -lean_dec(x_255); -x_259 = l_Lean_Elab_Term_elabExplicitUniv(x_258, x_9, x_10); -lean_dec(x_258); -if (lean_obj_tag(x_259) == 0) -{ -lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_260 = lean_ctor_get(x_259, 0); -lean_inc(x_260); -x_261 = lean_ctor_get(x_259, 1); -lean_inc(x_261); -lean_dec(x_259); -x_262 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_260, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_261); -return x_262; +uint8_t x_310; +x_310 = 0; +x_255 = x_310; +goto block_307; } else { -uint8_t x_263; +lean_object* x_311; lean_object* x_312; uint8_t x_313; +x_311 = l_Lean_Syntax_getArgs(x_254); +x_312 = lean_array_get_size(x_311); +lean_dec(x_311); +x_313 = lean_nat_dec_eq(x_312, x_253); +lean_dec(x_312); +x_255 = x_313; +goto block_307; +} +block_307: +{ +if (x_255 == 0) +{ +lean_object* x_256; uint8_t x_257; +x_256 = l_Lean_Syntax_getArgs(x_254); +lean_dec(x_254); +x_257 = l_Array_isEmpty___rarg(x_256); +if (x_257 == 0) +{ +lean_object* x_258; lean_object* x_259; lean_object* x_260; +x_258 = l_Lean_Syntax_inhabited; +x_259 = lean_array_get(x_258, x_256, x_176); +lean_dec(x_256); +x_260 = l_Lean_Elab_Term_elabExplicitUniv(x_259, x_9, x_10); +lean_dec(x_259); +if (lean_obj_tag(x_260) == 0) +{ +lean_object* x_261; lean_object* x_262; lean_object* x_263; +x_261 = lean_ctor_get(x_260, 0); +lean_inc(x_261); +x_262 = lean_ctor_get(x_260, 1); +lean_inc(x_262); +lean_dec(x_260); +x_263 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_261, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_262); +return x_263; +} +else +{ +uint8_t x_264; lean_dec(x_177); lean_dec(x_9); lean_dec(x_8); @@ -16007,33 +16065,200 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_263 = !lean_is_exclusive(x_259); -if (x_263 == 0) +x_264 = !lean_is_exclusive(x_260); +if (x_264 == 0) { -return x_259; +return x_260; } else { -lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_264 = lean_ctor_get(x_259, 0); -x_265 = lean_ctor_get(x_259, 1); +lean_object* x_265; lean_object* x_266; lean_object* x_267; +x_265 = lean_ctor_get(x_260, 0); +x_266 = lean_ctor_get(x_260, 1); +lean_inc(x_266); lean_inc(x_265); -lean_inc(x_264); -lean_dec(x_259); -x_266 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_266, 0, x_264); -lean_ctor_set(x_266, 1, x_265); -return x_266; +lean_dec(x_260); +x_267 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_267, 0, x_265); +lean_ctor_set(x_267, 1, x_266); +return x_267; } } } else { -lean_object* x_267; lean_object* x_268; -lean_dec(x_255); -x_267 = lean_box(0); -x_268 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_267, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_268; +lean_object* x_268; lean_object* x_269; +lean_dec(x_256); +x_268 = lean_box(0); +x_269 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_268, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_269; +} +} +else +{ +lean_object* x_270; lean_object* x_271; uint8_t x_272; +x_270 = l_Lean_Syntax_getArg(x_254, x_176); +x_271 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +lean_inc(x_270); +x_272 = l_Lean_Syntax_isOfKind(x_270, x_271); +if (x_272 == 0) +{ +lean_object* x_273; uint8_t x_274; +lean_dec(x_270); +x_273 = l_Lean_Syntax_getArgs(x_254); +lean_dec(x_254); +x_274 = l_Array_isEmpty___rarg(x_273); +if (x_274 == 0) +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; +x_275 = l_Lean_Syntax_inhabited; +x_276 = lean_array_get(x_275, x_273, x_176); +lean_dec(x_273); +x_277 = l_Lean_Elab_Term_elabExplicitUniv(x_276, x_9, x_10); +lean_dec(x_276); +if (lean_obj_tag(x_277) == 0) +{ +lean_object* x_278; lean_object* x_279; lean_object* x_280; +x_278 = lean_ctor_get(x_277, 0); +lean_inc(x_278); +x_279 = lean_ctor_get(x_277, 1); +lean_inc(x_279); +lean_dec(x_277); +x_280 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_278, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279); +return x_280; +} +else +{ +uint8_t x_281; +lean_dec(x_177); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_281 = !lean_is_exclusive(x_277); +if (x_281 == 0) +{ +return x_277; +} +else +{ +lean_object* x_282; lean_object* x_283; lean_object* x_284; +x_282 = lean_ctor_get(x_277, 0); +x_283 = lean_ctor_get(x_277, 1); +lean_inc(x_283); +lean_inc(x_282); +lean_dec(x_277); +x_284 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_284, 0, x_282); +lean_ctor_set(x_284, 1, x_283); +return x_284; +} +} +} +else +{ +lean_object* x_285; lean_object* x_286; +lean_dec(x_273); +x_285 = lean_box(0); +x_286 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_285, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_286; +} +} +else +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; +x_287 = l_Lean_Syntax_getArgs(x_270); +lean_dec(x_270); +x_288 = lean_array_get_size(x_287); +lean_dec(x_287); +x_289 = lean_unsigned_to_nat(2u); +x_290 = lean_nat_dec_eq(x_288, x_289); +lean_dec(x_288); +if (x_290 == 0) +{ +lean_object* x_291; uint8_t x_292; +x_291 = l_Lean_Syntax_getArgs(x_254); +lean_dec(x_254); +x_292 = l_Array_isEmpty___rarg(x_291); +if (x_292 == 0) +{ +lean_object* x_293; lean_object* x_294; lean_object* x_295; +x_293 = l_Lean_Syntax_inhabited; +x_294 = lean_array_get(x_293, x_291, x_176); +lean_dec(x_291); +x_295 = l_Lean_Elab_Term_elabExplicitUniv(x_294, x_9, x_10); +lean_dec(x_294); +if (lean_obj_tag(x_295) == 0) +{ +lean_object* x_296; lean_object* x_297; lean_object* x_298; +x_296 = lean_ctor_get(x_295, 0); +lean_inc(x_296); +x_297 = lean_ctor_get(x_295, 1); +lean_inc(x_297); +lean_dec(x_295); +x_298 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_296, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_297); +return x_298; +} +else +{ +uint8_t x_299; +lean_dec(x_177); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_299 = !lean_is_exclusive(x_295); +if (x_299 == 0) +{ +return x_295; +} +else +{ +lean_object* x_300; lean_object* x_301; lean_object* x_302; +x_300 = lean_ctor_get(x_295, 0); +x_301 = lean_ctor_get(x_295, 1); +lean_inc(x_301); +lean_inc(x_300); +lean_dec(x_295); +x_302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_302, 0, x_300); +lean_ctor_set(x_302, 1, x_301); +return x_302; +} +} +} +else +{ +lean_object* x_303; lean_object* x_304; +lean_dec(x_291); +x_303 = lean_box(0); +x_304 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_303, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_304; +} +} +else +{ +lean_object* x_305; lean_object* x_306; +lean_dec(x_254); +lean_dec(x_177); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_305 = l___private_Lean_Elab_App_21__elabAppFn___main___closed__3; +x_306 = l_Lean_Elab_Term_throwError___rarg(x_1, x_305, x_9, x_10); +lean_dec(x_1); +return x_306; +} +} +} } } } @@ -16041,579 +16266,579 @@ return x_268; } else { -lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; -x_277 = lean_unsigned_to_nat(0u); -x_278 = l_Lean_Syntax_getArg(x_2, x_277); -x_279 = lean_unsigned_to_nat(2u); -x_280 = l_Lean_Syntax_getArg(x_2, x_279); +lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Lean_Syntax_getArg(x_2, x_322); +x_324 = lean_unsigned_to_nat(2u); +x_325 = l_Lean_Syntax_getArg(x_2, x_324); lean_dec(x_2); -x_281 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_281, 0, x_280); -x_282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_282, 0, x_281); -lean_ctor_set(x_282, 1, x_3); -x_2 = x_278; -x_3 = x_282; +x_326 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_326, 0, x_325); +x_327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_327, 0, x_326); +lean_ctor_set(x_327, 1, x_3); +x_2 = x_323; +x_3 = x_327; goto _start; } } -block_392: +block_437: { -if (x_285 == 0) +if (x_330 == 0) { -lean_object* x_286; uint8_t x_287; -x_286 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; +lean_object* x_331; uint8_t x_332; +x_331 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; lean_inc(x_2); -x_287 = l_Lean_Syntax_isOfKind(x_2, x_286); -if (x_287 == 0) +x_332 = l_Lean_Syntax_isOfKind(x_2, x_331); +if (x_332 == 0) { -uint8_t x_288; -x_288 = 0; -x_15 = x_288; -goto block_284; +uint8_t x_333; +x_333 = 0; +x_15 = x_333; +goto block_329; } else { -lean_object* x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; -x_289 = l_Lean_Syntax_getArgs(x_2); -x_290 = lean_array_get_size(x_289); -lean_dec(x_289); -x_291 = lean_unsigned_to_nat(4u); -x_292 = lean_nat_dec_eq(x_290, x_291); -lean_dec(x_290); -x_15 = x_292; -goto block_284; +lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; +x_334 = l_Lean_Syntax_getArgs(x_2); +x_335 = lean_array_get_size(x_334); +lean_dec(x_334); +x_336 = lean_unsigned_to_nat(4u); +x_337 = lean_nat_dec_eq(x_335, x_336); +lean_dec(x_335); +x_15 = x_337; +goto block_329; } } else { -lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; uint8_t x_298; -x_293 = lean_unsigned_to_nat(0u); -x_294 = l_Lean_Syntax_getArg(x_2, x_293); -x_295 = lean_unsigned_to_nat(2u); -x_296 = l_Lean_Syntax_getArg(x_2, x_295); -x_297 = l_Lean_fieldIdxKind___closed__2; -lean_inc(x_296); -x_298 = l_Lean_Syntax_isOfKind(x_296, x_297); -if (x_298 == 0) +lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; uint8_t x_343; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Lean_Syntax_getArg(x_2, x_338); +x_340 = lean_unsigned_to_nat(2u); +x_341 = l_Lean_Syntax_getArg(x_2, x_340); +x_342 = l_Lean_fieldIdxKind___closed__2; +lean_inc(x_341); +x_343 = l_Lean_Syntax_isOfKind(x_341, x_342); +if (x_343 == 0) { -lean_object* x_299; uint8_t x_300; -x_299 = l_Lean_identKind___closed__2; -lean_inc(x_296); -x_300 = l_Lean_Syntax_isOfKind(x_296, x_299); -if (x_300 == 0) +lean_object* x_344; uint8_t x_345; +x_344 = l_Lean_identKind___closed__2; +lean_inc(x_341); +x_345 = l_Lean_Syntax_isOfKind(x_341, x_344); +if (x_345 == 0) { -lean_object* x_301; uint8_t x_302; lean_object* x_303; -lean_dec(x_296); -lean_dec(x_294); -x_301 = lean_box(0); -x_302 = 1; +lean_object* x_346; uint8_t x_347; lean_object* x_348; +lean_dec(x_341); +lean_dec(x_339); +x_346 = lean_box(0); +x_347 = 1; lean_inc(x_10); lean_inc(x_9); -x_303 = l_Lean_Elab_Term_elabTermAux___main(x_301, x_302, x_302, x_2, x_9, x_10); -if (lean_obj_tag(x_303) == 0) +x_348 = l_Lean_Elab_Term_elabTermAux___main(x_346, x_347, x_347, x_2, x_9, x_10); +if (lean_obj_tag(x_348) == 0) { -uint8_t x_304; -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +uint8_t x_349; +x_349 = !lean_is_exclusive(x_348); +if (x_349 == 0) { -lean_object* x_305; lean_object* x_306; lean_object* x_307; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_305, x_3, x_4, x_5, x_6, x_7, x_9, x_306); -if (lean_obj_tag(x_307) == 0) +lean_object* x_350; lean_object* x_351; lean_object* x_352; +x_350 = lean_ctor_get(x_348, 0); +x_351 = lean_ctor_get(x_348, 1); +x_352 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_350, x_3, x_4, x_5, x_6, x_7, x_9, x_351); +if (lean_obj_tag(x_352) == 0) { -uint8_t x_308; -x_308 = !lean_is_exclusive(x_307); -if (x_308 == 0) +uint8_t x_353; +x_353 = !lean_is_exclusive(x_352); +if (x_353 == 0) { -lean_object* x_309; -x_309 = lean_array_push(x_8, x_307); -lean_ctor_set(x_303, 1, x_10); -lean_ctor_set(x_303, 0, x_309); -return x_303; -} -else -{ -lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; -x_310 = lean_ctor_get(x_307, 0); -x_311 = lean_ctor_get(x_307, 1); -lean_inc(x_311); -lean_inc(x_310); -lean_dec(x_307); -x_312 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_312, 0, x_310); -lean_ctor_set(x_312, 1, x_311); -x_313 = lean_array_push(x_8, x_312); -lean_ctor_set(x_303, 1, x_10); -lean_ctor_set(x_303, 0, x_313); -return x_303; -} -} -else -{ -lean_object* x_314; -x_314 = lean_ctor_get(x_307, 0); -lean_inc(x_314); -if (lean_obj_tag(x_314) == 0) -{ -lean_object* x_315; -x_315 = lean_ctor_get(x_314, 0); -lean_inc(x_315); -if (lean_obj_tag(x_315) == 0) -{ -uint8_t x_316; -lean_dec(x_314); -x_316 = !lean_is_exclusive(x_307); -if (x_316 == 0) -{ -lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_317 = lean_ctor_get(x_307, 0); -lean_dec(x_317); -x_318 = lean_ctor_get(x_315, 0); -lean_inc(x_318); -lean_dec(x_315); -lean_ctor_set(x_307, 0, x_318); -x_319 = lean_array_push(x_8, x_307); -lean_ctor_set(x_303, 1, x_10); -lean_ctor_set(x_303, 0, x_319); -return x_303; -} -else -{ -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; -x_320 = lean_ctor_get(x_307, 1); -lean_inc(x_320); -lean_dec(x_307); -x_321 = lean_ctor_get(x_315, 0); -lean_inc(x_321); -lean_dec(x_315); -x_322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_322, 0, x_321); -lean_ctor_set(x_322, 1, x_320); -x_323 = lean_array_push(x_8, x_322); -lean_ctor_set(x_303, 1, x_10); -lean_ctor_set(x_303, 0, x_323); -return x_303; -} -} -else -{ -uint8_t x_324; -lean_free_object(x_303); -lean_dec(x_10); -lean_dec(x_8); -x_324 = !lean_is_exclusive(x_307); -if (x_324 == 0) -{ -lean_object* x_325; -x_325 = lean_ctor_get(x_307, 0); -lean_dec(x_325); -return x_307; -} -else -{ -lean_object* x_326; lean_object* x_327; -x_326 = lean_ctor_get(x_307, 1); -lean_inc(x_326); -lean_dec(x_307); -x_327 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_327, 0, x_314); -lean_ctor_set(x_327, 1, x_326); -return x_327; -} -} -} -else -{ -uint8_t x_328; -lean_free_object(x_303); -lean_dec(x_8); -x_328 = !lean_is_exclusive(x_307); -if (x_328 == 0) -{ -lean_object* x_329; lean_object* x_330; -x_329 = lean_ctor_get(x_307, 1); -lean_dec(x_329); -x_330 = lean_ctor_get(x_307, 0); -lean_dec(x_330); -lean_ctor_set(x_307, 1, x_10); -return x_307; -} -else -{ -lean_object* x_331; -lean_dec(x_307); -x_331 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_331, 0, x_314); -lean_ctor_set(x_331, 1, x_10); -return x_331; -} -} -} -} -else -{ -lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_332 = lean_ctor_get(x_303, 0); -x_333 = lean_ctor_get(x_303, 1); -lean_inc(x_333); -lean_inc(x_332); -lean_dec(x_303); -x_334 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_332, x_3, x_4, x_5, x_6, x_7, x_9, x_333); -if (lean_obj_tag(x_334) == 0) -{ -lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; -x_335 = lean_ctor_get(x_334, 0); -lean_inc(x_335); -x_336 = lean_ctor_get(x_334, 1); -lean_inc(x_336); -if (lean_is_exclusive(x_334)) { - lean_ctor_release(x_334, 0); - lean_ctor_release(x_334, 1); - x_337 = x_334; -} else { - lean_dec_ref(x_334); - x_337 = lean_box(0); -} -if (lean_is_scalar(x_337)) { - x_338 = lean_alloc_ctor(0, 2, 0); -} else { - x_338 = x_337; -} -lean_ctor_set(x_338, 0, x_335); -lean_ctor_set(x_338, 1, x_336); -x_339 = lean_array_push(x_8, x_338); -x_340 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_340, 0, x_339); -lean_ctor_set(x_340, 1, x_10); -return x_340; -} -else -{ -lean_object* x_341; -x_341 = lean_ctor_get(x_334, 0); -lean_inc(x_341); -if (lean_obj_tag(x_341) == 0) -{ -lean_object* x_342; -x_342 = lean_ctor_get(x_341, 0); -lean_inc(x_342); -if (lean_obj_tag(x_342) == 0) -{ -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_dec(x_341); -x_343 = lean_ctor_get(x_334, 1); -lean_inc(x_343); -if (lean_is_exclusive(x_334)) { - lean_ctor_release(x_334, 0); - lean_ctor_release(x_334, 1); - x_344 = x_334; -} else { - lean_dec_ref(x_334); - x_344 = lean_box(0); -} -x_345 = lean_ctor_get(x_342, 0); -lean_inc(x_345); -lean_dec(x_342); -if (lean_is_scalar(x_344)) { - x_346 = lean_alloc_ctor(1, 2, 0); -} else { - x_346 = x_344; -} -lean_ctor_set(x_346, 0, x_345); -lean_ctor_set(x_346, 1, x_343); -x_347 = lean_array_push(x_8, x_346); -x_348 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_348, 0, x_347); +lean_object* x_354; +x_354 = lean_array_push(x_8, x_352); lean_ctor_set(x_348, 1, x_10); +lean_ctor_set(x_348, 0, x_354); return x_348; } else { -lean_object* x_349; lean_object* x_350; lean_object* x_351; +lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_355 = lean_ctor_get(x_352, 0); +x_356 = lean_ctor_get(x_352, 1); +lean_inc(x_356); +lean_inc(x_355); +lean_dec(x_352); +x_357 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_357, 0, x_355); +lean_ctor_set(x_357, 1, x_356); +x_358 = lean_array_push(x_8, x_357); +lean_ctor_set(x_348, 1, x_10); +lean_ctor_set(x_348, 0, x_358); +return x_348; +} +} +else +{ +lean_object* x_359; +x_359 = lean_ctor_get(x_352, 0); +lean_inc(x_359); +if (lean_obj_tag(x_359) == 0) +{ +lean_object* x_360; +x_360 = lean_ctor_get(x_359, 0); +lean_inc(x_360); +if (lean_obj_tag(x_360) == 0) +{ +uint8_t x_361; +lean_dec(x_359); +x_361 = !lean_is_exclusive(x_352); +if (x_361 == 0) +{ +lean_object* x_362; lean_object* x_363; lean_object* x_364; +x_362 = lean_ctor_get(x_352, 0); +lean_dec(x_362); +x_363 = lean_ctor_get(x_360, 0); +lean_inc(x_363); +lean_dec(x_360); +lean_ctor_set(x_352, 0, x_363); +x_364 = lean_array_push(x_8, x_352); +lean_ctor_set(x_348, 1, x_10); +lean_ctor_set(x_348, 0, x_364); +return x_348; +} +else +{ +lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; +x_365 = lean_ctor_get(x_352, 1); +lean_inc(x_365); +lean_dec(x_352); +x_366 = lean_ctor_get(x_360, 0); +lean_inc(x_366); +lean_dec(x_360); +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_366); +lean_ctor_set(x_367, 1, x_365); +x_368 = lean_array_push(x_8, x_367); +lean_ctor_set(x_348, 1, x_10); +lean_ctor_set(x_348, 0, x_368); +return x_348; +} +} +else +{ +uint8_t x_369; +lean_free_object(x_348); lean_dec(x_10); lean_dec(x_8); -x_349 = lean_ctor_get(x_334, 1); -lean_inc(x_349); -if (lean_is_exclusive(x_334)) { - lean_ctor_release(x_334, 0); - lean_ctor_release(x_334, 1); - x_350 = x_334; -} else { - lean_dec_ref(x_334); - x_350 = lean_box(0); +x_369 = !lean_is_exclusive(x_352); +if (x_369 == 0) +{ +lean_object* x_370; +x_370 = lean_ctor_get(x_352, 0); +lean_dec(x_370); +return x_352; } -if (lean_is_scalar(x_350)) { - x_351 = lean_alloc_ctor(1, 2, 0); -} else { - x_351 = x_350; +else +{ +lean_object* x_371; lean_object* x_372; +x_371 = lean_ctor_get(x_352, 1); +lean_inc(x_371); +lean_dec(x_352); +x_372 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_372, 0, x_359); +lean_ctor_set(x_372, 1, x_371); +return x_372; } -lean_ctor_set(x_351, 0, x_341); -lean_ctor_set(x_351, 1, x_349); -return x_351; } } else { -lean_object* x_352; lean_object* x_353; +uint8_t x_373; +lean_free_object(x_348); lean_dec(x_8); -if (lean_is_exclusive(x_334)) { - lean_ctor_release(x_334, 0); - lean_ctor_release(x_334, 1); - x_352 = x_334; -} else { - lean_dec_ref(x_334); - x_352 = lean_box(0); +x_373 = !lean_is_exclusive(x_352); +if (x_373 == 0) +{ +lean_object* x_374; lean_object* x_375; +x_374 = lean_ctor_get(x_352, 1); +lean_dec(x_374); +x_375 = lean_ctor_get(x_352, 0); +lean_dec(x_375); +lean_ctor_set(x_352, 1, x_10); +return x_352; } -if (lean_is_scalar(x_352)) { - x_353 = lean_alloc_ctor(1, 2, 0); -} else { - x_353 = x_352; -} -lean_ctor_set(x_353, 0, x_341); -lean_ctor_set(x_353, 1, x_10); -return x_353; +else +{ +lean_object* x_376; +lean_dec(x_352); +x_376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_376, 0, x_359); +lean_ctor_set(x_376, 1, x_10); +return x_376; } } } } else { -lean_object* x_354; +lean_object* x_377; lean_object* x_378; lean_object* x_379; +x_377 = lean_ctor_get(x_348, 0); +x_378 = lean_ctor_get(x_348, 1); +lean_inc(x_378); +lean_inc(x_377); +lean_dec(x_348); +x_379 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_377, x_3, x_4, x_5, x_6, x_7, x_9, x_378); +if (lean_obj_tag(x_379) == 0) +{ +lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; +x_380 = lean_ctor_get(x_379, 0); +lean_inc(x_380); +x_381 = lean_ctor_get(x_379, 1); +lean_inc(x_381); +if (lean_is_exclusive(x_379)) { + lean_ctor_release(x_379, 0); + lean_ctor_release(x_379, 1); + x_382 = x_379; +} else { + lean_dec_ref(x_379); + x_382 = lean_box(0); +} +if (lean_is_scalar(x_382)) { + x_383 = lean_alloc_ctor(0, 2, 0); +} else { + x_383 = x_382; +} +lean_ctor_set(x_383, 0, x_380); +lean_ctor_set(x_383, 1, x_381); +x_384 = lean_array_push(x_8, x_383); +x_385 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_385, 0, x_384); +lean_ctor_set(x_385, 1, x_10); +return x_385; +} +else +{ +lean_object* x_386; +x_386 = lean_ctor_get(x_379, 0); +lean_inc(x_386); +if (lean_obj_tag(x_386) == 0) +{ +lean_object* x_387; +x_387 = lean_ctor_get(x_386, 0); +lean_inc(x_387); +if (lean_obj_tag(x_387) == 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_dec(x_386); +x_388 = lean_ctor_get(x_379, 1); +lean_inc(x_388); +if (lean_is_exclusive(x_379)) { + lean_ctor_release(x_379, 0); + lean_ctor_release(x_379, 1); + x_389 = x_379; +} else { + lean_dec_ref(x_379); + x_389 = lean_box(0); +} +x_390 = lean_ctor_get(x_387, 0); +lean_inc(x_390); +lean_dec(x_387); +if (lean_is_scalar(x_389)) { + x_391 = lean_alloc_ctor(1, 2, 0); +} else { + x_391 = x_389; +} +lean_ctor_set(x_391, 0, x_390); +lean_ctor_set(x_391, 1, x_388); +x_392 = lean_array_push(x_8, x_391); +x_393 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_393, 0, x_392); +lean_ctor_set(x_393, 1, x_10); +return x_393; +} +else +{ +lean_object* x_394; lean_object* x_395; lean_object* x_396; +lean_dec(x_10); +lean_dec(x_8); +x_394 = lean_ctor_get(x_379, 1); +lean_inc(x_394); +if (lean_is_exclusive(x_379)) { + lean_ctor_release(x_379, 0); + lean_ctor_release(x_379, 1); + x_395 = x_379; +} else { + lean_dec_ref(x_379); + x_395 = lean_box(0); +} +if (lean_is_scalar(x_395)) { + x_396 = lean_alloc_ctor(1, 2, 0); +} else { + x_396 = x_395; +} +lean_ctor_set(x_396, 0, x_386); +lean_ctor_set(x_396, 1, x_394); +return x_396; +} +} +else +{ +lean_object* x_397; lean_object* x_398; +lean_dec(x_8); +if (lean_is_exclusive(x_379)) { + lean_ctor_release(x_379, 0); + lean_ctor_release(x_379, 1); + x_397 = x_379; +} else { + lean_dec_ref(x_379); + x_397 = lean_box(0); +} +if (lean_is_scalar(x_397)) { + x_398 = lean_alloc_ctor(1, 2, 0); +} else { + x_398 = x_397; +} +lean_ctor_set(x_398, 0, x_386); +lean_ctor_set(x_398, 1, x_10); +return x_398; +} +} +} +} +else +{ +lean_object* x_399; lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_354 = lean_ctor_get(x_303, 0); -lean_inc(x_354); -if (lean_obj_tag(x_354) == 0) +x_399 = lean_ctor_get(x_348, 0); +lean_inc(x_399); +if (lean_obj_tag(x_399) == 0) { -lean_object* x_355; -x_355 = lean_ctor_get(x_354, 0); -lean_inc(x_355); -if (lean_obj_tag(x_355) == 0) +lean_object* x_400; +x_400 = lean_ctor_get(x_399, 0); +lean_inc(x_400); +if (lean_obj_tag(x_400) == 0) { -uint8_t x_356; -lean_dec(x_354); -x_356 = !lean_is_exclusive(x_303); -if (x_356 == 0) -{ -lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; -x_357 = lean_ctor_get(x_303, 0); -lean_dec(x_357); -x_358 = lean_ctor_get(x_355, 0); -lean_inc(x_358); -lean_dec(x_355); -lean_ctor_set(x_303, 0, x_358); -x_359 = lean_array_push(x_8, x_303); -x_360 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_360, 0, x_359); -lean_ctor_set(x_360, 1, x_10); -return x_360; -} -else -{ -lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; -x_361 = lean_ctor_get(x_303, 1); -lean_inc(x_361); -lean_dec(x_303); -x_362 = lean_ctor_get(x_355, 0); -lean_inc(x_362); -lean_dec(x_355); -x_363 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_363, 0, x_362); -lean_ctor_set(x_363, 1, x_361); -x_364 = lean_array_push(x_8, x_363); -x_365 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_365, 0, x_364); -lean_ctor_set(x_365, 1, x_10); -return x_365; -} -} -else -{ -uint8_t x_366; -lean_dec(x_10); -lean_dec(x_8); -x_366 = !lean_is_exclusive(x_303); -if (x_366 == 0) -{ -lean_object* x_367; -x_367 = lean_ctor_get(x_303, 0); -lean_dec(x_367); -return x_303; -} -else -{ -lean_object* x_368; lean_object* x_369; -x_368 = lean_ctor_get(x_303, 1); -lean_inc(x_368); -lean_dec(x_303); -x_369 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_369, 0, x_354); -lean_ctor_set(x_369, 1, x_368); -return x_369; -} -} -} -else -{ -uint8_t x_370; -lean_dec(x_8); -x_370 = !lean_is_exclusive(x_303); -if (x_370 == 0) -{ -lean_object* x_371; lean_object* x_372; -x_371 = lean_ctor_get(x_303, 1); -lean_dec(x_371); -x_372 = lean_ctor_get(x_303, 0); -lean_dec(x_372); -lean_ctor_set(x_303, 1, x_10); -return x_303; -} -else -{ -lean_object* x_373; -lean_dec(x_303); -x_373 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_373, 0, x_354); -lean_ctor_set(x_373, 1, x_10); -return x_373; -} -} -} -} -else -{ -lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; -lean_dec(x_2); -x_374 = l_Lean_Syntax_getId(x_296); -lean_dec(x_296); -x_375 = l_Lean_Name_eraseMacroScopes(x_374); -lean_dec(x_374); -x_376 = l_Lean_Name_components(x_375); -x_377 = l_List_map___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__1(x_376); -x_378 = l_List_append___rarg(x_377, x_3); -x_2 = x_294; -x_3 = x_378; -goto _start; -} -} -else -{ -lean_object* x_380; lean_object* x_381; -lean_dec(x_2); -x_380 = l_Lean_fieldIdxKind; -x_381 = l_Lean_Syntax_isNatLitAux(x_380, x_296); -lean_dec(x_296); -if (lean_obj_tag(x_381) == 0) -{ -lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; -x_382 = l_Nat_Inhabited; -x_383 = l_Option_get_x21___rarg___closed__3; -x_384 = lean_panic_fn(x_382, x_383); -x_385 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_385, 0, x_384); -x_386 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_386, 0, x_385); -lean_ctor_set(x_386, 1, x_3); -x_2 = x_294; -x_3 = x_386; -goto _start; -} -else -{ -lean_object* x_388; lean_object* x_389; lean_object* x_390; -x_388 = lean_ctor_get(x_381, 0); -lean_inc(x_388); -lean_dec(x_381); -x_389 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_389, 0, x_388); -x_390 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_390, 0, x_389); -lean_ctor_set(x_390, 1, x_3); -x_2 = x_294; -x_3 = x_390; -goto _start; -} -} -} -} -} -else -{ -lean_object* x_400; uint8_t x_401; -x_400 = l_Lean_Syntax_getArgs(x_2); -x_401 = !lean_is_exclusive(x_9); +uint8_t x_401; +lean_dec(x_399); +x_401 = !lean_is_exclusive(x_348); if (x_401 == 0) { -uint8_t x_402; lean_object* x_403; lean_object* x_404; -x_402 = 0; -lean_ctor_set_uint8(x_9, sizeof(void*)*10 + 1, x_402); -x_403 = lean_unsigned_to_nat(0u); -x_404 = l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_400, x_403, x_8, x_9, x_10); +lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; +x_402 = lean_ctor_get(x_348, 0); +lean_dec(x_402); +x_403 = lean_ctor_get(x_400, 0); +lean_inc(x_403); lean_dec(x_400); -lean_dec(x_2); -return x_404; +lean_ctor_set(x_348, 0, x_403); +x_404 = lean_array_push(x_8, x_348); +x_405 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_405, 0, x_404); +lean_ctor_set(x_405, 1, x_10); +return x_405; } else { -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; uint8_t x_415; uint8_t x_416; uint8_t x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; -x_405 = lean_ctor_get(x_9, 0); -x_406 = lean_ctor_get(x_9, 1); -x_407 = lean_ctor_get(x_9, 2); -x_408 = lean_ctor_get(x_9, 3); -x_409 = lean_ctor_get(x_9, 4); -x_410 = lean_ctor_get(x_9, 5); -x_411 = lean_ctor_get(x_9, 6); -x_412 = lean_ctor_get(x_9, 7); -x_413 = lean_ctor_get(x_9, 8); -x_414 = lean_ctor_get(x_9, 9); -x_415 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); -x_416 = lean_ctor_get_uint8(x_9, sizeof(void*)*10 + 2); -lean_inc(x_414); -lean_inc(x_413); -lean_inc(x_412); -lean_inc(x_411); -lean_inc(x_410); -lean_inc(x_409); -lean_inc(x_408); -lean_inc(x_407); +lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; +x_406 = lean_ctor_get(x_348, 1); lean_inc(x_406); -lean_inc(x_405); -lean_dec(x_9); -x_417 = 0; -x_418 = lean_alloc_ctor(0, 10, 3); -lean_ctor_set(x_418, 0, x_405); -lean_ctor_set(x_418, 1, x_406); -lean_ctor_set(x_418, 2, x_407); -lean_ctor_set(x_418, 3, x_408); -lean_ctor_set(x_418, 4, x_409); -lean_ctor_set(x_418, 5, x_410); -lean_ctor_set(x_418, 6, x_411); -lean_ctor_set(x_418, 7, x_412); -lean_ctor_set(x_418, 8, x_413); -lean_ctor_set(x_418, 9, x_414); -lean_ctor_set_uint8(x_418, sizeof(void*)*10, x_415); -lean_ctor_set_uint8(x_418, sizeof(void*)*10 + 1, x_417); -lean_ctor_set_uint8(x_418, sizeof(void*)*10 + 2, x_416); -x_419 = lean_unsigned_to_nat(0u); -x_420 = l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_400, x_419, x_8, x_418, x_10); +lean_dec(x_348); +x_407 = lean_ctor_get(x_400, 0); +lean_inc(x_407); lean_dec(x_400); -lean_dec(x_2); -return x_420; +x_408 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_408, 0, x_407); +lean_ctor_set(x_408, 1, x_406); +x_409 = lean_array_push(x_8, x_408); +x_410 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_410, 0, x_409); +lean_ctor_set(x_410, 1, x_10); +return x_410; +} +} +else +{ +uint8_t x_411; +lean_dec(x_10); +lean_dec(x_8); +x_411 = !lean_is_exclusive(x_348); +if (x_411 == 0) +{ +lean_object* x_412; +x_412 = lean_ctor_get(x_348, 0); +lean_dec(x_412); +return x_348; +} +else +{ +lean_object* x_413; lean_object* x_414; +x_413 = lean_ctor_get(x_348, 1); +lean_inc(x_413); +lean_dec(x_348); +x_414 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_414, 0, x_399); +lean_ctor_set(x_414, 1, x_413); +return x_414; } } } else { -lean_object* x_421; lean_object* x_422; -x_421 = lean_box(0); -x_422 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_2, x_421, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_422; +uint8_t x_415; +lean_dec(x_8); +x_415 = !lean_is_exclusive(x_348); +if (x_415 == 0) +{ +lean_object* x_416; lean_object* x_417; +x_416 = lean_ctor_get(x_348, 1); +lean_dec(x_416); +x_417 = lean_ctor_get(x_348, 0); +lean_dec(x_417); +lean_ctor_set(x_348, 1, x_10); +return x_348; +} +else +{ +lean_object* x_418; +lean_dec(x_348); +x_418 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_418, 0, x_399); +lean_ctor_set(x_418, 1, x_10); +return x_418; +} +} +} +} +else +{ +lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; +lean_dec(x_2); +x_419 = l_Lean_Syntax_getId(x_341); +lean_dec(x_341); +x_420 = l_Lean_Name_eraseMacroScopes(x_419); +lean_dec(x_419); +x_421 = l_Lean_Name_components(x_420); +x_422 = l_List_map___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__1(x_421); +x_423 = l_List_append___rarg(x_422, x_3); +x_2 = x_339; +x_3 = x_423; +goto _start; +} +} +else +{ +lean_object* x_425; lean_object* x_426; +lean_dec(x_2); +x_425 = l_Lean_fieldIdxKind; +x_426 = l_Lean_Syntax_isNatLitAux(x_425, x_341); +lean_dec(x_341); +if (lean_obj_tag(x_426) == 0) +{ +lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +x_427 = l_Nat_Inhabited; +x_428 = l_Option_get_x21___rarg___closed__3; +x_429 = lean_panic_fn(x_427, x_428); +x_430 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_430, 0, x_429); +x_431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_431, 0, x_430); +lean_ctor_set(x_431, 1, x_3); +x_2 = x_339; +x_3 = x_431; +goto _start; +} +else +{ +lean_object* x_433; lean_object* x_434; lean_object* x_435; +x_433 = lean_ctor_get(x_426, 0); +lean_inc(x_433); +lean_dec(x_426); +x_434 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_434, 0, x_433); +x_435 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_435, 0, x_434); +lean_ctor_set(x_435, 1, x_3); +x_2 = x_339; +x_3 = x_435; +goto _start; +} +} +} +} +} +else +{ +lean_object* x_445; uint8_t x_446; +x_445 = l_Lean_Syntax_getArgs(x_2); +x_446 = !lean_is_exclusive(x_9); +if (x_446 == 0) +{ +uint8_t x_447; lean_object* x_448; lean_object* x_449; +x_447 = 0; +lean_ctor_set_uint8(x_9, sizeof(void*)*10 + 1, x_447); +x_448 = lean_unsigned_to_nat(0u); +x_449 = l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_445, x_448, x_8, x_9, x_10); +lean_dec(x_445); +lean_dec(x_2); +return x_449; +} +else +{ +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; uint8_t x_460; uint8_t x_461; uint8_t x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; +x_450 = lean_ctor_get(x_9, 0); +x_451 = lean_ctor_get(x_9, 1); +x_452 = lean_ctor_get(x_9, 2); +x_453 = lean_ctor_get(x_9, 3); +x_454 = lean_ctor_get(x_9, 4); +x_455 = lean_ctor_get(x_9, 5); +x_456 = lean_ctor_get(x_9, 6); +x_457 = lean_ctor_get(x_9, 7); +x_458 = lean_ctor_get(x_9, 8); +x_459 = lean_ctor_get(x_9, 9); +x_460 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); +x_461 = lean_ctor_get_uint8(x_9, sizeof(void*)*10 + 2); +lean_inc(x_459); +lean_inc(x_458); +lean_inc(x_457); +lean_inc(x_456); +lean_inc(x_455); +lean_inc(x_454); +lean_inc(x_453); +lean_inc(x_452); +lean_inc(x_451); +lean_inc(x_450); +lean_dec(x_9); +x_462 = 0; +x_463 = lean_alloc_ctor(0, 10, 3); +lean_ctor_set(x_463, 0, x_450); +lean_ctor_set(x_463, 1, x_451); +lean_ctor_set(x_463, 2, x_452); +lean_ctor_set(x_463, 3, x_453); +lean_ctor_set(x_463, 4, x_454); +lean_ctor_set(x_463, 5, x_455); +lean_ctor_set(x_463, 6, x_456); +lean_ctor_set(x_463, 7, x_457); +lean_ctor_set(x_463, 8, x_458); +lean_ctor_set(x_463, 9, x_459); +lean_ctor_set_uint8(x_463, sizeof(void*)*10, x_460); +lean_ctor_set_uint8(x_463, sizeof(void*)*10 + 1, x_462); +lean_ctor_set_uint8(x_463, sizeof(void*)*10 + 2, x_461); +x_464 = lean_unsigned_to_nat(0u); +x_465 = l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_445, x_464, x_8, x_463, x_10); +lean_dec(x_445); +lean_dec(x_2); +return x_465; +} +} +} +else +{ +lean_object* x_466; lean_object* x_467; +x_466 = lean_box(0); +x_467 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_2, x_466, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_467; } } } @@ -18324,6 +18549,12 @@ l___private_Lean_Elab_App_19__elabAppLVals___closed__2 = _init_l___private_Lean_ lean_mark_persistent(l___private_Lean_Elab_App_19__elabAppLVals___closed__2); l___private_Lean_Elab_App_19__elabAppLVals___closed__3 = _init_l___private_Lean_Elab_App_19__elabAppLVals___closed__3(); lean_mark_persistent(l___private_Lean_Elab_App_19__elabAppLVals___closed__3); +l___private_Lean_Elab_App_21__elabAppFn___main___closed__1 = _init_l___private_Lean_Elab_App_21__elabAppFn___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_21__elabAppFn___main___closed__1); +l___private_Lean_Elab_App_21__elabAppFn___main___closed__2 = _init_l___private_Lean_Elab_App_21__elabAppFn___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_21__elabAppFn___main___closed__2); +l___private_Lean_Elab_App_21__elabAppFn___main___closed__3 = _init_l___private_Lean_Elab_App_21__elabAppFn___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_21__elabAppFn___main___closed__3); l___private_Lean_Elab_App_23__toMessageData___closed__1 = _init_l___private_Lean_Elab_App_23__toMessageData___closed__1(); lean_mark_persistent(l___private_Lean_Elab_App_23__toMessageData___closed__1); l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__1 = _init_l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index 6be16aabd5..7952cce7d1 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Match -// Imports: Init Lean.Elab.Term +// Imports: Init Lean.Elab.Term Lean.Meta.EqnCompiler.MatchPattern Lean.Meta.EqnCompiler.DepElim #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,128 +13,412 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l_List_reverse___rarg(lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_28__mkNewAlt___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkHole___closed__3; +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__12; +lean_object* l_Lean_Syntax_getIdOfTermId(lean_object*); lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_5__getMatchAlts___spec__2(lean_object*, lean_object*); +extern lean_object* l_Lean_Name_toString___closed__1; +lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_8__getMatchAlts(lean_object*); +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__3; +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__6; +extern lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__4; +lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); +lean_object* l_Lean_Name_eraseMacroScopes(lean_object*); +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__1; lean_object* l_List_toString___at_Lean_MetavarContext_MkBinding_Exception_toString___spec__2(lean_object*); +lean_object* l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkTermIdFromIdent(lean_object*); lean_object* l_Lean_Elab_Term_elabMatch(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Nat_HasQuote___closed__2; +lean_object* l_unreachable_x21___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__6; +lean_object* l_Lean_Meta_isClassExpensive___main(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_nullKind; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_8__getMatchAlts___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__1; +extern lean_object* l_Lean_MessageData_ofList___closed__3; lean_object* l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1; extern lean_object* l_List_repr___rarg___closed__1; +extern lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__5; +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main___closed__5; extern lean_object* l_Lean_List_format___rarg___closed__2; uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Match_5__getMatchAlts(lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__4(lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_8__getMatchAlts___spec__2(lean_object*, lean_object*); +lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__3; +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__5; extern lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__2; lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__2; +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__2; extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_Match_17__collect___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__5; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__14; +extern lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; +lean_object* l_Lean_Meta_isClassQuick___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_24__mkMatchType(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_environment_find(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_25__mkOptType(lean_object*); +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Match_13__processIdAux___spec__1(lean_object*, lean_object*); +uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__3; +lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__1; +lean_object* l_Lean_MessageData_arrayExpr_toMessageData___main(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_elabMatchAltView___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__1; +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore___closed__5; +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected(lean_object*); +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore___closed__3; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +extern lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__2; lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l_Lean_MessageData_ofList(lean_object*); +lean_object* l___private_Lean_Elab_Match_12__processVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__2; +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__3; extern lean_object* l_String_splitAux___main___closed__1; +lean_object* l___private_Lean_Elab_Match_18__collectPatternVars___closed__1; extern lean_object* l_List_repr___rarg___closed__3; +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2; +extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__10; +lean_object* l___private_Lean_Elab_Match_17__collect___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_string_utf8_byte_size(lean_object*); +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*); lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_22__elabPatterns___closed__3; +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__13; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1; +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__7; +extern lean_object* l_Lean_mkAppStx___closed__8; +lean_object* l___private_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns___main___closed__1; extern lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__9; +lean_object* l_Lean_Elab_Term_mkFreshTypeMVar(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_31__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Elab_Match_18__collectPatternVars(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_whnf(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__7; +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__4; +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern(lean_object*); +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__6; +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__3; +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__8; extern lean_object* l_IO_FS_Handle_putStrLn___rarg___closed__1; -lean_object* l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__3___boxed(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore___closed__5; -lean_object* l_Lean_Elab_Term_mkMatchAltView___boxed(lean_object*); -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore___closed__3; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main___closed__2; +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_13__processIdAux___closed__4; +lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_elabMatchAltView(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_HasRepr___rarg___closed__1; lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__4; lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore___closed__1; +lean_object* lean_expr_instantiate_rev_range(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Expr_Inhabited___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__6; -lean_object* l___private_Lean_Elab_Match_5__getMatchAlts___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__9; +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main___closed__4; lean_object* l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabMatch(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__2; +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__2; lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(lean_object*); -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore___closed__2; +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__8; +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__2(uint8_t, lean_object*); +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__1; lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); +lean_object* l_List_toStringAux___main___at_Lean_Elab_Term_elabMatchAltView___spec__2___boxed(lean_object*, lean_object*); +extern lean_object* l_Lean_EqnCompiler_matchPatternAttr; +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__17; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__6; +lean_object* l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___closed__1; lean_object* l_Lean_Syntax_copyInfo(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__1; +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main___closed__1; +lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__2; +lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous(lean_object*); +lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__11; +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkMatchAltView(lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__4; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__12; +lean_object* l_Nat_repr(lean_object*); +extern lean_object* l_Lean_MessageData_coeOfArrayExpr___closed__2; +lean_object* l_Lean_Elab_Term_elabMatchAltView___closed__3; lean_object* l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_5__elabMatchOptType(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); lean_object* l_Lean_Elab_Term_expandMacrosInPatterns(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_logTrace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; +lean_object* l_Lean_Syntax_getId(lean_object*); +lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_29__mkNewAlts___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_name_mk_string(lean_object*, lean_object*); +extern lean_object* l_Lean_choiceKind; extern lean_object* l_List_repr___rarg___closed__2; lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1; lean_object* l_Lean_Elab_expandMacros___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_List_reprAux___main___rarg___closed__1; +lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Match_29__mkNewAlts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__6; +lean_object* l___private_Lean_Elab_Match_28__mkNewAlt(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_resolveName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); +uint8_t l_Lean_Name_isAtomic(lean_object*); +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_13__processIdAux(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_withLocalDecl___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_expandMacrosInPatterns___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_toString___at___private_Lean_Elab_Match_6__elabMatchCore___spec__2(lean_object*); +extern lean_object* l_Lean_mkAppStx___closed__6; extern lean_object* l_Lean_Options_empty; +lean_object* l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__2___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore___closed__4; +lean_object* l_List_map___main___at___private_Lean_Elab_Match_13__processIdAux___spec__2(lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_Elab_Match_8__getMatchAlts___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__3; +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__2; +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_22__elabPatterns___closed__2; +lean_object* l_Lean_Meta_mkFreshId___rarg(lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isForall(lean_object*); +lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkFVar(lean_object*); +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); +extern lean_object* l_Lean_Parser_FirstTokens_toStr___closed__3; +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_NameSet_empty; +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__12; +lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore___closed__2; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__11; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__7; +extern lean_object* l_Lean_String_HasQuote___closed__2; +lean_object* l___private_Lean_Elab_Match_22__elabPatterns___closed__1; +lean_object* l___private_Lean_Elab_Match_22__elabPatterns___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_toString___at_Lean_Elab_Term_elabMatchAltView___spec__1(lean_object*); +extern lean_object* l_Lean_Meta_mkEqRefl___closed__2; extern lean_object* l_Lean_Elab_Term_termElabAttribute; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_expandMacrosInPatterns___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_20__withPatternVars___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__2; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_isDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_LocalDecl_type(lean_object*); +lean_object* l_Lean_Elab_Term_elabMatchAltView___closed__4; +lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__5; +lean_object* l___private_Lean_Elab_Match_12__processVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_elabMatchAltView___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__1; +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__3; +extern lean_object* l_Lean_Syntax_inhabited; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__1; -lean_object* l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(lean_object*); +lean_object* l_List_map___main___at_Lean_MessageData_coeOfListExpr___spec__1(lean_object*); +lean_object* l___private_Lean_Elab_Match_10__getNumExplicitCtorParams(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux(lean_object*); +lean_object* l___private_Lean_Elab_Match_20__withPatternVars(lean_object*); lean_object* l_Lean_mkHole(lean_object*); -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore___closed__4; +extern lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; +lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getLocalDecl(lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_15__processId(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_13__processIdAux___closed__3; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__5; +lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_isTermId_x3f(lean_object*, uint8_t); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__2; +uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); lean_object* l_Lean_Syntax_getKind(lean_object*); -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_filterAux___main___at___private_Lean_Elab_Match_5__getMatchAlts___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_13__processIdAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_setOptionFromString___closed__1; +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_TagAttribute_hasTag(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__9; +extern lean_object* l___private_Lean_Meta_EqnCompiler_DepElim_20__processNonVariable___closed__1; extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; +lean_object* l___private_Lean_Elab_Match_13__processIdAux___closed__2; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__8; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__1; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1; +lean_object* l___private_Lean_Elab_Match_13__processIdAux___closed__1; +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___main(lean_object*); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_letIdDecl___closed__2; +extern lean_object* l_Lean_mkAppStx___closed__9; lean_object* l___private_Lean_Elab_Match_4__expandMatchOptType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__2; uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__3(uint8_t, lean_object*); +extern lean_object* l_Lean_TraceState_Inhabited___closed__1; +lean_object* l_Lean_mkTermIdFrom(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__7; +extern lean_object* l_Lean_mkOptionalNode___closed__1; extern lean_object* l_Lean_Parser_Term_matchAlt___closed__2; lean_object* l_Array_toList___rarg(lean_object*); -lean_object* l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___boxed(lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__3; +lean_object* l_List_toString___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__1(lean_object*); +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__16; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__2; lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__4; +lean_object* l_Lean_Elab_Term_elabMatchAltView___closed__1; +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__11; +lean_object* l___private_Lean_Elab_Match_10__getNumExplicitCtorParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkHole___closed__2; -lean_object* l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__10; +lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Match_29__mkNewAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_29__mkNewAlts___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_NameSet_contains(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_29__mkNewAlts(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_mkOptionalNode___closed__2; +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__3; +lean_object* l___private_Lean_Elab_Match_22__elabPatterns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_mod(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_CollectPatternVars_main(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__10; +extern lean_object* l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__5; +extern lean_object* l_Nat_Inhabited; +lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__3; +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__1; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); +uint8_t l_List_isEmpty___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Match_14__processCtor(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_PatternVar_hasToString(lean_object*); +lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore___closed__1; +lean_object* l___private_Lean_Elab_Match_29__mkNewAlts___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__2; lean_object* l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__13; +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__14; +lean_object* l___private_Lean_Elab_Match_7__elabDiscrs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__1; +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__8; +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_toStringAux___main___at_Lean_Elab_Term_elabMatchAltView___spec__2(uint8_t, lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__4; +extern lean_object* l_Lean_Parser_Term_char___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__1; +lean_object* l_Lean_indentExpr(lean_object*); +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__2; +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__4; +lean_object* l___private_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_elabMatchAltView___closed__2; +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__2; +extern lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_Match_7__elabDiscrs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__3; +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__15; +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__2; lean_object* l___private_Lean_Elab_Match_4__expandMatchOptType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__3; +lean_object* l___private_Lean_Elab_Match_12__processVar___closed__9; +extern lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__1; +lean_object* l___private_Lean_Elab_Match_17__collect___main___closed__5; +lean_object* l___private_Lean_Elab_Match_5__elabMatchOptType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__1; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l_monadInhabited___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__6; lean_object* l_Lean_Elab_Term_mkMatchAltView(lean_object* x_1) { _start: { @@ -148,21 +432,13 @@ x_6 = l_Array_empty___closed__1; x_7 = l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(x_5, x_4, x_2, x_6); lean_dec(x_4); x_8 = l_Lean_Syntax_getArg(x_1, x_5); -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_7); -lean_ctor_set(x_9, 1, x_8); +x_9 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_7); +lean_ctor_set(x_9, 2, x_8); return x_9; } } -lean_object* l_Lean_Elab_Term_mkMatchAltView___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Elab_Term_mkMatchAltView(x_1); -lean_dec(x_1); -return x_2; -} -} lean_object* _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1() { _start: { @@ -748,6 +1024,679 @@ lean_dec(x_1); return x_6; } } +lean_object* l___private_Lean_Elab_Match_5__elabMatchOptType(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; uint8_t x_13; +x_5 = lean_unsigned_to_nat(2u); +x_6 = l_Lean_Syntax_getArg(x_1, x_5); +x_7 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_Elab_Term_getEnv___rarg(x_9); +x_11 = lean_ctor_get(x_10, 1); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_14 = lean_ctor_get(x_11, 5); +x_15 = lean_ctor_get(x_3, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_15, 3); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 4); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_environment_main_module(x_12); +x_19 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_8); +lean_ctor_set(x_19, 2, x_16); +lean_ctor_set(x_19, 3, x_17); +x_20 = l___private_Lean_Elab_Match_4__expandMatchOptType(x_1, x_6, x_2, x_19, x_14); +lean_dec(x_19); +lean_dec(x_6); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +lean_ctor_set(x_11, 5, x_22); +x_23 = l_Lean_Elab_Term_elabType(x_21, x_3, x_11); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_24 = lean_ctor_get(x_11, 0); +x_25 = lean_ctor_get(x_11, 1); +x_26 = lean_ctor_get(x_11, 2); +x_27 = lean_ctor_get(x_11, 3); +x_28 = lean_ctor_get(x_11, 4); +x_29 = lean_ctor_get(x_11, 5); +lean_inc(x_29); +lean_inc(x_28); +lean_inc(x_27); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_11); +x_30 = lean_ctor_get(x_3, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_30, 3); +lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 4); +lean_inc(x_32); +lean_dec(x_30); +x_33 = lean_environment_main_module(x_12); +x_34 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_8); +lean_ctor_set(x_34, 2, x_31); +lean_ctor_set(x_34, 3, x_32); +x_35 = l___private_Lean_Elab_Match_4__expandMatchOptType(x_1, x_6, x_2, x_34, x_29); +lean_dec(x_34); +lean_dec(x_6); +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_35, 1); +lean_inc(x_37); +lean_dec(x_35); +x_38 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_38, 0, x_24); +lean_ctor_set(x_38, 1, x_25); +lean_ctor_set(x_38, 2, x_26); +lean_ctor_set(x_38, 3, x_27); +lean_ctor_set(x_38, 4, x_28); +lean_ctor_set(x_38, 5, x_37); +x_39 = l_Lean_Elab_Term_elabType(x_36, x_3, x_38); +return x_39; +} +} +} +lean_object* l___private_Lean_Elab_Match_5__elabMatchOptType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_5__elabMatchOptType(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +lean_object* l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__2(uint8_t x_1, lean_object* x_2) { +_start: +{ +if (x_1 == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = l_String_splitAux___main___closed__1; +return x_3; +} +else +{ +lean_object* x_4; lean_object* 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_object* x_14; lean_object* x_15; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_2, 1); +lean_inc(x_5); +lean_dec(x_2); +x_6 = lean_box(0); +x_7 = 0; +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_Syntax_formatStxAux___main(x_6, x_7, x_8, x_4); +x_10 = l_Lean_Options_empty; +x_11 = l_Lean_Format_pretty(x_9, x_10); +x_12 = l_List_reprAux___main___rarg___closed__1; +x_13 = lean_string_append(x_12, x_11); +lean_dec(x_11); +x_14 = l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__2(x_1, x_5); +x_15 = lean_string_append(x_13, x_14); +lean_dec(x_14); +return x_15; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_16; +x_16 = l_String_splitAux___main___closed__1; +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_17 = lean_ctor_get(x_2, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_2, 1); +lean_inc(x_18); +lean_dec(x_2); +x_19 = lean_box(0); +x_20 = 0; +x_21 = lean_unsigned_to_nat(0u); +x_22 = l_Lean_Syntax_formatStxAux___main(x_19, x_20, x_21, x_17); +x_23 = l_Lean_Options_empty; +x_24 = l_Lean_Format_pretty(x_22, x_23); +x_25 = l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__2(x_20, x_18); +x_26 = lean_string_append(x_24, x_25); +lean_dec(x_25); +return x_26; +} +} +} +} +lean_object* l_List_toString___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__1(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_List_repr___rarg___closed__1; +return x_2; +} +else +{ +uint8_t x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_3 = 1; +x_4 = l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__2(x_3, x_1); +x_5 = l_List_repr___rarg___closed__2; +x_6 = lean_string_append(x_5, x_4); +lean_dec(x_4); +x_7 = l_List_repr___rarg___closed__3; +x_8 = lean_string_append(x_6, x_7); +return x_8; +} +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid result type provided to match-expression"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("expected type"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__4; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__5; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid type provided to match-expression, function type with arity #"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__7; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__8; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" expected"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__10; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__11; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_array_get_size(x_2); +x_10 = lean_nat_dec_lt(x_4, x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_4); +lean_inc(x_7); +lean_inc(x_3); +lean_inc(x_5); +x_11 = l_Lean_Elab_Term_isDefEq(x_1, x_5, x_3, x_7, x_8); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_unbox(x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; 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; uint8_t x_27; +lean_dec(x_6); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_15, 0, x_5); +x_16 = l_Lean_indentExpr(x_15); +x_17 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__3; +x_18 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +x_19 = l_Lean_MessageData_ofList___closed__3; +x_20 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__6; +x_22 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_23, 0, x_3); +x_24 = l_Lean_indentExpr(x_23); +x_25 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_25, 0, x_22); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Lean_Elab_Term_throwError___rarg(x_1, x_25, x_7, x_14); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +return x_26; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +else +{ +uint8_t x_31; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +x_31 = !lean_is_exclusive(x_11); +if (x_31 == 0) +{ +lean_object* x_32; +x_32 = lean_ctor_get(x_11, 0); +lean_dec(x_32); +lean_ctor_set(x_11, 0, x_6); +return x_11; +} +else +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_11, 1); +lean_inc(x_33); +lean_dec(x_11); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_6); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +else +{ +uint8_t x_35; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_35 = !lean_is_exclusive(x_11); +if (x_35 == 0) +{ +return x_11; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_11, 0); +x_37 = lean_ctor_get(x_11, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_11); +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; +} +} +} +else +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_array_fget(x_2, x_4); +lean_inc(x_7); +x_40 = l_Lean_Elab_Term_whnf(x_1, x_5, x_7, x_8); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_40, 1); +lean_inc(x_42); +lean_dec(x_40); +if (lean_obj_tag(x_41) == 7) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; +x_56 = lean_ctor_get(x_41, 1); +lean_inc(x_56); +x_57 = lean_ctor_get(x_41, 2); +lean_inc(x_57); +lean_dec(x_41); +x_58 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_58, 0, x_56); +x_59 = 1; +lean_inc(x_7); +lean_inc(x_39); +lean_inc(x_58); +x_60 = l_Lean_Elab_Term_elabTermAux___main(x_58, x_59, x_59, x_39, x_7, x_42); +if (lean_obj_tag(x_60) == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 1); +lean_inc(x_62); +lean_dec(x_60); +lean_inc(x_7); +x_63 = l_Lean_Elab_Term_ensureHasType(x_39, x_58, x_61, x_7, x_62); +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; +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_unsigned_to_nat(1u); +x_67 = lean_nat_add(x_4, x_66); +lean_dec(x_4); +x_68 = lean_expr_instantiate1(x_57, x_64); +lean_dec(x_57); +x_69 = lean_array_push(x_6, x_64); +x_4 = x_67; +x_5 = x_68; +x_6 = x_69; +x_8 = x_65; +goto _start; +} +else +{ +uint8_t x_71; +lean_dec(x_57); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_71 = !lean_is_exclusive(x_63); +if (x_71 == 0) +{ +return x_63; +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_63, 0); +x_73 = lean_ctor_get(x_63, 1); +lean_inc(x_73); +lean_inc(x_72); +lean_dec(x_63); +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; +} +} +} +else +{ +uint8_t x_75; +lean_dec(x_58); +lean_dec(x_57); +lean_dec(x_39); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_75 = !lean_is_exclusive(x_60); +if (x_75 == 0) +{ +return x_60; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_60, 0); +x_77 = lean_ctor_get(x_60, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_60); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +return x_78; +} +} +} +else +{ +lean_object* x_79; +lean_dec(x_41); +lean_dec(x_39); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_79 = lean_box(0); +x_43 = x_79; +goto block_55; +} +block_55: +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +lean_dec(x_43); +x_44 = l_Array_toList___rarg(x_2); +x_45 = l_List_toString___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__1(x_44); +x_46 = l_Array_HasRepr___rarg___closed__1; +x_47 = lean_string_append(x_46, x_45); +lean_dec(x_45); +x_48 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_48, 0, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +x_50 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__9; +x_51 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__12; +x_53 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = l_Lean_Elab_Term_throwError___rarg(x_1, x_53, x_7, x_42); +return x_54; +} +} +else +{ +uint8_t x_80; +lean_dec(x_39); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_80 = !lean_is_exclusive(x_40); +if (x_80 == 0) +{ +return x_40; +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_81 = lean_ctor_get(x_40, 0); +x_82 = lean_ctor_get(x_40, 1); +lean_inc(x_82); +lean_inc(x_81); +lean_dec(x_40); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_81); +lean_ctor_set(x_83, 1, x_82); +return x_83; +} +} +} +} +} +lean_object* l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = lean_unbox(x_1); +lean_dec(x_1); +x_4 = l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__2(x_3, x_2); +return x_4; +} +} +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_2); +lean_dec(x_1); +return x_9; +} +} +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +lean_object* l___private_Lean_Elab_Match_6__elabDiscrsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Elab_Match_6__elabDiscrsAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_2); +lean_dec(x_1); +return x_9; +} +} +lean_object* l___private_Lean_Elab_Match_7__elabDiscrs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_unsigned_to_nat(0u); +x_8 = l_Array_empty___closed__1; +x_9 = l___private_Lean_Elab_Match_6__elabDiscrsAux___main(x_1, x_2, x_4, x_7, x_3, x_8, x_5, x_6); +return x_9; +} +} +lean_object* l___private_Lean_Elab_Match_7__elabDiscrs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Elab_Match_7__elabDiscrs(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_expandMacrosInPatterns___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -853,347 +1802,353 @@ x_21 = x_10; x_22 = !lean_is_exclusive(x_21); if (x_22 == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; x_23 = lean_ctor_get(x_21, 0); x_24 = lean_ctor_get(x_21, 1); -x_25 = x_23; +x_25 = lean_ctor_get(x_21, 2); +x_26 = x_24; lean_inc(x_1); -x_26 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_expandMacrosInPatterns___spec__1), 5, 3); -lean_closure_set(x_26, 0, x_1); -lean_closure_set(x_26, 1, x_11); -lean_closure_set(x_26, 2, x_25); -x_27 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5); -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_27, 1); +x_27 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_expandMacrosInPatterns___spec__1), 5, 3); +lean_closure_set(x_27, 0, x_1); +lean_closure_set(x_27, 1, x_11); +lean_closure_set(x_27, 2, x_26); +x_28 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_27); -x_30 = l_Lean_Elab_Term_getEnv___rarg(x_29); -x_31 = lean_ctor_get(x_30, 1); -lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 0); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec(x_28); +x_31 = l_Lean_Elab_Term_getEnv___rarg(x_30); +x_32 = lean_ctor_get(x_31, 1); lean_inc(x_32); -lean_dec(x_30); x_33 = lean_ctor_get(x_31, 0); lean_inc(x_33); -x_34 = lean_ctor_get(x_31, 1); -lean_inc(x_34); -x_35 = lean_ctor_get(x_31, 2); -lean_inc(x_35); -x_36 = lean_ctor_get(x_31, 3); -lean_inc(x_36); -x_37 = lean_ctor_get(x_31, 4); -lean_inc(x_37); -x_38 = lean_ctor_get(x_31, 5); -lean_inc(x_38); -x_39 = lean_ctor_get(x_4, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_39, 3); -lean_inc(x_40); -x_41 = lean_ctor_get(x_39, 4); -lean_inc(x_41); -lean_dec(x_39); -x_42 = lean_environment_main_module(x_32); -x_43 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_28); -lean_ctor_set(x_43, 2, x_40); -lean_ctor_set(x_43, 3, x_41); -x_44 = x_26; -x_45 = lean_apply_2(x_44, x_43, x_38); -if (lean_obj_tag(x_45) == 0) -{ -uint8_t x_46; -x_46 = !lean_is_exclusive(x_31); -if (x_46 == 0) -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_47 = lean_ctor_get(x_31, 5); -lean_dec(x_47); -x_48 = lean_ctor_get(x_31, 4); -lean_dec(x_48); -x_49 = lean_ctor_get(x_31, 3); -lean_dec(x_49); -x_50 = lean_ctor_get(x_31, 2); -lean_dec(x_50); -x_51 = lean_ctor_get(x_31, 1); -lean_dec(x_51); -x_52 = lean_ctor_get(x_31, 0); -lean_dec(x_52); -x_53 = lean_ctor_get(x_45, 0); -lean_inc(x_53); -x_54 = lean_ctor_get(x_45, 1); -lean_inc(x_54); -lean_dec(x_45); -lean_ctor_set(x_31, 5, x_54); -lean_ctor_set(x_21, 0, x_53); -x_13 = x_21; -x_14 = x_31; -goto block_20; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_dec(x_31); -x_55 = lean_ctor_get(x_45, 0); +x_34 = lean_ctor_get(x_32, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_32, 1); +lean_inc(x_35); +x_36 = lean_ctor_get(x_32, 2); +lean_inc(x_36); +x_37 = lean_ctor_get(x_32, 3); +lean_inc(x_37); +x_38 = lean_ctor_get(x_32, 4); +lean_inc(x_38); +x_39 = lean_ctor_get(x_32, 5); +lean_inc(x_39); +x_40 = lean_ctor_get(x_4, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_40, 3); +lean_inc(x_41); +x_42 = lean_ctor_get(x_40, 4); +lean_inc(x_42); +lean_dec(x_40); +x_43 = lean_environment_main_module(x_33); +x_44 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_29); +lean_ctor_set(x_44, 2, x_41); +lean_ctor_set(x_44, 3, x_42); +x_45 = x_27; +x_46 = lean_apply_2(x_45, x_44, x_39); +if (lean_obj_tag(x_46) == 0) +{ +uint8_t x_47; +x_47 = !lean_is_exclusive(x_32); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_48 = lean_ctor_get(x_32, 5); +lean_dec(x_48); +x_49 = lean_ctor_get(x_32, 4); +lean_dec(x_49); +x_50 = lean_ctor_get(x_32, 3); +lean_dec(x_50); +x_51 = lean_ctor_get(x_32, 2); +lean_dec(x_51); +x_52 = lean_ctor_get(x_32, 1); +lean_dec(x_52); +x_53 = lean_ctor_get(x_32, 0); +lean_dec(x_53); +x_54 = lean_ctor_get(x_46, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_46, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_45, 1); -lean_inc(x_56); -lean_dec(x_45); -x_57 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_57, 0, x_33); -lean_ctor_set(x_57, 1, x_34); -lean_ctor_set(x_57, 2, x_35); -lean_ctor_set(x_57, 3, x_36); -lean_ctor_set(x_57, 4, x_37); -lean_ctor_set(x_57, 5, x_56); -lean_ctor_set(x_21, 0, x_55); +lean_dec(x_46); +lean_ctor_set(x_32, 5, x_55); +lean_ctor_set(x_21, 1, x_54); x_13 = x_21; -x_14 = x_57; +x_14 = x_32; +goto block_20; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +lean_dec(x_32); +x_56 = lean_ctor_get(x_46, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_46, 1); +lean_inc(x_57); +lean_dec(x_46); +x_58 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_58, 0, x_34); +lean_ctor_set(x_58, 1, x_35); +lean_ctor_set(x_58, 2, x_36); +lean_ctor_set(x_58, 3, x_37); +lean_ctor_set(x_58, 4, x_38); +lean_ctor_set(x_58, 5, x_57); +lean_ctor_set(x_21, 1, x_56); +x_13 = x_21; +x_14 = x_58; goto block_20; } } else { -lean_object* x_58; +lean_object* x_59; +lean_dec(x_38); lean_dec(x_37); lean_dec(x_36); lean_dec(x_35); lean_dec(x_34); -lean_dec(x_33); lean_free_object(x_21); -lean_dec(x_24); +lean_dec(x_25); +lean_dec(x_23); lean_dec(x_12); lean_dec(x_2); lean_dec(x_1); -x_58 = lean_ctor_get(x_45, 0); -lean_inc(x_58); -lean_dec(x_45); -if (lean_obj_tag(x_58) == 0) -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; -x_59 = lean_ctor_get(x_58, 0); +x_59 = lean_ctor_get(x_46, 0); lean_inc(x_59); -x_60 = lean_ctor_get(x_58, 1); +lean_dec(x_46); +if (lean_obj_tag(x_59) == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; uint8_t x_65; +x_60 = lean_ctor_get(x_59, 0); lean_inc(x_60); -lean_dec(x_58); -x_61 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_61, 0, x_60); -x_62 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_62, 0, x_61); -x_63 = l_Lean_Elab_Term_throwError___rarg(x_59, x_62, x_4, x_31); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); lean_dec(x_59); -x_64 = !lean_is_exclusive(x_63); -if (x_64 == 0) +x_62 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_62, 0, x_61); +x_63 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_63, 0, x_62); +x_64 = l_Lean_Elab_Term_throwError___rarg(x_60, x_63, x_4, x_32); +lean_dec(x_60); +x_65 = !lean_is_exclusive(x_64); +if (x_65 == 0) { -return x_63; +return x_64; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_63, 0); -x_66 = lean_ctor_get(x_63, 1); +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_64, 0); +x_67 = lean_ctor_get(x_64, 1); +lean_inc(x_67); lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_63); -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -return x_67; -} -} -else -{ -lean_object* x_68; uint8_t x_69; -lean_dec(x_4); -x_68 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_31); -x_69 = !lean_is_exclusive(x_68); -if (x_69 == 0) -{ +lean_dec(x_64); +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_66); +lean_ctor_set(x_68, 1, x_67); return x_68; } +} else { -lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_70 = lean_ctor_get(x_68, 0); -x_71 = lean_ctor_get(x_68, 1); +lean_object* x_69; uint8_t x_70; +lean_dec(x_4); +x_69 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_32); +x_70 = !lean_is_exclusive(x_69); +if (x_70 == 0) +{ +return x_69; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_69, 0); +x_72 = lean_ctor_get(x_69, 1); +lean_inc(x_72); lean_inc(x_71); -lean_inc(x_70); -lean_dec(x_68); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); -return x_72; +lean_dec(x_69); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +return x_73; } } } } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_73 = lean_ctor_get(x_21, 0); -x_74 = lean_ctor_get(x_21, 1); +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_74 = lean_ctor_get(x_21, 0); +x_75 = lean_ctor_get(x_21, 1); +x_76 = lean_ctor_get(x_21, 2); +lean_inc(x_76); +lean_inc(x_75); lean_inc(x_74); -lean_inc(x_73); lean_dec(x_21); -x_75 = x_73; +x_77 = x_75; lean_inc(x_1); -x_76 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_expandMacrosInPatterns___spec__1), 5, 3); -lean_closure_set(x_76, 0, x_1); -lean_closure_set(x_76, 1, x_11); -lean_closure_set(x_76, 2, x_75); -x_77 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5); -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); -lean_inc(x_79); -lean_dec(x_77); -x_80 = l_Lean_Elab_Term_getEnv___rarg(x_79); -x_81 = lean_ctor_get(x_80, 1); +x_78 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_expandMacrosInPatterns___spec__1), 5, 3); +lean_closure_set(x_78, 0, x_1); +lean_closure_set(x_78, 1, x_11); +lean_closure_set(x_78, 2, x_77); +x_79 = l_Lean_Elab_Term_getCurrMacroScope(x_4, x_5); +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_79, 1); lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 0); -lean_inc(x_82); -lean_dec(x_80); -x_83 = lean_ctor_get(x_81, 0); +lean_dec(x_79); +x_82 = l_Lean_Elab_Term_getEnv___rarg(x_81); +x_83 = lean_ctor_get(x_82, 1); lean_inc(x_83); -x_84 = lean_ctor_get(x_81, 1); +x_84 = lean_ctor_get(x_82, 0); lean_inc(x_84); -x_85 = lean_ctor_get(x_81, 2); +lean_dec(x_82); +x_85 = lean_ctor_get(x_83, 0); lean_inc(x_85); -x_86 = lean_ctor_get(x_81, 3); +x_86 = lean_ctor_get(x_83, 1); lean_inc(x_86); -x_87 = lean_ctor_get(x_81, 4); +x_87 = lean_ctor_get(x_83, 2); lean_inc(x_87); -x_88 = lean_ctor_get(x_81, 5); +x_88 = lean_ctor_get(x_83, 3); lean_inc(x_88); -x_89 = lean_ctor_get(x_4, 0); +x_89 = lean_ctor_get(x_83, 4); lean_inc(x_89); -x_90 = lean_ctor_get(x_89, 3); +x_90 = lean_ctor_get(x_83, 5); lean_inc(x_90); -x_91 = lean_ctor_get(x_89, 4); +x_91 = lean_ctor_get(x_4, 0); lean_inc(x_91); -lean_dec(x_89); -x_92 = lean_environment_main_module(x_82); -x_93 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_78); -lean_ctor_set(x_93, 2, x_90); -lean_ctor_set(x_93, 3, x_91); -x_94 = x_76; -x_95 = lean_apply_2(x_94, x_93, x_88); -if (lean_obj_tag(x_95) == 0) +x_92 = lean_ctor_get(x_91, 3); +lean_inc(x_92); +x_93 = lean_ctor_get(x_91, 4); +lean_inc(x_93); +lean_dec(x_91); +x_94 = lean_environment_main_module(x_84); +x_95 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_80); +lean_ctor_set(x_95, 2, x_92); +lean_ctor_set(x_95, 3, x_93); +x_96 = x_78; +x_97 = lean_apply_2(x_96, x_95, x_90); +if (lean_obj_tag(x_97) == 0) { -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -if (lean_is_exclusive(x_81)) { - lean_ctor_release(x_81, 0); - lean_ctor_release(x_81, 1); - lean_ctor_release(x_81, 2); - lean_ctor_release(x_81, 3); - lean_ctor_release(x_81, 4); - lean_ctor_release(x_81, 5); - x_96 = x_81; +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + lean_ctor_release(x_83, 2); + lean_ctor_release(x_83, 3); + lean_ctor_release(x_83, 4); + lean_ctor_release(x_83, 5); + x_98 = x_83; } else { - lean_dec_ref(x_81); - x_96 = lean_box(0); + lean_dec_ref(x_83); + x_98 = lean_box(0); } -x_97 = lean_ctor_get(x_95, 0); -lean_inc(x_97); -x_98 = lean_ctor_get(x_95, 1); -lean_inc(x_98); -lean_dec(x_95); -if (lean_is_scalar(x_96)) { - x_99 = lean_alloc_ctor(0, 6, 0); +x_99 = lean_ctor_get(x_97, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_97, 1); +lean_inc(x_100); +lean_dec(x_97); +if (lean_is_scalar(x_98)) { + x_101 = lean_alloc_ctor(0, 6, 0); } else { - x_99 = x_96; + x_101 = x_98; } -lean_ctor_set(x_99, 0, x_83); -lean_ctor_set(x_99, 1, x_84); -lean_ctor_set(x_99, 2, x_85); -lean_ctor_set(x_99, 3, x_86); -lean_ctor_set(x_99, 4, x_87); -lean_ctor_set(x_99, 5, x_98); -x_100 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_100, 0, x_97); -lean_ctor_set(x_100, 1, x_74); -x_13 = x_100; -x_14 = x_99; +lean_ctor_set(x_101, 0, x_85); +lean_ctor_set(x_101, 1, x_86); +lean_ctor_set(x_101, 2, x_87); +lean_ctor_set(x_101, 3, x_88); +lean_ctor_set(x_101, 4, x_89); +lean_ctor_set(x_101, 5, x_100); +x_102 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_102, 0, x_74); +lean_ctor_set(x_102, 1, x_99); +lean_ctor_set(x_102, 2, x_76); +x_13 = x_102; +x_14 = x_101; goto block_20; } else { -lean_object* x_101; +lean_object* x_103; +lean_dec(x_89); +lean_dec(x_88); lean_dec(x_87); lean_dec(x_86); lean_dec(x_85); -lean_dec(x_84); -lean_dec(x_83); +lean_dec(x_76); lean_dec(x_74); lean_dec(x_12); lean_dec(x_2); lean_dec(x_1); -x_101 = lean_ctor_get(x_95, 0); -lean_inc(x_101); -lean_dec(x_95); -if (lean_obj_tag(x_101) == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_102 = lean_ctor_get(x_101, 0); -lean_inc(x_102); -x_103 = lean_ctor_get(x_101, 1); +x_103 = lean_ctor_get(x_97, 0); lean_inc(x_103); -lean_dec(x_101); -x_104 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_104, 0, x_103); -x_105 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_105, 0, x_104); -x_106 = l_Lean_Elab_Term_throwError___rarg(x_102, x_105, x_4, x_81); -lean_dec(x_102); -x_107 = lean_ctor_get(x_106, 0); -lean_inc(x_107); -x_108 = lean_ctor_get(x_106, 1); -lean_inc(x_108); -if (lean_is_exclusive(x_106)) { - lean_ctor_release(x_106, 0); - lean_ctor_release(x_106, 1); - x_109 = x_106; +lean_dec(x_97); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec(x_103); +x_106 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_106, 0, x_105); +x_107 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_107, 0, x_106); +x_108 = l_Lean_Elab_Term_throwError___rarg(x_104, x_107, x_4, x_83); +lean_dec(x_104); +x_109 = lean_ctor_get(x_108, 0); +lean_inc(x_109); +x_110 = lean_ctor_get(x_108, 1); +lean_inc(x_110); +if (lean_is_exclusive(x_108)) { + lean_ctor_release(x_108, 0); + lean_ctor_release(x_108, 1); + x_111 = x_108; } else { - lean_dec_ref(x_106); - x_109 = lean_box(0); + lean_dec_ref(x_108); + x_111 = lean_box(0); } -if (lean_is_scalar(x_109)) { - x_110 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_111)) { + x_112 = lean_alloc_ctor(1, 2, 0); } else { - x_110 = x_109; + x_112 = x_111; } -lean_ctor_set(x_110, 0, x_107); -lean_ctor_set(x_110, 1, x_108); -return x_110; +lean_ctor_set(x_112, 0, x_109); +lean_ctor_set(x_112, 1, x_110); +return x_112; } else { -lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_dec(x_4); -x_111 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_81); -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -x_113 = lean_ctor_get(x_111, 1); -lean_inc(x_113); -if (lean_is_exclusive(x_111)) { - lean_ctor_release(x_111, 0); - lean_ctor_release(x_111, 1); - x_114 = x_111; +x_113 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_83); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +if (lean_is_exclusive(x_113)) { + lean_ctor_release(x_113, 0); + lean_ctor_release(x_113, 1); + x_116 = x_113; } else { - lean_dec_ref(x_111); - x_114 = lean_box(0); + lean_dec_ref(x_113); + x_116 = lean_box(0); } -if (lean_is_scalar(x_114)) { - x_115 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_116)) { + x_117 = lean_alloc_ctor(1, 2, 0); } else { - x_115 = x_114; + x_117 = x_116; } -lean_ctor_set(x_115, 0, x_112); -lean_ctor_set(x_115, 1, x_113); -return x_115; +lean_ctor_set(x_117, 0, x_114); +lean_ctor_set(x_117, 1, x_115); +return x_117; } } } @@ -1234,7 +2189,7 @@ x_11 = lean_apply_2(x_10, x_2, x_6); return x_11; } } -lean_object* l_Array_filterAux___main___at___private_Lean_Elab_Match_5__getMatchAlts___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_filterAux___main___at___private_Lean_Elab_Match_8__getMatchAlts___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1300,7 +2255,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_5__getMatchAlts___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_8__getMatchAlts___spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -1322,7 +2277,6 @@ x_7 = lean_unsigned_to_nat(0u); x_8 = lean_array_fset(x_2, x_1, x_7); x_9 = x_6; x_10 = l_Lean_Elab_Term_mkMatchAltView(x_9); -lean_dec(x_9); x_11 = lean_unsigned_to_nat(1u); x_12 = lean_nat_add(x_1, x_11); x_13 = x_10; @@ -1334,7 +2288,7 @@ goto _start; } } } -lean_object* l___private_Lean_Elab_Match_5__getMatchAlts(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Match_8__getMatchAlts(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -1343,23 +2297,15465 @@ x_3 = l_Lean_Syntax_getArg(x_1, x_2); x_4 = l_Lean_Syntax_getArgs(x_3); lean_dec(x_3); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_filterAux___main___at___private_Lean_Elab_Match_5__getMatchAlts___spec__1(x_4, x_5, x_5); +x_6 = l_Array_filterAux___main___at___private_Lean_Elab_Match_8__getMatchAlts___spec__1(x_4, x_5, x_5); x_7 = x_6; -x_8 = l_Array_umapMAux___main___at___private_Lean_Elab_Match_5__getMatchAlts___spec__2(x_5, x_7); +x_8 = l_Array_umapMAux___main___at___private_Lean_Elab_Match_8__getMatchAlts___spec__2(x_5, x_7); x_9 = x_8; return x_9; } } -lean_object* l___private_Lean_Elab_Match_5__getMatchAlts___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Match_8__getMatchAlts___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Lean_Elab_Match_5__getMatchAlts(x_1); +x_2 = l___private_Lean_Elab_Match_8__getMatchAlts(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Elab_Term_PatternVar_hasToString(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +lean_dec(x_1); +x_3 = l_Lean_Name_toString___closed__1; +x_4 = l_Lean_Name_toStringWithSep___main(x_3, x_2); +return x_4; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec(x_1); +x_6 = l_Lean_Name_toString___closed__1; +x_7 = l_Lean_Name_toStringWithSep___main(x_6, x_5); +x_8 = l_Lean_Parser_FirstTokens_toStr___closed__3; +x_9 = lean_string_append(x_8, x_7); +lean_dec(x_7); +return x_9; +} +} +} +lean_object* _init_l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid pattern, constructor or constant marked with '[matchPattern]' expected"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected___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; uint8_t x_7; +x_5 = l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__3; +x_6 = l_Lean_Elab_Term_throwError___rarg(x_1, x_5, x_3, x_4); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +return x_6; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_6, 0); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_9); +lean_inc(x_8); +lean_dec(x_6); +x_10 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_10, 0, x_8); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +} +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___boxed), 4, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_9__throwCtorExpected___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___private_Lean_Elab_Match_9__throwCtorExpected___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_get_size(x_2); +x_8 = lean_nat_dec_lt(x_3, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec(x_5); +lean_dec(x_3); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_4); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_array_fget(x_2, x_3); +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_add(x_3, x_11); +lean_dec(x_3); +x_13 = l_Lean_Expr_fvarId_x21(x_10); +lean_dec(x_10); +lean_inc(x_5); +x_14 = l_Lean_Meta_getLocalDecl(x_13, x_5, x_6); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; uint8_t x_18; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = l_Lean_LocalDecl_binderInfo(x_15); +lean_dec(x_15); +x_18 = l_Lean_BinderInfo_isExplicit(x_17); +if (x_18 == 0) +{ +x_3 = x_12; +x_6 = x_16; +goto _start; +} +else +{ +lean_object* x_20; +x_20 = lean_nat_add(x_4, x_11); +lean_dec(x_4); +x_3 = x_12; +x_4 = x_20; +x_6 = x_16; +goto _start; +} +} +else +{ +uint8_t x_22; +lean_dec(x_12); +lean_dec(x_5); +lean_dec(x_4); +x_22 = !lean_is_exclusive(x_14); +if (x_22 == 0) +{ +return x_14; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_14, 0); +x_24 = lean_ctor_get(x_14, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_14); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +} +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_2); +x_7 = lean_nat_dec_lt(x_3, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_3); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1(x_1, x_1, x_8, x_8, x_4, x_5); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_array_fget(x_2, x_3); +lean_inc(x_4); +x_11 = l_Lean_Meta_getFVarLocalDecl(x_10, x_4, x_5); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +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_Lean_LocalDecl_type(x_12); +lean_dec(x_12); +lean_inc(x_4); +lean_inc(x_14); +x_15 = l_Lean_Meta_isClassQuick___main(x_14, x_4, x_13); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +switch (lean_obj_tag(x_16)) { +case 0: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_dec(x_14); +lean_dec(x_10); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_add(x_3, x_18); +lean_dec(x_3); +x_3 = x_19; +x_5 = x_17; +goto _start; +} +case 1: +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +lean_dec(x_14); +x_21 = lean_ctor_get(x_15, 1); +lean_inc(x_21); +if (lean_is_exclusive(x_15)) { + lean_ctor_release(x_15, 0); + lean_ctor_release(x_15, 1); + x_22 = x_15; +} else { + lean_dec_ref(x_15); + x_22 = lean_box(0); +} +x_23 = lean_ctor_get(x_16, 0); +lean_inc(x_23); +lean_dec(x_16); +x_24 = lean_unsigned_to_nat(1u); +x_25 = lean_nat_add(x_3, x_24); +lean_dec(x_3); +x_26 = !lean_is_exclusive(x_21); +if (x_26 == 0) +{ +lean_object* x_27; uint8_t x_28; +x_27 = lean_ctor_get(x_21, 2); +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_85; uint8_t x_86; +x_29 = lean_ctor_get(x_27, 2); +x_85 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +lean_ctor_set(x_27, 2, x_85); +x_86 = !lean_is_exclusive(x_4); +if (x_86 == 0) +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_87 = lean_ctor_get(x_4, 2); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_23); +lean_ctor_set(x_88, 1, x_10); +x_89 = lean_array_push(x_87, x_88); +lean_ctor_set(x_4, 2, x_89); +x_90 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_25, x_4, x_21); +if (lean_obj_tag(x_90) == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_90, 1); +lean_inc(x_92); +lean_dec(x_90); +x_93 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_93, 0, x_91); +x_30 = x_93; +x_31 = x_92; +goto block_84; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_90, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_90, 1); +lean_inc(x_95); +lean_dec(x_90); +x_96 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_96, 0, x_94); +x_30 = x_96; +x_31 = x_95; +goto block_84; +} +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_97 = lean_ctor_get(x_4, 0); +x_98 = lean_ctor_get(x_4, 1); +x_99 = lean_ctor_get(x_4, 2); +x_100 = lean_ctor_get(x_4, 3); +x_101 = lean_ctor_get(x_4, 4); +lean_inc(x_101); +lean_inc(x_100); +lean_inc(x_99); +lean_inc(x_98); +lean_inc(x_97); +lean_dec(x_4); +x_102 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_102, 0, x_23); +lean_ctor_set(x_102, 1, x_10); +x_103 = lean_array_push(x_99, x_102); +x_104 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_104, 0, x_97); +lean_ctor_set(x_104, 1, x_98); +lean_ctor_set(x_104, 2, x_103); +lean_ctor_set(x_104, 3, x_100); +lean_ctor_set(x_104, 4, x_101); +x_105 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_25, x_104, x_21); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; +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 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_106); +x_30 = x_108; +x_31 = x_107; +goto block_84; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_105, 0); +lean_inc(x_109); +x_110 = lean_ctor_get(x_105, 1); +lean_inc(x_110); +lean_dec(x_105); +x_111 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_111, 0, x_109); +x_30 = x_111; +x_31 = x_110; +goto block_84; +} +} +block_84: +{ +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_ctor_get(x_31, 2); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 0); +lean_inc(x_33); +lean_dec(x_30); +x_34 = !lean_is_exclusive(x_31); +if (x_34 == 0) +{ +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_31, 2); +lean_dec(x_35); +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_32, 2); +lean_dec(x_37); +lean_ctor_set(x_32, 2, x_29); +if (lean_is_scalar(x_22)) { + x_38 = lean_alloc_ctor(1, 2, 0); +} else { + x_38 = x_22; + lean_ctor_set_tag(x_38, 1); +} +lean_ctor_set(x_38, 0, x_33); +lean_ctor_set(x_38, 1, x_31); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_39 = lean_ctor_get(x_32, 0); +x_40 = lean_ctor_get(x_32, 1); +x_41 = lean_ctor_get(x_32, 3); +x_42 = lean_ctor_get(x_32, 4); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_32); +x_43 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_43, 0, x_39); +lean_ctor_set(x_43, 1, x_40); +lean_ctor_set(x_43, 2, x_29); +lean_ctor_set(x_43, 3, x_41); +lean_ctor_set(x_43, 4, x_42); +lean_ctor_set(x_31, 2, x_43); +if (lean_is_scalar(x_22)) { + x_44 = lean_alloc_ctor(1, 2, 0); +} else { + x_44 = x_22; + lean_ctor_set_tag(x_44, 1); +} +lean_ctor_set(x_44, 0, x_33); +lean_ctor_set(x_44, 1, x_31); +return x_44; +} +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_45 = lean_ctor_get(x_31, 0); +x_46 = lean_ctor_get(x_31, 1); +x_47 = lean_ctor_get(x_31, 3); +x_48 = lean_ctor_get(x_31, 4); +x_49 = lean_ctor_get(x_31, 5); +lean_inc(x_49); +lean_inc(x_48); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_31); +x_50 = lean_ctor_get(x_32, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_32, 1); +lean_inc(x_51); +x_52 = lean_ctor_get(x_32, 3); +lean_inc(x_52); +x_53 = lean_ctor_get(x_32, 4); +lean_inc(x_53); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + lean_ctor_release(x_32, 3); + lean_ctor_release(x_32, 4); + x_54 = x_32; +} else { + lean_dec_ref(x_32); + x_54 = lean_box(0); +} +if (lean_is_scalar(x_54)) { + x_55 = lean_alloc_ctor(0, 5, 0); +} else { + x_55 = x_54; +} +lean_ctor_set(x_55, 0, x_50); +lean_ctor_set(x_55, 1, x_51); +lean_ctor_set(x_55, 2, x_29); +lean_ctor_set(x_55, 3, x_52); +lean_ctor_set(x_55, 4, x_53); +x_56 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_56, 0, x_45); +lean_ctor_set(x_56, 1, x_46); +lean_ctor_set(x_56, 2, x_55); +lean_ctor_set(x_56, 3, x_47); +lean_ctor_set(x_56, 4, x_48); +lean_ctor_set(x_56, 5, x_49); +if (lean_is_scalar(x_22)) { + x_57 = lean_alloc_ctor(1, 2, 0); +} else { + x_57 = x_22; + lean_ctor_set_tag(x_57, 1); +} +lean_ctor_set(x_57, 0, x_33); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +else +{ +lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_58 = lean_ctor_get(x_31, 2); +lean_inc(x_58); +x_59 = lean_ctor_get(x_30, 0); +lean_inc(x_59); +lean_dec(x_30); +x_60 = !lean_is_exclusive(x_31); +if (x_60 == 0) +{ +lean_object* x_61; uint8_t x_62; +x_61 = lean_ctor_get(x_31, 2); +lean_dec(x_61); +x_62 = !lean_is_exclusive(x_58); +if (x_62 == 0) +{ +lean_object* x_63; lean_object* x_64; +x_63 = lean_ctor_get(x_58, 2); +lean_dec(x_63); +lean_ctor_set(x_58, 2, x_29); +if (lean_is_scalar(x_22)) { + x_64 = lean_alloc_ctor(0, 2, 0); +} else { + x_64 = x_22; +} +lean_ctor_set(x_64, 0, x_59); +lean_ctor_set(x_64, 1, x_31); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_65 = lean_ctor_get(x_58, 0); +x_66 = lean_ctor_get(x_58, 1); +x_67 = lean_ctor_get(x_58, 3); +x_68 = lean_ctor_get(x_58, 4); +lean_inc(x_68); +lean_inc(x_67); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_58); +x_69 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_66); +lean_ctor_set(x_69, 2, x_29); +lean_ctor_set(x_69, 3, x_67); +lean_ctor_set(x_69, 4, x_68); +lean_ctor_set(x_31, 2, x_69); +if (lean_is_scalar(x_22)) { + x_70 = lean_alloc_ctor(0, 2, 0); +} else { + x_70 = x_22; +} +lean_ctor_set(x_70, 0, x_59); +lean_ctor_set(x_70, 1, x_31); +return x_70; +} +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_71 = lean_ctor_get(x_31, 0); +x_72 = lean_ctor_get(x_31, 1); +x_73 = lean_ctor_get(x_31, 3); +x_74 = lean_ctor_get(x_31, 4); +x_75 = lean_ctor_get(x_31, 5); +lean_inc(x_75); +lean_inc(x_74); +lean_inc(x_73); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_31); +x_76 = lean_ctor_get(x_58, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_58, 1); +lean_inc(x_77); +x_78 = lean_ctor_get(x_58, 3); +lean_inc(x_78); +x_79 = lean_ctor_get(x_58, 4); +lean_inc(x_79); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + lean_ctor_release(x_58, 1); + lean_ctor_release(x_58, 2); + lean_ctor_release(x_58, 3); + lean_ctor_release(x_58, 4); + x_80 = x_58; +} else { + lean_dec_ref(x_58); + x_80 = lean_box(0); +} +if (lean_is_scalar(x_80)) { + x_81 = lean_alloc_ctor(0, 5, 0); +} else { + x_81 = x_80; +} +lean_ctor_set(x_81, 0, x_76); +lean_ctor_set(x_81, 1, x_77); +lean_ctor_set(x_81, 2, x_29); +lean_ctor_set(x_81, 3, x_78); +lean_ctor_set(x_81, 4, x_79); +x_82 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_82, 0, x_71); +lean_ctor_set(x_82, 1, x_72); +lean_ctor_set(x_82, 2, x_81); +lean_ctor_set(x_82, 3, x_73); +lean_ctor_set(x_82, 4, x_74); +lean_ctor_set(x_82, 5, x_75); +if (lean_is_scalar(x_22)) { + x_83 = lean_alloc_ctor(0, 2, 0); +} else { + x_83 = x_22; +} +lean_ctor_set(x_83, 0, x_59); +lean_ctor_set(x_83, 1, x_82); +return x_83; +} +} +} +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_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; +x_112 = lean_ctor_get(x_27, 0); +x_113 = lean_ctor_get(x_27, 1); +x_114 = lean_ctor_get(x_27, 2); +x_115 = lean_ctor_get(x_27, 3); +x_116 = lean_ctor_get(x_27, 4); +lean_inc(x_116); +lean_inc(x_115); +lean_inc(x_114); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_27); +x_152 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +x_153 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_153, 0, x_112); +lean_ctor_set(x_153, 1, x_113); +lean_ctor_set(x_153, 2, x_152); +lean_ctor_set(x_153, 3, x_115); +lean_ctor_set(x_153, 4, x_116); +lean_ctor_set(x_21, 2, x_153); +x_154 = lean_ctor_get(x_4, 0); +lean_inc(x_154); +x_155 = lean_ctor_get(x_4, 1); +lean_inc(x_155); +x_156 = lean_ctor_get(x_4, 2); +lean_inc(x_156); +x_157 = lean_ctor_get(x_4, 3); +lean_inc(x_157); +x_158 = lean_ctor_get(x_4, 4); +lean_inc(x_158); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + lean_ctor_release(x_4, 4); + x_159 = x_4; +} else { + lean_dec_ref(x_4); + x_159 = lean_box(0); +} +x_160 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_160, 0, x_23); +lean_ctor_set(x_160, 1, x_10); +x_161 = lean_array_push(x_156, x_160); +if (lean_is_scalar(x_159)) { + x_162 = lean_alloc_ctor(0, 5, 0); +} else { + x_162 = x_159; +} +lean_ctor_set(x_162, 0, x_154); +lean_ctor_set(x_162, 1, x_155); +lean_ctor_set(x_162, 2, x_161); +lean_ctor_set(x_162, 3, x_157); +lean_ctor_set(x_162, 4, x_158); +x_163 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_25, x_162, x_21); +if (lean_obj_tag(x_163) == 0) +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +x_165 = lean_ctor_get(x_163, 1); +lean_inc(x_165); +lean_dec(x_163); +x_166 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_166, 0, x_164); +x_117 = x_166; +x_118 = x_165; +goto block_151; +} +else +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_167 = lean_ctor_get(x_163, 0); +lean_inc(x_167); +x_168 = lean_ctor_get(x_163, 1); +lean_inc(x_168); +lean_dec(x_163); +x_169 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_169, 0, x_167); +x_117 = x_169; +x_118 = x_168; +goto block_151; +} +block_151: +{ +if (lean_obj_tag(x_117) == 0) +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; +x_119 = lean_ctor_get(x_118, 2); +lean_inc(x_119); +x_120 = lean_ctor_get(x_117, 0); +lean_inc(x_120); +lean_dec(x_117); +x_121 = lean_ctor_get(x_118, 0); +lean_inc(x_121); +x_122 = lean_ctor_get(x_118, 1); +lean_inc(x_122); +x_123 = lean_ctor_get(x_118, 3); +lean_inc(x_123); +x_124 = lean_ctor_get(x_118, 4); +lean_inc(x_124); +x_125 = lean_ctor_get(x_118, 5); +lean_inc(x_125); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + lean_ctor_release(x_118, 2); + lean_ctor_release(x_118, 3); + lean_ctor_release(x_118, 4); + lean_ctor_release(x_118, 5); + x_126 = x_118; +} else { + lean_dec_ref(x_118); + x_126 = lean_box(0); +} +x_127 = lean_ctor_get(x_119, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_119, 1); +lean_inc(x_128); +x_129 = lean_ctor_get(x_119, 3); +lean_inc(x_129); +x_130 = lean_ctor_get(x_119, 4); +lean_inc(x_130); +if (lean_is_exclusive(x_119)) { + lean_ctor_release(x_119, 0); + lean_ctor_release(x_119, 1); + lean_ctor_release(x_119, 2); + lean_ctor_release(x_119, 3); + lean_ctor_release(x_119, 4); + x_131 = x_119; +} else { + lean_dec_ref(x_119); + x_131 = lean_box(0); +} +if (lean_is_scalar(x_131)) { + x_132 = lean_alloc_ctor(0, 5, 0); +} else { + x_132 = x_131; +} +lean_ctor_set(x_132, 0, x_127); +lean_ctor_set(x_132, 1, x_128); +lean_ctor_set(x_132, 2, x_114); +lean_ctor_set(x_132, 3, x_129); +lean_ctor_set(x_132, 4, x_130); +if (lean_is_scalar(x_126)) { + x_133 = lean_alloc_ctor(0, 6, 0); +} else { + x_133 = x_126; +} +lean_ctor_set(x_133, 0, x_121); +lean_ctor_set(x_133, 1, x_122); +lean_ctor_set(x_133, 2, x_132); +lean_ctor_set(x_133, 3, x_123); +lean_ctor_set(x_133, 4, x_124); +lean_ctor_set(x_133, 5, x_125); +if (lean_is_scalar(x_22)) { + x_134 = lean_alloc_ctor(1, 2, 0); +} else { + x_134 = x_22; + lean_ctor_set_tag(x_134, 1); +} +lean_ctor_set(x_134, 0, x_120); +lean_ctor_set(x_134, 1, x_133); +return x_134; +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_135 = lean_ctor_get(x_118, 2); +lean_inc(x_135); +x_136 = lean_ctor_get(x_117, 0); +lean_inc(x_136); +lean_dec(x_117); +x_137 = lean_ctor_get(x_118, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_118, 1); +lean_inc(x_138); +x_139 = lean_ctor_get(x_118, 3); +lean_inc(x_139); +x_140 = lean_ctor_get(x_118, 4); +lean_inc(x_140); +x_141 = lean_ctor_get(x_118, 5); +lean_inc(x_141); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + lean_ctor_release(x_118, 2); + lean_ctor_release(x_118, 3); + lean_ctor_release(x_118, 4); + lean_ctor_release(x_118, 5); + x_142 = x_118; +} else { + lean_dec_ref(x_118); + x_142 = lean_box(0); +} +x_143 = lean_ctor_get(x_135, 0); +lean_inc(x_143); +x_144 = lean_ctor_get(x_135, 1); +lean_inc(x_144); +x_145 = lean_ctor_get(x_135, 3); +lean_inc(x_145); +x_146 = lean_ctor_get(x_135, 4); +lean_inc(x_146); +if (lean_is_exclusive(x_135)) { + lean_ctor_release(x_135, 0); + lean_ctor_release(x_135, 1); + lean_ctor_release(x_135, 2); + lean_ctor_release(x_135, 3); + lean_ctor_release(x_135, 4); + x_147 = x_135; +} else { + lean_dec_ref(x_135); + x_147 = lean_box(0); +} +if (lean_is_scalar(x_147)) { + x_148 = lean_alloc_ctor(0, 5, 0); +} else { + x_148 = x_147; +} +lean_ctor_set(x_148, 0, x_143); +lean_ctor_set(x_148, 1, x_144); +lean_ctor_set(x_148, 2, x_114); +lean_ctor_set(x_148, 3, x_145); +lean_ctor_set(x_148, 4, x_146); +if (lean_is_scalar(x_142)) { + x_149 = lean_alloc_ctor(0, 6, 0); +} else { + x_149 = x_142; +} +lean_ctor_set(x_149, 0, x_137); +lean_ctor_set(x_149, 1, x_138); +lean_ctor_set(x_149, 2, x_148); +lean_ctor_set(x_149, 3, x_139); +lean_ctor_set(x_149, 4, x_140); +lean_ctor_set(x_149, 5, x_141); +if (lean_is_scalar(x_22)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_22; +} +lean_ctor_set(x_150, 0, x_136); +lean_ctor_set(x_150, 1, x_149); +return x_150; +} +} +} +} +else +{ +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_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; +x_170 = lean_ctor_get(x_21, 2); +x_171 = lean_ctor_get(x_21, 0); +x_172 = lean_ctor_get(x_21, 1); +x_173 = lean_ctor_get(x_21, 3); +x_174 = lean_ctor_get(x_21, 4); +x_175 = lean_ctor_get(x_21, 5); +lean_inc(x_175); +lean_inc(x_174); +lean_inc(x_173); +lean_inc(x_170); +lean_inc(x_172); +lean_inc(x_171); +lean_dec(x_21); +x_176 = lean_ctor_get(x_170, 0); +lean_inc(x_176); +x_177 = lean_ctor_get(x_170, 1); +lean_inc(x_177); +x_178 = lean_ctor_get(x_170, 2); +lean_inc(x_178); +x_179 = lean_ctor_get(x_170, 3); +lean_inc(x_179); +x_180 = lean_ctor_get(x_170, 4); +lean_inc(x_180); +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + lean_ctor_release(x_170, 1); + lean_ctor_release(x_170, 2); + lean_ctor_release(x_170, 3); + lean_ctor_release(x_170, 4); + x_181 = x_170; +} else { + lean_dec_ref(x_170); + x_181 = lean_box(0); +} +x_217 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +if (lean_is_scalar(x_181)) { + x_218 = lean_alloc_ctor(0, 5, 0); +} else { + x_218 = x_181; +} +lean_ctor_set(x_218, 0, x_176); +lean_ctor_set(x_218, 1, x_177); +lean_ctor_set(x_218, 2, x_217); +lean_ctor_set(x_218, 3, x_179); +lean_ctor_set(x_218, 4, x_180); +x_219 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_219, 0, x_171); +lean_ctor_set(x_219, 1, x_172); +lean_ctor_set(x_219, 2, x_218); +lean_ctor_set(x_219, 3, x_173); +lean_ctor_set(x_219, 4, x_174); +lean_ctor_set(x_219, 5, x_175); +x_220 = lean_ctor_get(x_4, 0); +lean_inc(x_220); +x_221 = lean_ctor_get(x_4, 1); +lean_inc(x_221); +x_222 = lean_ctor_get(x_4, 2); +lean_inc(x_222); +x_223 = lean_ctor_get(x_4, 3); +lean_inc(x_223); +x_224 = lean_ctor_get(x_4, 4); +lean_inc(x_224); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + lean_ctor_release(x_4, 4); + x_225 = x_4; +} else { + lean_dec_ref(x_4); + x_225 = lean_box(0); +} +x_226 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_226, 0, x_23); +lean_ctor_set(x_226, 1, x_10); +x_227 = lean_array_push(x_222, x_226); +if (lean_is_scalar(x_225)) { + x_228 = lean_alloc_ctor(0, 5, 0); +} else { + x_228 = x_225; +} +lean_ctor_set(x_228, 0, x_220); +lean_ctor_set(x_228, 1, x_221); +lean_ctor_set(x_228, 2, x_227); +lean_ctor_set(x_228, 3, x_223); +lean_ctor_set(x_228, 4, x_224); +x_229 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_25, x_228, x_219); +if (lean_obj_tag(x_229) == 0) +{ +lean_object* x_230; lean_object* x_231; lean_object* x_232; +x_230 = lean_ctor_get(x_229, 0); +lean_inc(x_230); +x_231 = lean_ctor_get(x_229, 1); +lean_inc(x_231); +lean_dec(x_229); +x_232 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_232, 0, x_230); +x_182 = x_232; +x_183 = x_231; +goto block_216; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_229, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_229, 1); +lean_inc(x_234); +lean_dec(x_229); +x_235 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_235, 0, x_233); +x_182 = x_235; +x_183 = x_234; +goto block_216; +} +block_216: +{ +if (lean_obj_tag(x_182) == 0) +{ +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; +x_184 = lean_ctor_get(x_183, 2); +lean_inc(x_184); +x_185 = lean_ctor_get(x_182, 0); +lean_inc(x_185); +lean_dec(x_182); +x_186 = lean_ctor_get(x_183, 0); +lean_inc(x_186); +x_187 = lean_ctor_get(x_183, 1); +lean_inc(x_187); +x_188 = lean_ctor_get(x_183, 3); +lean_inc(x_188); +x_189 = lean_ctor_get(x_183, 4); +lean_inc(x_189); +x_190 = lean_ctor_get(x_183, 5); +lean_inc(x_190); +if (lean_is_exclusive(x_183)) { + lean_ctor_release(x_183, 0); + lean_ctor_release(x_183, 1); + lean_ctor_release(x_183, 2); + lean_ctor_release(x_183, 3); + lean_ctor_release(x_183, 4); + lean_ctor_release(x_183, 5); + x_191 = x_183; +} else { + lean_dec_ref(x_183); + x_191 = lean_box(0); +} +x_192 = lean_ctor_get(x_184, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_184, 1); +lean_inc(x_193); +x_194 = lean_ctor_get(x_184, 3); +lean_inc(x_194); +x_195 = lean_ctor_get(x_184, 4); +lean_inc(x_195); +if (lean_is_exclusive(x_184)) { + lean_ctor_release(x_184, 0); + lean_ctor_release(x_184, 1); + lean_ctor_release(x_184, 2); + lean_ctor_release(x_184, 3); + lean_ctor_release(x_184, 4); + x_196 = x_184; +} else { + lean_dec_ref(x_184); + x_196 = lean_box(0); +} +if (lean_is_scalar(x_196)) { + x_197 = lean_alloc_ctor(0, 5, 0); +} else { + x_197 = x_196; +} +lean_ctor_set(x_197, 0, x_192); +lean_ctor_set(x_197, 1, x_193); +lean_ctor_set(x_197, 2, x_178); +lean_ctor_set(x_197, 3, x_194); +lean_ctor_set(x_197, 4, x_195); +if (lean_is_scalar(x_191)) { + x_198 = lean_alloc_ctor(0, 6, 0); +} else { + x_198 = x_191; +} +lean_ctor_set(x_198, 0, x_186); +lean_ctor_set(x_198, 1, x_187); +lean_ctor_set(x_198, 2, x_197); +lean_ctor_set(x_198, 3, x_188); +lean_ctor_set(x_198, 4, x_189); +lean_ctor_set(x_198, 5, x_190); +if (lean_is_scalar(x_22)) { + x_199 = lean_alloc_ctor(1, 2, 0); +} else { + x_199 = x_22; + lean_ctor_set_tag(x_199, 1); +} +lean_ctor_set(x_199, 0, x_185); +lean_ctor_set(x_199, 1, x_198); +return x_199; +} +else +{ +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; +x_200 = lean_ctor_get(x_183, 2); +lean_inc(x_200); +x_201 = lean_ctor_get(x_182, 0); +lean_inc(x_201); +lean_dec(x_182); +x_202 = lean_ctor_get(x_183, 0); +lean_inc(x_202); +x_203 = lean_ctor_get(x_183, 1); +lean_inc(x_203); +x_204 = lean_ctor_get(x_183, 3); +lean_inc(x_204); +x_205 = lean_ctor_get(x_183, 4); +lean_inc(x_205); +x_206 = lean_ctor_get(x_183, 5); +lean_inc(x_206); +if (lean_is_exclusive(x_183)) { + lean_ctor_release(x_183, 0); + lean_ctor_release(x_183, 1); + lean_ctor_release(x_183, 2); + lean_ctor_release(x_183, 3); + lean_ctor_release(x_183, 4); + lean_ctor_release(x_183, 5); + x_207 = x_183; +} else { + lean_dec_ref(x_183); + x_207 = lean_box(0); +} +x_208 = lean_ctor_get(x_200, 0); +lean_inc(x_208); +x_209 = lean_ctor_get(x_200, 1); +lean_inc(x_209); +x_210 = lean_ctor_get(x_200, 3); +lean_inc(x_210); +x_211 = lean_ctor_get(x_200, 4); +lean_inc(x_211); +if (lean_is_exclusive(x_200)) { + lean_ctor_release(x_200, 0); + lean_ctor_release(x_200, 1); + lean_ctor_release(x_200, 2); + lean_ctor_release(x_200, 3); + lean_ctor_release(x_200, 4); + x_212 = x_200; +} else { + lean_dec_ref(x_200); + x_212 = lean_box(0); +} +if (lean_is_scalar(x_212)) { + x_213 = lean_alloc_ctor(0, 5, 0); +} else { + x_213 = x_212; +} +lean_ctor_set(x_213, 0, x_208); +lean_ctor_set(x_213, 1, x_209); +lean_ctor_set(x_213, 2, x_178); +lean_ctor_set(x_213, 3, x_210); +lean_ctor_set(x_213, 4, x_211); +if (lean_is_scalar(x_207)) { + x_214 = lean_alloc_ctor(0, 6, 0); +} else { + x_214 = x_207; +} +lean_ctor_set(x_214, 0, x_202); +lean_ctor_set(x_214, 1, x_203); +lean_ctor_set(x_214, 2, x_213); +lean_ctor_set(x_214, 3, x_204); +lean_ctor_set(x_214, 4, x_205); +lean_ctor_set(x_214, 5, x_206); +if (lean_is_scalar(x_22)) { + x_215 = lean_alloc_ctor(0, 2, 0); +} else { + x_215 = x_22; +} +lean_ctor_set(x_215, 0, x_201); +lean_ctor_set(x_215, 1, x_214); +return x_215; +} +} +} +} +default: +{ +lean_object* x_236; lean_object* x_237; +x_236 = lean_ctor_get(x_15, 1); +lean_inc(x_236); +lean_dec(x_15); +lean_inc(x_4); +x_237 = l_Lean_Meta_isClassExpensive___main(x_14, x_4, x_236); +if (lean_obj_tag(x_237) == 0) +{ +lean_object* x_238; +x_238 = lean_ctor_get(x_237, 0); +lean_inc(x_238); +if (lean_obj_tag(x_238) == 0) +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; +lean_dec(x_10); +x_239 = lean_ctor_get(x_237, 1); +lean_inc(x_239); +lean_dec(x_237); +x_240 = lean_unsigned_to_nat(1u); +x_241 = lean_nat_add(x_3, x_240); +lean_dec(x_3); +x_3 = x_241; +x_5 = x_239; +goto _start; +} +else +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; uint8_t x_248; +x_243 = lean_ctor_get(x_237, 1); +lean_inc(x_243); +if (lean_is_exclusive(x_237)) { + lean_ctor_release(x_237, 0); + lean_ctor_release(x_237, 1); + x_244 = x_237; +} else { + lean_dec_ref(x_237); + x_244 = lean_box(0); +} +x_245 = lean_ctor_get(x_238, 0); +lean_inc(x_245); +lean_dec(x_238); +x_246 = lean_unsigned_to_nat(1u); +x_247 = lean_nat_add(x_3, x_246); +lean_dec(x_3); +x_248 = !lean_is_exclusive(x_243); +if (x_248 == 0) +{ +lean_object* x_249; uint8_t x_250; +x_249 = lean_ctor_get(x_243, 2); +x_250 = !lean_is_exclusive(x_249); +if (x_250 == 0) +{ +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_307; uint8_t x_308; +x_251 = lean_ctor_get(x_249, 2); +x_307 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +lean_ctor_set(x_249, 2, x_307); +x_308 = !lean_is_exclusive(x_4); +if (x_308 == 0) +{ +lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; +x_309 = lean_ctor_get(x_4, 2); +x_310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_310, 0, x_245); +lean_ctor_set(x_310, 1, x_10); +x_311 = lean_array_push(x_309, x_310); +lean_ctor_set(x_4, 2, x_311); +x_312 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_247, x_4, x_243); +if (lean_obj_tag(x_312) == 0) +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; +x_313 = lean_ctor_get(x_312, 0); +lean_inc(x_313); +x_314 = lean_ctor_get(x_312, 1); +lean_inc(x_314); +lean_dec(x_312); +x_315 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_315, 0, x_313); +x_252 = x_315; +x_253 = x_314; +goto block_306; +} +else +{ +lean_object* x_316; lean_object* x_317; lean_object* x_318; +x_316 = lean_ctor_get(x_312, 0); +lean_inc(x_316); +x_317 = lean_ctor_get(x_312, 1); +lean_inc(x_317); +lean_dec(x_312); +x_318 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_318, 0, x_316); +x_252 = x_318; +x_253 = x_317; +goto block_306; +} +} +else +{ +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; +x_319 = lean_ctor_get(x_4, 0); +x_320 = lean_ctor_get(x_4, 1); +x_321 = lean_ctor_get(x_4, 2); +x_322 = lean_ctor_get(x_4, 3); +x_323 = lean_ctor_get(x_4, 4); +lean_inc(x_323); +lean_inc(x_322); +lean_inc(x_321); +lean_inc(x_320); +lean_inc(x_319); +lean_dec(x_4); +x_324 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_324, 0, x_245); +lean_ctor_set(x_324, 1, x_10); +x_325 = lean_array_push(x_321, x_324); +x_326 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_326, 0, x_319); +lean_ctor_set(x_326, 1, x_320); +lean_ctor_set(x_326, 2, x_325); +lean_ctor_set(x_326, 3, x_322); +lean_ctor_set(x_326, 4, x_323); +x_327 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_247, x_326, x_243); +if (lean_obj_tag(x_327) == 0) +{ +lean_object* x_328; lean_object* x_329; lean_object* x_330; +x_328 = lean_ctor_get(x_327, 0); +lean_inc(x_328); +x_329 = lean_ctor_get(x_327, 1); +lean_inc(x_329); +lean_dec(x_327); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_252 = x_330; +x_253 = x_329; +goto block_306; +} +else +{ +lean_object* x_331; lean_object* x_332; lean_object* x_333; +x_331 = lean_ctor_get(x_327, 0); +lean_inc(x_331); +x_332 = lean_ctor_get(x_327, 1); +lean_inc(x_332); +lean_dec(x_327); +x_333 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_333, 0, x_331); +x_252 = x_333; +x_253 = x_332; +goto block_306; +} +} +block_306: +{ +if (lean_obj_tag(x_252) == 0) +{ +lean_object* x_254; lean_object* x_255; uint8_t x_256; +x_254 = lean_ctor_get(x_253, 2); +lean_inc(x_254); +x_255 = lean_ctor_get(x_252, 0); +lean_inc(x_255); +lean_dec(x_252); +x_256 = !lean_is_exclusive(x_253); +if (x_256 == 0) +{ +lean_object* x_257; uint8_t x_258; +x_257 = lean_ctor_get(x_253, 2); +lean_dec(x_257); +x_258 = !lean_is_exclusive(x_254); +if (x_258 == 0) +{ +lean_object* x_259; lean_object* x_260; +x_259 = lean_ctor_get(x_254, 2); +lean_dec(x_259); +lean_ctor_set(x_254, 2, x_251); +if (lean_is_scalar(x_244)) { + x_260 = lean_alloc_ctor(1, 2, 0); +} else { + x_260 = x_244; + lean_ctor_set_tag(x_260, 1); +} +lean_ctor_set(x_260, 0, x_255); +lean_ctor_set(x_260, 1, x_253); +return x_260; +} +else +{ +lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_261 = lean_ctor_get(x_254, 0); +x_262 = lean_ctor_get(x_254, 1); +x_263 = lean_ctor_get(x_254, 3); +x_264 = lean_ctor_get(x_254, 4); +lean_inc(x_264); +lean_inc(x_263); +lean_inc(x_262); +lean_inc(x_261); +lean_dec(x_254); +x_265 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_265, 0, x_261); +lean_ctor_set(x_265, 1, x_262); +lean_ctor_set(x_265, 2, x_251); +lean_ctor_set(x_265, 3, x_263); +lean_ctor_set(x_265, 4, x_264); +lean_ctor_set(x_253, 2, x_265); +if (lean_is_scalar(x_244)) { + x_266 = lean_alloc_ctor(1, 2, 0); +} else { + x_266 = x_244; + lean_ctor_set_tag(x_266, 1); +} +lean_ctor_set(x_266, 0, x_255); +lean_ctor_set(x_266, 1, x_253); +return x_266; +} +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; +x_267 = lean_ctor_get(x_253, 0); +x_268 = lean_ctor_get(x_253, 1); +x_269 = lean_ctor_get(x_253, 3); +x_270 = lean_ctor_get(x_253, 4); +x_271 = lean_ctor_get(x_253, 5); +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_inc(x_267); +lean_dec(x_253); +x_272 = lean_ctor_get(x_254, 0); +lean_inc(x_272); +x_273 = lean_ctor_get(x_254, 1); +lean_inc(x_273); +x_274 = lean_ctor_get(x_254, 3); +lean_inc(x_274); +x_275 = lean_ctor_get(x_254, 4); +lean_inc(x_275); +if (lean_is_exclusive(x_254)) { + lean_ctor_release(x_254, 0); + lean_ctor_release(x_254, 1); + lean_ctor_release(x_254, 2); + lean_ctor_release(x_254, 3); + lean_ctor_release(x_254, 4); + x_276 = x_254; +} else { + lean_dec_ref(x_254); + x_276 = lean_box(0); +} +if (lean_is_scalar(x_276)) { + x_277 = lean_alloc_ctor(0, 5, 0); +} else { + x_277 = x_276; +} +lean_ctor_set(x_277, 0, x_272); +lean_ctor_set(x_277, 1, x_273); +lean_ctor_set(x_277, 2, x_251); +lean_ctor_set(x_277, 3, x_274); +lean_ctor_set(x_277, 4, x_275); +x_278 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_278, 0, x_267); +lean_ctor_set(x_278, 1, x_268); +lean_ctor_set(x_278, 2, x_277); +lean_ctor_set(x_278, 3, x_269); +lean_ctor_set(x_278, 4, x_270); +lean_ctor_set(x_278, 5, x_271); +if (lean_is_scalar(x_244)) { + x_279 = lean_alloc_ctor(1, 2, 0); +} else { + x_279 = x_244; + lean_ctor_set_tag(x_279, 1); +} +lean_ctor_set(x_279, 0, x_255); +lean_ctor_set(x_279, 1, x_278); +return x_279; +} +} +else +{ +lean_object* x_280; lean_object* x_281; uint8_t x_282; +x_280 = lean_ctor_get(x_253, 2); +lean_inc(x_280); +x_281 = lean_ctor_get(x_252, 0); +lean_inc(x_281); +lean_dec(x_252); +x_282 = !lean_is_exclusive(x_253); +if (x_282 == 0) +{ +lean_object* x_283; uint8_t x_284; +x_283 = lean_ctor_get(x_253, 2); +lean_dec(x_283); +x_284 = !lean_is_exclusive(x_280); +if (x_284 == 0) +{ +lean_object* x_285; lean_object* x_286; +x_285 = lean_ctor_get(x_280, 2); +lean_dec(x_285); +lean_ctor_set(x_280, 2, x_251); +if (lean_is_scalar(x_244)) { + x_286 = lean_alloc_ctor(0, 2, 0); +} else { + x_286 = x_244; +} +lean_ctor_set(x_286, 0, x_281); +lean_ctor_set(x_286, 1, x_253); +return x_286; +} +else +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_287 = lean_ctor_get(x_280, 0); +x_288 = lean_ctor_get(x_280, 1); +x_289 = lean_ctor_get(x_280, 3); +x_290 = lean_ctor_get(x_280, 4); +lean_inc(x_290); +lean_inc(x_289); +lean_inc(x_288); +lean_inc(x_287); +lean_dec(x_280); +x_291 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_291, 0, x_287); +lean_ctor_set(x_291, 1, x_288); +lean_ctor_set(x_291, 2, x_251); +lean_ctor_set(x_291, 3, x_289); +lean_ctor_set(x_291, 4, x_290); +lean_ctor_set(x_253, 2, x_291); +if (lean_is_scalar(x_244)) { + x_292 = lean_alloc_ctor(0, 2, 0); +} else { + x_292 = x_244; +} +lean_ctor_set(x_292, 0, x_281); +lean_ctor_set(x_292, 1, x_253); +return x_292; +} +} +else +{ +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; +x_293 = lean_ctor_get(x_253, 0); +x_294 = lean_ctor_get(x_253, 1); +x_295 = lean_ctor_get(x_253, 3); +x_296 = lean_ctor_get(x_253, 4); +x_297 = lean_ctor_get(x_253, 5); +lean_inc(x_297); +lean_inc(x_296); +lean_inc(x_295); +lean_inc(x_294); +lean_inc(x_293); +lean_dec(x_253); +x_298 = lean_ctor_get(x_280, 0); +lean_inc(x_298); +x_299 = lean_ctor_get(x_280, 1); +lean_inc(x_299); +x_300 = lean_ctor_get(x_280, 3); +lean_inc(x_300); +x_301 = lean_ctor_get(x_280, 4); +lean_inc(x_301); +if (lean_is_exclusive(x_280)) { + lean_ctor_release(x_280, 0); + lean_ctor_release(x_280, 1); + lean_ctor_release(x_280, 2); + lean_ctor_release(x_280, 3); + lean_ctor_release(x_280, 4); + x_302 = x_280; +} else { + lean_dec_ref(x_280); + x_302 = lean_box(0); +} +if (lean_is_scalar(x_302)) { + x_303 = lean_alloc_ctor(0, 5, 0); +} else { + x_303 = x_302; +} +lean_ctor_set(x_303, 0, x_298); +lean_ctor_set(x_303, 1, x_299); +lean_ctor_set(x_303, 2, x_251); +lean_ctor_set(x_303, 3, x_300); +lean_ctor_set(x_303, 4, x_301); +x_304 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_304, 0, x_293); +lean_ctor_set(x_304, 1, x_294); +lean_ctor_set(x_304, 2, x_303); +lean_ctor_set(x_304, 3, x_295); +lean_ctor_set(x_304, 4, x_296); +lean_ctor_set(x_304, 5, x_297); +if (lean_is_scalar(x_244)) { + x_305 = lean_alloc_ctor(0, 2, 0); +} else { + x_305 = x_244; +} +lean_ctor_set(x_305, 0, x_281); +lean_ctor_set(x_305, 1, x_304); +return x_305; +} +} +} +} +else +{ +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_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; +x_334 = lean_ctor_get(x_249, 0); +x_335 = lean_ctor_get(x_249, 1); +x_336 = lean_ctor_get(x_249, 2); +x_337 = lean_ctor_get(x_249, 3); +x_338 = lean_ctor_get(x_249, 4); +lean_inc(x_338); +lean_inc(x_337); +lean_inc(x_336); +lean_inc(x_335); +lean_inc(x_334); +lean_dec(x_249); +x_374 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +x_375 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_375, 0, x_334); +lean_ctor_set(x_375, 1, x_335); +lean_ctor_set(x_375, 2, x_374); +lean_ctor_set(x_375, 3, x_337); +lean_ctor_set(x_375, 4, x_338); +lean_ctor_set(x_243, 2, x_375); +x_376 = lean_ctor_get(x_4, 0); +lean_inc(x_376); +x_377 = lean_ctor_get(x_4, 1); +lean_inc(x_377); +x_378 = lean_ctor_get(x_4, 2); +lean_inc(x_378); +x_379 = lean_ctor_get(x_4, 3); +lean_inc(x_379); +x_380 = lean_ctor_get(x_4, 4); +lean_inc(x_380); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + lean_ctor_release(x_4, 4); + x_381 = x_4; +} else { + lean_dec_ref(x_4); + x_381 = lean_box(0); +} +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_245); +lean_ctor_set(x_382, 1, x_10); +x_383 = lean_array_push(x_378, x_382); +if (lean_is_scalar(x_381)) { + x_384 = lean_alloc_ctor(0, 5, 0); +} else { + x_384 = x_381; +} +lean_ctor_set(x_384, 0, x_376); +lean_ctor_set(x_384, 1, x_377); +lean_ctor_set(x_384, 2, x_383); +lean_ctor_set(x_384, 3, x_379); +lean_ctor_set(x_384, 4, x_380); +x_385 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_247, x_384, x_243); +if (lean_obj_tag(x_385) == 0) +{ +lean_object* x_386; lean_object* x_387; lean_object* x_388; +x_386 = lean_ctor_get(x_385, 0); +lean_inc(x_386); +x_387 = lean_ctor_get(x_385, 1); +lean_inc(x_387); +lean_dec(x_385); +x_388 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_388, 0, x_386); +x_339 = x_388; +x_340 = x_387; +goto block_373; +} +else +{ +lean_object* x_389; lean_object* x_390; lean_object* x_391; +x_389 = lean_ctor_get(x_385, 0); +lean_inc(x_389); +x_390 = lean_ctor_get(x_385, 1); +lean_inc(x_390); +lean_dec(x_385); +x_391 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_391, 0, x_389); +x_339 = x_391; +x_340 = x_390; +goto block_373; +} +block_373: +{ +if (lean_obj_tag(x_339) == 0) +{ +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; +x_341 = lean_ctor_get(x_340, 2); +lean_inc(x_341); +x_342 = lean_ctor_get(x_339, 0); +lean_inc(x_342); +lean_dec(x_339); +x_343 = lean_ctor_get(x_340, 0); +lean_inc(x_343); +x_344 = lean_ctor_get(x_340, 1); +lean_inc(x_344); +x_345 = lean_ctor_get(x_340, 3); +lean_inc(x_345); +x_346 = lean_ctor_get(x_340, 4); +lean_inc(x_346); +x_347 = lean_ctor_get(x_340, 5); +lean_inc(x_347); +if (lean_is_exclusive(x_340)) { + lean_ctor_release(x_340, 0); + lean_ctor_release(x_340, 1); + lean_ctor_release(x_340, 2); + lean_ctor_release(x_340, 3); + lean_ctor_release(x_340, 4); + lean_ctor_release(x_340, 5); + x_348 = x_340; +} else { + lean_dec_ref(x_340); + x_348 = lean_box(0); +} +x_349 = lean_ctor_get(x_341, 0); +lean_inc(x_349); +x_350 = lean_ctor_get(x_341, 1); +lean_inc(x_350); +x_351 = lean_ctor_get(x_341, 3); +lean_inc(x_351); +x_352 = lean_ctor_get(x_341, 4); +lean_inc(x_352); +if (lean_is_exclusive(x_341)) { + lean_ctor_release(x_341, 0); + lean_ctor_release(x_341, 1); + lean_ctor_release(x_341, 2); + lean_ctor_release(x_341, 3); + lean_ctor_release(x_341, 4); + x_353 = x_341; +} else { + lean_dec_ref(x_341); + x_353 = lean_box(0); +} +if (lean_is_scalar(x_353)) { + x_354 = lean_alloc_ctor(0, 5, 0); +} else { + x_354 = x_353; +} +lean_ctor_set(x_354, 0, x_349); +lean_ctor_set(x_354, 1, x_350); +lean_ctor_set(x_354, 2, x_336); +lean_ctor_set(x_354, 3, x_351); +lean_ctor_set(x_354, 4, x_352); +if (lean_is_scalar(x_348)) { + x_355 = lean_alloc_ctor(0, 6, 0); +} else { + x_355 = x_348; +} +lean_ctor_set(x_355, 0, x_343); +lean_ctor_set(x_355, 1, x_344); +lean_ctor_set(x_355, 2, x_354); +lean_ctor_set(x_355, 3, x_345); +lean_ctor_set(x_355, 4, x_346); +lean_ctor_set(x_355, 5, x_347); +if (lean_is_scalar(x_244)) { + x_356 = lean_alloc_ctor(1, 2, 0); +} else { + x_356 = x_244; + lean_ctor_set_tag(x_356, 1); +} +lean_ctor_set(x_356, 0, x_342); +lean_ctor_set(x_356, 1, x_355); +return x_356; +} +else +{ +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; +x_357 = lean_ctor_get(x_340, 2); +lean_inc(x_357); +x_358 = lean_ctor_get(x_339, 0); +lean_inc(x_358); +lean_dec(x_339); +x_359 = lean_ctor_get(x_340, 0); +lean_inc(x_359); +x_360 = lean_ctor_get(x_340, 1); +lean_inc(x_360); +x_361 = lean_ctor_get(x_340, 3); +lean_inc(x_361); +x_362 = lean_ctor_get(x_340, 4); +lean_inc(x_362); +x_363 = lean_ctor_get(x_340, 5); +lean_inc(x_363); +if (lean_is_exclusive(x_340)) { + lean_ctor_release(x_340, 0); + lean_ctor_release(x_340, 1); + lean_ctor_release(x_340, 2); + lean_ctor_release(x_340, 3); + lean_ctor_release(x_340, 4); + lean_ctor_release(x_340, 5); + x_364 = x_340; +} else { + lean_dec_ref(x_340); + x_364 = lean_box(0); +} +x_365 = lean_ctor_get(x_357, 0); +lean_inc(x_365); +x_366 = lean_ctor_get(x_357, 1); +lean_inc(x_366); +x_367 = lean_ctor_get(x_357, 3); +lean_inc(x_367); +x_368 = lean_ctor_get(x_357, 4); +lean_inc(x_368); +if (lean_is_exclusive(x_357)) { + lean_ctor_release(x_357, 0); + lean_ctor_release(x_357, 1); + lean_ctor_release(x_357, 2); + lean_ctor_release(x_357, 3); + lean_ctor_release(x_357, 4); + x_369 = x_357; +} else { + lean_dec_ref(x_357); + x_369 = lean_box(0); +} +if (lean_is_scalar(x_369)) { + x_370 = lean_alloc_ctor(0, 5, 0); +} else { + x_370 = x_369; +} +lean_ctor_set(x_370, 0, x_365); +lean_ctor_set(x_370, 1, x_366); +lean_ctor_set(x_370, 2, x_336); +lean_ctor_set(x_370, 3, x_367); +lean_ctor_set(x_370, 4, x_368); +if (lean_is_scalar(x_364)) { + x_371 = lean_alloc_ctor(0, 6, 0); +} else { + x_371 = x_364; +} +lean_ctor_set(x_371, 0, x_359); +lean_ctor_set(x_371, 1, x_360); +lean_ctor_set(x_371, 2, x_370); +lean_ctor_set(x_371, 3, x_361); +lean_ctor_set(x_371, 4, x_362); +lean_ctor_set(x_371, 5, x_363); +if (lean_is_scalar(x_244)) { + x_372 = lean_alloc_ctor(0, 2, 0); +} else { + x_372 = x_244; +} +lean_ctor_set(x_372, 0, x_358); +lean_ctor_set(x_372, 1, x_371); +return x_372; +} +} +} +} +else +{ +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_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; +x_392 = lean_ctor_get(x_243, 2); +x_393 = lean_ctor_get(x_243, 0); +x_394 = lean_ctor_get(x_243, 1); +x_395 = lean_ctor_get(x_243, 3); +x_396 = lean_ctor_get(x_243, 4); +x_397 = lean_ctor_get(x_243, 5); +lean_inc(x_397); +lean_inc(x_396); +lean_inc(x_395); +lean_inc(x_392); +lean_inc(x_394); +lean_inc(x_393); +lean_dec(x_243); +x_398 = lean_ctor_get(x_392, 0); +lean_inc(x_398); +x_399 = lean_ctor_get(x_392, 1); +lean_inc(x_399); +x_400 = lean_ctor_get(x_392, 2); +lean_inc(x_400); +x_401 = lean_ctor_get(x_392, 3); +lean_inc(x_401); +x_402 = lean_ctor_get(x_392, 4); +lean_inc(x_402); +if (lean_is_exclusive(x_392)) { + lean_ctor_release(x_392, 0); + lean_ctor_release(x_392, 1); + lean_ctor_release(x_392, 2); + lean_ctor_release(x_392, 3); + lean_ctor_release(x_392, 4); + x_403 = x_392; +} else { + lean_dec_ref(x_392); + x_403 = lean_box(0); +} +x_439 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +if (lean_is_scalar(x_403)) { + x_440 = lean_alloc_ctor(0, 5, 0); +} else { + x_440 = x_403; +} +lean_ctor_set(x_440, 0, x_398); +lean_ctor_set(x_440, 1, x_399); +lean_ctor_set(x_440, 2, x_439); +lean_ctor_set(x_440, 3, x_401); +lean_ctor_set(x_440, 4, x_402); +x_441 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_441, 0, x_393); +lean_ctor_set(x_441, 1, x_394); +lean_ctor_set(x_441, 2, x_440); +lean_ctor_set(x_441, 3, x_395); +lean_ctor_set(x_441, 4, x_396); +lean_ctor_set(x_441, 5, x_397); +x_442 = lean_ctor_get(x_4, 0); +lean_inc(x_442); +x_443 = lean_ctor_get(x_4, 1); +lean_inc(x_443); +x_444 = lean_ctor_get(x_4, 2); +lean_inc(x_444); +x_445 = lean_ctor_get(x_4, 3); +lean_inc(x_445); +x_446 = lean_ctor_get(x_4, 4); +lean_inc(x_446); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + lean_ctor_release(x_4, 4); + x_447 = x_4; +} else { + lean_dec_ref(x_4); + x_447 = lean_box(0); +} +x_448 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_448, 0, x_245); +lean_ctor_set(x_448, 1, x_10); +x_449 = lean_array_push(x_444, x_448); +if (lean_is_scalar(x_447)) { + x_450 = lean_alloc_ctor(0, 5, 0); +} else { + x_450 = x_447; +} +lean_ctor_set(x_450, 0, x_442); +lean_ctor_set(x_450, 1, x_443); +lean_ctor_set(x_450, 2, x_449); +lean_ctor_set(x_450, 3, x_445); +lean_ctor_set(x_450, 4, x_446); +x_451 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_247, x_450, x_441); +if (lean_obj_tag(x_451) == 0) +{ +lean_object* x_452; lean_object* x_453; lean_object* x_454; +x_452 = lean_ctor_get(x_451, 0); +lean_inc(x_452); +x_453 = lean_ctor_get(x_451, 1); +lean_inc(x_453); +lean_dec(x_451); +x_454 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_454, 0, x_452); +x_404 = x_454; +x_405 = x_453; +goto block_438; +} +else +{ +lean_object* x_455; lean_object* x_456; lean_object* x_457; +x_455 = lean_ctor_get(x_451, 0); +lean_inc(x_455); +x_456 = lean_ctor_get(x_451, 1); +lean_inc(x_456); +lean_dec(x_451); +x_457 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_457, 0, x_455); +x_404 = x_457; +x_405 = x_456; +goto block_438; +} +block_438: +{ +if (lean_obj_tag(x_404) == 0) +{ +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; +x_406 = lean_ctor_get(x_405, 2); +lean_inc(x_406); +x_407 = lean_ctor_get(x_404, 0); +lean_inc(x_407); +lean_dec(x_404); +x_408 = lean_ctor_get(x_405, 0); +lean_inc(x_408); +x_409 = lean_ctor_get(x_405, 1); +lean_inc(x_409); +x_410 = lean_ctor_get(x_405, 3); +lean_inc(x_410); +x_411 = lean_ctor_get(x_405, 4); +lean_inc(x_411); +x_412 = lean_ctor_get(x_405, 5); +lean_inc(x_412); +if (lean_is_exclusive(x_405)) { + lean_ctor_release(x_405, 0); + lean_ctor_release(x_405, 1); + lean_ctor_release(x_405, 2); + lean_ctor_release(x_405, 3); + lean_ctor_release(x_405, 4); + lean_ctor_release(x_405, 5); + x_413 = x_405; +} else { + lean_dec_ref(x_405); + x_413 = lean_box(0); +} +x_414 = lean_ctor_get(x_406, 0); +lean_inc(x_414); +x_415 = lean_ctor_get(x_406, 1); +lean_inc(x_415); +x_416 = lean_ctor_get(x_406, 3); +lean_inc(x_416); +x_417 = lean_ctor_get(x_406, 4); +lean_inc(x_417); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + lean_ctor_release(x_406, 1); + lean_ctor_release(x_406, 2); + lean_ctor_release(x_406, 3); + lean_ctor_release(x_406, 4); + x_418 = x_406; +} else { + lean_dec_ref(x_406); + x_418 = lean_box(0); +} +if (lean_is_scalar(x_418)) { + x_419 = lean_alloc_ctor(0, 5, 0); +} else { + x_419 = x_418; +} +lean_ctor_set(x_419, 0, x_414); +lean_ctor_set(x_419, 1, x_415); +lean_ctor_set(x_419, 2, x_400); +lean_ctor_set(x_419, 3, x_416); +lean_ctor_set(x_419, 4, x_417); +if (lean_is_scalar(x_413)) { + x_420 = lean_alloc_ctor(0, 6, 0); +} else { + x_420 = x_413; +} +lean_ctor_set(x_420, 0, x_408); +lean_ctor_set(x_420, 1, x_409); +lean_ctor_set(x_420, 2, x_419); +lean_ctor_set(x_420, 3, x_410); +lean_ctor_set(x_420, 4, x_411); +lean_ctor_set(x_420, 5, x_412); +if (lean_is_scalar(x_244)) { + x_421 = lean_alloc_ctor(1, 2, 0); +} else { + x_421 = x_244; + lean_ctor_set_tag(x_421, 1); +} +lean_ctor_set(x_421, 0, x_407); +lean_ctor_set(x_421, 1, x_420); +return x_421; +} +else +{ +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; +x_422 = lean_ctor_get(x_405, 2); +lean_inc(x_422); +x_423 = lean_ctor_get(x_404, 0); +lean_inc(x_423); +lean_dec(x_404); +x_424 = lean_ctor_get(x_405, 0); +lean_inc(x_424); +x_425 = lean_ctor_get(x_405, 1); +lean_inc(x_425); +x_426 = lean_ctor_get(x_405, 3); +lean_inc(x_426); +x_427 = lean_ctor_get(x_405, 4); +lean_inc(x_427); +x_428 = lean_ctor_get(x_405, 5); +lean_inc(x_428); +if (lean_is_exclusive(x_405)) { + lean_ctor_release(x_405, 0); + lean_ctor_release(x_405, 1); + lean_ctor_release(x_405, 2); + lean_ctor_release(x_405, 3); + lean_ctor_release(x_405, 4); + lean_ctor_release(x_405, 5); + x_429 = x_405; +} else { + lean_dec_ref(x_405); + x_429 = lean_box(0); +} +x_430 = lean_ctor_get(x_422, 0); +lean_inc(x_430); +x_431 = lean_ctor_get(x_422, 1); +lean_inc(x_431); +x_432 = lean_ctor_get(x_422, 3); +lean_inc(x_432); +x_433 = lean_ctor_get(x_422, 4); +lean_inc(x_433); +if (lean_is_exclusive(x_422)) { + lean_ctor_release(x_422, 0); + lean_ctor_release(x_422, 1); + lean_ctor_release(x_422, 2); + lean_ctor_release(x_422, 3); + lean_ctor_release(x_422, 4); + x_434 = x_422; +} else { + lean_dec_ref(x_422); + x_434 = lean_box(0); +} +if (lean_is_scalar(x_434)) { + x_435 = lean_alloc_ctor(0, 5, 0); +} else { + x_435 = x_434; +} +lean_ctor_set(x_435, 0, x_430); +lean_ctor_set(x_435, 1, x_431); +lean_ctor_set(x_435, 2, x_400); +lean_ctor_set(x_435, 3, x_432); +lean_ctor_set(x_435, 4, x_433); +if (lean_is_scalar(x_429)) { + x_436 = lean_alloc_ctor(0, 6, 0); +} else { + x_436 = x_429; +} +lean_ctor_set(x_436, 0, x_424); +lean_ctor_set(x_436, 1, x_425); +lean_ctor_set(x_436, 2, x_435); +lean_ctor_set(x_436, 3, x_426); +lean_ctor_set(x_436, 4, x_427); +lean_ctor_set(x_436, 5, x_428); +if (lean_is_scalar(x_244)) { + x_437 = lean_alloc_ctor(0, 2, 0); +} else { + x_437 = x_244; +} +lean_ctor_set(x_437, 0, x_423); +lean_ctor_set(x_437, 1, x_436); +return x_437; +} +} +} +} +} +else +{ +uint8_t x_458; +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_3); +x_458 = !lean_is_exclusive(x_237); +if (x_458 == 0) +{ +return x_237; +} +else +{ +lean_object* x_459; lean_object* x_460; lean_object* x_461; +x_459 = lean_ctor_get(x_237, 0); +x_460 = lean_ctor_get(x_237, 1); +lean_inc(x_460); +lean_inc(x_459); +lean_dec(x_237); +x_461 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_461, 0, x_459); +lean_ctor_set(x_461, 1, x_460); +return x_461; +} +} +} +} +} +else +{ +uint8_t x_462; +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_3); +x_462 = !lean_is_exclusive(x_15); +if (x_462 == 0) +{ +return x_15; +} +else +{ +lean_object* x_463; lean_object* x_464; lean_object* x_465; +x_463 = lean_ctor_get(x_15, 0); +x_464 = lean_ctor_get(x_15, 1); +lean_inc(x_464); +lean_inc(x_463); +lean_dec(x_15); +x_465 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_465, 0, x_463); +lean_ctor_set(x_465, 1, x_464); +return x_465; +} +} +} +else +{ +uint8_t x_466; +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_3); +x_466 = !lean_is_exclusive(x_11); +if (x_466 == 0) +{ +return x_11; +} +else +{ +lean_object* x_467; lean_object* x_468; lean_object* x_469; +x_467 = lean_ctor_get(x_11, 0); +x_468 = lean_ctor_get(x_11, 1); +lean_inc(x_468); +lean_inc(x_467); +lean_dec(x_11); +x_469 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_469, 0, x_467); +lean_ctor_set(x_469, 1, x_468); +return x_469; +} +} +} +} +} +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5___lambda__1(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; +x_9 = l_Lean_Expr_isForall(x_6); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1(x_1, x_1, x_10, x_10, x_7, x_8); +lean_dec(x_1); +return x_11; +} +else +{ +lean_object* x_12; +x_12 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__3(x_2, x_3, x_4, x_1, x_5, x_6, x_7, x_8); +return x_12; +} +} +} +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_12 = lean_expr_instantiate_rev_range(x_6, x_5, x_7, x_4); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_whnf), 3, 1); +lean_closure_set(x_13, 0, x_12); +x_14 = lean_box(x_1); +lean_inc(x_7); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_4); +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5___lambda__1___boxed), 8, 5); +lean_closure_set(x_15, 0, x_4); +lean_closure_set(x_15, 1, x_14); +lean_closure_set(x_15, 2, x_2); +lean_closure_set(x_15, 3, x_3); +lean_closure_set(x_15, 4, x_7); +x_16 = lean_array_get_size(x_8); +x_17 = lean_nat_dec_lt(x_9, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_18 = l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(x_13, x_15, x_10, x_11); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_15); +lean_dec(x_13); +x_19 = lean_array_fget(x_8, x_9); +lean_inc(x_10); +x_20 = l_Lean_Meta_getFVarLocalDecl(x_19, x_10, x_11); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = l_Lean_LocalDecl_type(x_21); +lean_dec(x_21); +lean_inc(x_10); +lean_inc(x_23); +x_24 = l_Lean_Meta_isClassQuick___main(x_23, x_10, x_22); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +switch (lean_obj_tag(x_25)) { +case 0: +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec(x_23); +lean_dec(x_19); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_add(x_9, x_27); +lean_dec(x_9); +x_9 = x_28; +x_11 = x_26; +goto _start; +} +case 1: +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_dec(x_23); +x_30 = lean_ctor_get(x_24, 1); +lean_inc(x_30); +if (lean_is_exclusive(x_24)) { + lean_ctor_release(x_24, 0); + lean_ctor_release(x_24, 1); + x_31 = x_24; +} else { + lean_dec_ref(x_24); + x_31 = lean_box(0); +} +x_32 = lean_ctor_get(x_25, 0); +lean_inc(x_32); +lean_dec(x_25); +x_33 = lean_unsigned_to_nat(1u); +x_34 = lean_nat_add(x_9, x_33); +lean_dec(x_9); +x_35 = !lean_is_exclusive(x_30); +if (x_35 == 0) +{ +lean_object* x_36; uint8_t x_37; +x_36 = lean_ctor_get(x_30, 2); +x_37 = !lean_is_exclusive(x_36); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_94; uint8_t x_95; +x_38 = lean_ctor_get(x_36, 2); +x_94 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +lean_ctor_set(x_36, 2, x_94); +x_95 = !lean_is_exclusive(x_10); +if (x_95 == 0) +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_96 = lean_ctor_get(x_10, 2); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_32); +lean_ctor_set(x_97, 1, x_19); +x_98 = lean_array_push(x_96, x_97); +lean_ctor_set(x_10, 2, x_98); +x_99 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_34, x_10, x_30); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_99, 1); +lean_inc(x_101); +lean_dec(x_99); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_100); +x_39 = x_102; +x_40 = x_101; +goto block_93; +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_99, 0); +lean_inc(x_103); +x_104 = lean_ctor_get(x_99, 1); +lean_inc(x_104); +lean_dec(x_99); +x_105 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_105, 0, x_103); +x_39 = x_105; +x_40 = x_104; +goto block_93; +} +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_106 = lean_ctor_get(x_10, 0); +x_107 = lean_ctor_get(x_10, 1); +x_108 = lean_ctor_get(x_10, 2); +x_109 = lean_ctor_get(x_10, 3); +x_110 = lean_ctor_get(x_10, 4); +lean_inc(x_110); +lean_inc(x_109); +lean_inc(x_108); +lean_inc(x_107); +lean_inc(x_106); +lean_dec(x_10); +x_111 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_111, 0, x_32); +lean_ctor_set(x_111, 1, x_19); +x_112 = lean_array_push(x_108, x_111); +x_113 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_113, 0, x_106); +lean_ctor_set(x_113, 1, x_107); +lean_ctor_set(x_113, 2, x_112); +lean_ctor_set(x_113, 3, x_109); +lean_ctor_set(x_113, 4, x_110); +x_114 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_34, x_113, x_30); +if (lean_obj_tag(x_114) == 0) +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_115 = lean_ctor_get(x_114, 0); +lean_inc(x_115); +x_116 = lean_ctor_get(x_114, 1); +lean_inc(x_116); +lean_dec(x_114); +x_117 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_117, 0, x_115); +x_39 = x_117; +x_40 = x_116; +goto block_93; +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_118 = lean_ctor_get(x_114, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_114, 1); +lean_inc(x_119); +lean_dec(x_114); +x_120 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_39 = x_120; +x_40 = x_119; +goto block_93; +} +} +block_93: +{ +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_41 = lean_ctor_get(x_40, 2); +lean_inc(x_41); +x_42 = lean_ctor_get(x_39, 0); +lean_inc(x_42); +lean_dec(x_39); +x_43 = !lean_is_exclusive(x_40); +if (x_43 == 0) +{ +lean_object* x_44; uint8_t x_45; +x_44 = lean_ctor_get(x_40, 2); +lean_dec(x_44); +x_45 = !lean_is_exclusive(x_41); +if (x_45 == 0) +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_41, 2); +lean_dec(x_46); +lean_ctor_set(x_41, 2, x_38); +if (lean_is_scalar(x_31)) { + x_47 = lean_alloc_ctor(1, 2, 0); +} else { + x_47 = x_31; + lean_ctor_set_tag(x_47, 1); +} +lean_ctor_set(x_47, 0, x_42); +lean_ctor_set(x_47, 1, x_40); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_48 = lean_ctor_get(x_41, 0); +x_49 = lean_ctor_get(x_41, 1); +x_50 = lean_ctor_get(x_41, 3); +x_51 = lean_ctor_get(x_41, 4); +lean_inc(x_51); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_41); +x_52 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_52, 0, x_48); +lean_ctor_set(x_52, 1, x_49); +lean_ctor_set(x_52, 2, x_38); +lean_ctor_set(x_52, 3, x_50); +lean_ctor_set(x_52, 4, x_51); +lean_ctor_set(x_40, 2, x_52); +if (lean_is_scalar(x_31)) { + x_53 = lean_alloc_ctor(1, 2, 0); +} else { + x_53 = x_31; + lean_ctor_set_tag(x_53, 1); +} +lean_ctor_set(x_53, 0, x_42); +lean_ctor_set(x_53, 1, x_40); +return x_53; +} +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_54 = lean_ctor_get(x_40, 0); +x_55 = lean_ctor_get(x_40, 1); +x_56 = lean_ctor_get(x_40, 3); +x_57 = lean_ctor_get(x_40, 4); +x_58 = lean_ctor_get(x_40, 5); +lean_inc(x_58); +lean_inc(x_57); +lean_inc(x_56); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_40); +x_59 = lean_ctor_get(x_41, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_41, 1); +lean_inc(x_60); +x_61 = lean_ctor_get(x_41, 3); +lean_inc(x_61); +x_62 = lean_ctor_get(x_41, 4); +lean_inc(x_62); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + lean_ctor_release(x_41, 2); + lean_ctor_release(x_41, 3); + lean_ctor_release(x_41, 4); + x_63 = x_41; +} else { + lean_dec_ref(x_41); + x_63 = lean_box(0); +} +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(0, 5, 0); +} else { + x_64 = x_63; +} +lean_ctor_set(x_64, 0, x_59); +lean_ctor_set(x_64, 1, x_60); +lean_ctor_set(x_64, 2, x_38); +lean_ctor_set(x_64, 3, x_61); +lean_ctor_set(x_64, 4, x_62); +x_65 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_65, 0, x_54); +lean_ctor_set(x_65, 1, x_55); +lean_ctor_set(x_65, 2, x_64); +lean_ctor_set(x_65, 3, x_56); +lean_ctor_set(x_65, 4, x_57); +lean_ctor_set(x_65, 5, x_58); +if (lean_is_scalar(x_31)) { + x_66 = lean_alloc_ctor(1, 2, 0); +} else { + x_66 = x_31; + lean_ctor_set_tag(x_66, 1); +} +lean_ctor_set(x_66, 0, x_42); +lean_ctor_set(x_66, 1, x_65); +return x_66; +} +} +else +{ +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_ctor_get(x_40, 2); +lean_inc(x_67); +x_68 = lean_ctor_get(x_39, 0); +lean_inc(x_68); +lean_dec(x_39); +x_69 = !lean_is_exclusive(x_40); +if (x_69 == 0) +{ +lean_object* x_70; uint8_t x_71; +x_70 = lean_ctor_get(x_40, 2); +lean_dec(x_70); +x_71 = !lean_is_exclusive(x_67); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; +x_72 = lean_ctor_get(x_67, 2); +lean_dec(x_72); +lean_ctor_set(x_67, 2, x_38); +if (lean_is_scalar(x_31)) { + x_73 = lean_alloc_ctor(0, 2, 0); +} else { + x_73 = x_31; +} +lean_ctor_set(x_73, 0, x_68); +lean_ctor_set(x_73, 1, x_40); +return x_73; +} +else +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_74 = lean_ctor_get(x_67, 0); +x_75 = lean_ctor_get(x_67, 1); +x_76 = lean_ctor_get(x_67, 3); +x_77 = lean_ctor_get(x_67, 4); +lean_inc(x_77); +lean_inc(x_76); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_67); +x_78 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_78, 0, x_74); +lean_ctor_set(x_78, 1, x_75); +lean_ctor_set(x_78, 2, x_38); +lean_ctor_set(x_78, 3, x_76); +lean_ctor_set(x_78, 4, x_77); +lean_ctor_set(x_40, 2, x_78); +if (lean_is_scalar(x_31)) { + x_79 = lean_alloc_ctor(0, 2, 0); +} else { + x_79 = x_31; +} +lean_ctor_set(x_79, 0, x_68); +lean_ctor_set(x_79, 1, x_40); +return x_79; +} +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_80 = lean_ctor_get(x_40, 0); +x_81 = lean_ctor_get(x_40, 1); +x_82 = lean_ctor_get(x_40, 3); +x_83 = lean_ctor_get(x_40, 4); +x_84 = lean_ctor_get(x_40, 5); +lean_inc(x_84); +lean_inc(x_83); +lean_inc(x_82); +lean_inc(x_81); +lean_inc(x_80); +lean_dec(x_40); +x_85 = lean_ctor_get(x_67, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_67, 1); +lean_inc(x_86); +x_87 = lean_ctor_get(x_67, 3); +lean_inc(x_87); +x_88 = lean_ctor_get(x_67, 4); +lean_inc(x_88); +if (lean_is_exclusive(x_67)) { + lean_ctor_release(x_67, 0); + lean_ctor_release(x_67, 1); + lean_ctor_release(x_67, 2); + lean_ctor_release(x_67, 3); + lean_ctor_release(x_67, 4); + x_89 = x_67; +} else { + lean_dec_ref(x_67); + x_89 = lean_box(0); +} +if (lean_is_scalar(x_89)) { + x_90 = lean_alloc_ctor(0, 5, 0); +} else { + x_90 = x_89; +} +lean_ctor_set(x_90, 0, x_85); +lean_ctor_set(x_90, 1, x_86); +lean_ctor_set(x_90, 2, x_38); +lean_ctor_set(x_90, 3, x_87); +lean_ctor_set(x_90, 4, x_88); +x_91 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_91, 0, x_80); +lean_ctor_set(x_91, 1, x_81); +lean_ctor_set(x_91, 2, x_90); +lean_ctor_set(x_91, 3, x_82); +lean_ctor_set(x_91, 4, x_83); +lean_ctor_set(x_91, 5, x_84); +if (lean_is_scalar(x_31)) { + x_92 = lean_alloc_ctor(0, 2, 0); +} else { + x_92 = x_31; +} +lean_ctor_set(x_92, 0, x_68); +lean_ctor_set(x_92, 1, x_91); +return x_92; +} +} +} +} +else +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_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; +x_121 = lean_ctor_get(x_36, 0); +x_122 = lean_ctor_get(x_36, 1); +x_123 = lean_ctor_get(x_36, 2); +x_124 = lean_ctor_get(x_36, 3); +x_125 = lean_ctor_get(x_36, 4); +lean_inc(x_125); +lean_inc(x_124); +lean_inc(x_123); +lean_inc(x_122); +lean_inc(x_121); +lean_dec(x_36); +x_161 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +x_162 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_162, 0, x_121); +lean_ctor_set(x_162, 1, x_122); +lean_ctor_set(x_162, 2, x_161); +lean_ctor_set(x_162, 3, x_124); +lean_ctor_set(x_162, 4, x_125); +lean_ctor_set(x_30, 2, x_162); +x_163 = lean_ctor_get(x_10, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_10, 1); +lean_inc(x_164); +x_165 = lean_ctor_get(x_10, 2); +lean_inc(x_165); +x_166 = lean_ctor_get(x_10, 3); +lean_inc(x_166); +x_167 = lean_ctor_get(x_10, 4); +lean_inc(x_167); +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + x_168 = x_10; +} else { + lean_dec_ref(x_10); + x_168 = lean_box(0); +} +x_169 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_169, 0, x_32); +lean_ctor_set(x_169, 1, x_19); +x_170 = lean_array_push(x_165, x_169); +if (lean_is_scalar(x_168)) { + x_171 = lean_alloc_ctor(0, 5, 0); +} else { + x_171 = x_168; +} +lean_ctor_set(x_171, 0, x_163); +lean_ctor_set(x_171, 1, x_164); +lean_ctor_set(x_171, 2, x_170); +lean_ctor_set(x_171, 3, x_166); +lean_ctor_set(x_171, 4, x_167); +x_172 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_34, x_171, x_30); +if (lean_obj_tag(x_172) == 0) +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_173 = lean_ctor_get(x_172, 0); +lean_inc(x_173); +x_174 = lean_ctor_get(x_172, 1); +lean_inc(x_174); +lean_dec(x_172); +x_175 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_175, 0, x_173); +x_126 = x_175; +x_127 = x_174; +goto block_160; +} +else +{ +lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_176 = lean_ctor_get(x_172, 0); +lean_inc(x_176); +x_177 = lean_ctor_get(x_172, 1); +lean_inc(x_177); +lean_dec(x_172); +x_178 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_178, 0, x_176); +x_126 = x_178; +x_127 = x_177; +goto block_160; +} +block_160: +{ +if (lean_obj_tag(x_126) == 0) +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_128 = lean_ctor_get(x_127, 2); +lean_inc(x_128); +x_129 = lean_ctor_get(x_126, 0); +lean_inc(x_129); +lean_dec(x_126); +x_130 = lean_ctor_get(x_127, 0); +lean_inc(x_130); +x_131 = lean_ctor_get(x_127, 1); +lean_inc(x_131); +x_132 = lean_ctor_get(x_127, 3); +lean_inc(x_132); +x_133 = lean_ctor_get(x_127, 4); +lean_inc(x_133); +x_134 = lean_ctor_get(x_127, 5); +lean_inc(x_134); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + lean_ctor_release(x_127, 2); + lean_ctor_release(x_127, 3); + lean_ctor_release(x_127, 4); + lean_ctor_release(x_127, 5); + x_135 = x_127; +} else { + lean_dec_ref(x_127); + x_135 = lean_box(0); +} +x_136 = lean_ctor_get(x_128, 0); +lean_inc(x_136); +x_137 = lean_ctor_get(x_128, 1); +lean_inc(x_137); +x_138 = lean_ctor_get(x_128, 3); +lean_inc(x_138); +x_139 = lean_ctor_get(x_128, 4); +lean_inc(x_139); +if (lean_is_exclusive(x_128)) { + lean_ctor_release(x_128, 0); + lean_ctor_release(x_128, 1); + lean_ctor_release(x_128, 2); + lean_ctor_release(x_128, 3); + lean_ctor_release(x_128, 4); + x_140 = x_128; +} else { + lean_dec_ref(x_128); + x_140 = lean_box(0); +} +if (lean_is_scalar(x_140)) { + x_141 = lean_alloc_ctor(0, 5, 0); +} else { + x_141 = x_140; +} +lean_ctor_set(x_141, 0, x_136); +lean_ctor_set(x_141, 1, x_137); +lean_ctor_set(x_141, 2, x_123); +lean_ctor_set(x_141, 3, x_138); +lean_ctor_set(x_141, 4, x_139); +if (lean_is_scalar(x_135)) { + x_142 = lean_alloc_ctor(0, 6, 0); +} else { + x_142 = x_135; +} +lean_ctor_set(x_142, 0, x_130); +lean_ctor_set(x_142, 1, x_131); +lean_ctor_set(x_142, 2, x_141); +lean_ctor_set(x_142, 3, x_132); +lean_ctor_set(x_142, 4, x_133); +lean_ctor_set(x_142, 5, x_134); +if (lean_is_scalar(x_31)) { + x_143 = lean_alloc_ctor(1, 2, 0); +} else { + x_143 = x_31; + lean_ctor_set_tag(x_143, 1); +} +lean_ctor_set(x_143, 0, x_129); +lean_ctor_set(x_143, 1, x_142); +return x_143; +} +else +{ +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; +x_144 = lean_ctor_get(x_127, 2); +lean_inc(x_144); +x_145 = lean_ctor_get(x_126, 0); +lean_inc(x_145); +lean_dec(x_126); +x_146 = lean_ctor_get(x_127, 0); +lean_inc(x_146); +x_147 = lean_ctor_get(x_127, 1); +lean_inc(x_147); +x_148 = lean_ctor_get(x_127, 3); +lean_inc(x_148); +x_149 = lean_ctor_get(x_127, 4); +lean_inc(x_149); +x_150 = lean_ctor_get(x_127, 5); +lean_inc(x_150); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + lean_ctor_release(x_127, 2); + lean_ctor_release(x_127, 3); + lean_ctor_release(x_127, 4); + lean_ctor_release(x_127, 5); + x_151 = x_127; +} else { + lean_dec_ref(x_127); + x_151 = lean_box(0); +} +x_152 = lean_ctor_get(x_144, 0); +lean_inc(x_152); +x_153 = lean_ctor_get(x_144, 1); +lean_inc(x_153); +x_154 = lean_ctor_get(x_144, 3); +lean_inc(x_154); +x_155 = lean_ctor_get(x_144, 4); +lean_inc(x_155); +if (lean_is_exclusive(x_144)) { + lean_ctor_release(x_144, 0); + lean_ctor_release(x_144, 1); + lean_ctor_release(x_144, 2); + lean_ctor_release(x_144, 3); + lean_ctor_release(x_144, 4); + x_156 = x_144; +} else { + lean_dec_ref(x_144); + x_156 = lean_box(0); +} +if (lean_is_scalar(x_156)) { + x_157 = lean_alloc_ctor(0, 5, 0); +} else { + x_157 = x_156; +} +lean_ctor_set(x_157, 0, x_152); +lean_ctor_set(x_157, 1, x_153); +lean_ctor_set(x_157, 2, x_123); +lean_ctor_set(x_157, 3, x_154); +lean_ctor_set(x_157, 4, x_155); +if (lean_is_scalar(x_151)) { + x_158 = lean_alloc_ctor(0, 6, 0); +} else { + x_158 = x_151; +} +lean_ctor_set(x_158, 0, x_146); +lean_ctor_set(x_158, 1, x_147); +lean_ctor_set(x_158, 2, x_157); +lean_ctor_set(x_158, 3, x_148); +lean_ctor_set(x_158, 4, x_149); +lean_ctor_set(x_158, 5, x_150); +if (lean_is_scalar(x_31)) { + x_159 = lean_alloc_ctor(0, 2, 0); +} else { + x_159 = x_31; +} +lean_ctor_set(x_159, 0, x_145); +lean_ctor_set(x_159, 1, x_158); +return x_159; +} +} +} +} +else +{ +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_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_179 = lean_ctor_get(x_30, 2); +x_180 = lean_ctor_get(x_30, 0); +x_181 = lean_ctor_get(x_30, 1); +x_182 = lean_ctor_get(x_30, 3); +x_183 = lean_ctor_get(x_30, 4); +x_184 = lean_ctor_get(x_30, 5); +lean_inc(x_184); +lean_inc(x_183); +lean_inc(x_182); +lean_inc(x_179); +lean_inc(x_181); +lean_inc(x_180); +lean_dec(x_30); +x_185 = lean_ctor_get(x_179, 0); +lean_inc(x_185); +x_186 = lean_ctor_get(x_179, 1); +lean_inc(x_186); +x_187 = lean_ctor_get(x_179, 2); +lean_inc(x_187); +x_188 = lean_ctor_get(x_179, 3); +lean_inc(x_188); +x_189 = lean_ctor_get(x_179, 4); +lean_inc(x_189); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + lean_ctor_release(x_179, 1); + lean_ctor_release(x_179, 2); + lean_ctor_release(x_179, 3); + lean_ctor_release(x_179, 4); + x_190 = x_179; +} else { + lean_dec_ref(x_179); + x_190 = lean_box(0); +} +x_226 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +if (lean_is_scalar(x_190)) { + x_227 = lean_alloc_ctor(0, 5, 0); +} else { + x_227 = x_190; +} +lean_ctor_set(x_227, 0, x_185); +lean_ctor_set(x_227, 1, x_186); +lean_ctor_set(x_227, 2, x_226); +lean_ctor_set(x_227, 3, x_188); +lean_ctor_set(x_227, 4, x_189); +x_228 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_228, 0, x_180); +lean_ctor_set(x_228, 1, x_181); +lean_ctor_set(x_228, 2, x_227); +lean_ctor_set(x_228, 3, x_182); +lean_ctor_set(x_228, 4, x_183); +lean_ctor_set(x_228, 5, x_184); +x_229 = lean_ctor_get(x_10, 0); +lean_inc(x_229); +x_230 = lean_ctor_get(x_10, 1); +lean_inc(x_230); +x_231 = lean_ctor_get(x_10, 2); +lean_inc(x_231); +x_232 = lean_ctor_get(x_10, 3); +lean_inc(x_232); +x_233 = lean_ctor_get(x_10, 4); +lean_inc(x_233); +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + x_234 = x_10; +} else { + lean_dec_ref(x_10); + x_234 = lean_box(0); +} +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_32); +lean_ctor_set(x_235, 1, x_19); +x_236 = lean_array_push(x_231, x_235); +if (lean_is_scalar(x_234)) { + x_237 = lean_alloc_ctor(0, 5, 0); +} else { + x_237 = x_234; +} +lean_ctor_set(x_237, 0, x_229); +lean_ctor_set(x_237, 1, x_230); +lean_ctor_set(x_237, 2, x_236); +lean_ctor_set(x_237, 3, x_232); +lean_ctor_set(x_237, 4, x_233); +x_238 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_34, x_237, x_228); +if (lean_obj_tag(x_238) == 0) +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; +x_239 = lean_ctor_get(x_238, 0); +lean_inc(x_239); +x_240 = lean_ctor_get(x_238, 1); +lean_inc(x_240); +lean_dec(x_238); +x_241 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_241, 0, x_239); +x_191 = x_241; +x_192 = x_240; +goto block_225; +} +else +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_242 = lean_ctor_get(x_238, 0); +lean_inc(x_242); +x_243 = lean_ctor_get(x_238, 1); +lean_inc(x_243); +lean_dec(x_238); +x_244 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_244, 0, x_242); +x_191 = x_244; +x_192 = x_243; +goto block_225; +} +block_225: +{ +if (lean_obj_tag(x_191) == 0) +{ +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_193 = lean_ctor_get(x_192, 2); +lean_inc(x_193); +x_194 = lean_ctor_get(x_191, 0); +lean_inc(x_194); +lean_dec(x_191); +x_195 = lean_ctor_get(x_192, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_192, 1); +lean_inc(x_196); +x_197 = lean_ctor_get(x_192, 3); +lean_inc(x_197); +x_198 = lean_ctor_get(x_192, 4); +lean_inc(x_198); +x_199 = lean_ctor_get(x_192, 5); +lean_inc(x_199); +if (lean_is_exclusive(x_192)) { + lean_ctor_release(x_192, 0); + lean_ctor_release(x_192, 1); + lean_ctor_release(x_192, 2); + lean_ctor_release(x_192, 3); + lean_ctor_release(x_192, 4); + lean_ctor_release(x_192, 5); + x_200 = x_192; +} else { + lean_dec_ref(x_192); + x_200 = lean_box(0); +} +x_201 = lean_ctor_get(x_193, 0); +lean_inc(x_201); +x_202 = lean_ctor_get(x_193, 1); +lean_inc(x_202); +x_203 = lean_ctor_get(x_193, 3); +lean_inc(x_203); +x_204 = lean_ctor_get(x_193, 4); +lean_inc(x_204); +if (lean_is_exclusive(x_193)) { + lean_ctor_release(x_193, 0); + lean_ctor_release(x_193, 1); + lean_ctor_release(x_193, 2); + lean_ctor_release(x_193, 3); + lean_ctor_release(x_193, 4); + x_205 = x_193; +} else { + lean_dec_ref(x_193); + x_205 = lean_box(0); +} +if (lean_is_scalar(x_205)) { + x_206 = lean_alloc_ctor(0, 5, 0); +} else { + x_206 = x_205; +} +lean_ctor_set(x_206, 0, x_201); +lean_ctor_set(x_206, 1, x_202); +lean_ctor_set(x_206, 2, x_187); +lean_ctor_set(x_206, 3, x_203); +lean_ctor_set(x_206, 4, x_204); +if (lean_is_scalar(x_200)) { + x_207 = lean_alloc_ctor(0, 6, 0); +} else { + x_207 = x_200; +} +lean_ctor_set(x_207, 0, x_195); +lean_ctor_set(x_207, 1, x_196); +lean_ctor_set(x_207, 2, x_206); +lean_ctor_set(x_207, 3, x_197); +lean_ctor_set(x_207, 4, x_198); +lean_ctor_set(x_207, 5, x_199); +if (lean_is_scalar(x_31)) { + x_208 = lean_alloc_ctor(1, 2, 0); +} else { + x_208 = x_31; + lean_ctor_set_tag(x_208, 1); +} +lean_ctor_set(x_208, 0, x_194); +lean_ctor_set(x_208, 1, x_207); +return x_208; +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; 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; +x_209 = lean_ctor_get(x_192, 2); +lean_inc(x_209); +x_210 = lean_ctor_get(x_191, 0); +lean_inc(x_210); +lean_dec(x_191); +x_211 = lean_ctor_get(x_192, 0); +lean_inc(x_211); +x_212 = lean_ctor_get(x_192, 1); +lean_inc(x_212); +x_213 = lean_ctor_get(x_192, 3); +lean_inc(x_213); +x_214 = lean_ctor_get(x_192, 4); +lean_inc(x_214); +x_215 = lean_ctor_get(x_192, 5); +lean_inc(x_215); +if (lean_is_exclusive(x_192)) { + lean_ctor_release(x_192, 0); + lean_ctor_release(x_192, 1); + lean_ctor_release(x_192, 2); + lean_ctor_release(x_192, 3); + lean_ctor_release(x_192, 4); + lean_ctor_release(x_192, 5); + x_216 = x_192; +} else { + lean_dec_ref(x_192); + x_216 = lean_box(0); +} +x_217 = lean_ctor_get(x_209, 0); +lean_inc(x_217); +x_218 = lean_ctor_get(x_209, 1); +lean_inc(x_218); +x_219 = lean_ctor_get(x_209, 3); +lean_inc(x_219); +x_220 = lean_ctor_get(x_209, 4); +lean_inc(x_220); +if (lean_is_exclusive(x_209)) { + lean_ctor_release(x_209, 0); + lean_ctor_release(x_209, 1); + lean_ctor_release(x_209, 2); + lean_ctor_release(x_209, 3); + lean_ctor_release(x_209, 4); + x_221 = x_209; +} else { + lean_dec_ref(x_209); + x_221 = lean_box(0); +} +if (lean_is_scalar(x_221)) { + x_222 = lean_alloc_ctor(0, 5, 0); +} else { + x_222 = x_221; +} +lean_ctor_set(x_222, 0, x_217); +lean_ctor_set(x_222, 1, x_218); +lean_ctor_set(x_222, 2, x_187); +lean_ctor_set(x_222, 3, x_219); +lean_ctor_set(x_222, 4, x_220); +if (lean_is_scalar(x_216)) { + x_223 = lean_alloc_ctor(0, 6, 0); +} else { + x_223 = x_216; +} +lean_ctor_set(x_223, 0, x_211); +lean_ctor_set(x_223, 1, x_212); +lean_ctor_set(x_223, 2, x_222); +lean_ctor_set(x_223, 3, x_213); +lean_ctor_set(x_223, 4, x_214); +lean_ctor_set(x_223, 5, x_215); +if (lean_is_scalar(x_31)) { + x_224 = lean_alloc_ctor(0, 2, 0); +} else { + x_224 = x_31; +} +lean_ctor_set(x_224, 0, x_210); +lean_ctor_set(x_224, 1, x_223); +return x_224; +} +} +} +} +default: +{ +lean_object* x_245; lean_object* x_246; +x_245 = lean_ctor_get(x_24, 1); +lean_inc(x_245); +lean_dec(x_24); +lean_inc(x_10); +x_246 = l_Lean_Meta_isClassExpensive___main(x_23, x_10, x_245); +if (lean_obj_tag(x_246) == 0) +{ +lean_object* x_247; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +if (lean_obj_tag(x_247) == 0) +{ +lean_object* x_248; lean_object* x_249; lean_object* x_250; +lean_dec(x_19); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +lean_dec(x_246); +x_249 = lean_unsigned_to_nat(1u); +x_250 = lean_nat_add(x_9, x_249); +lean_dec(x_9); +x_9 = x_250; +x_11 = x_248; +goto _start; +} +else +{ +lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; uint8_t x_257; +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +x_254 = lean_ctor_get(x_247, 0); +lean_inc(x_254); +lean_dec(x_247); +x_255 = lean_unsigned_to_nat(1u); +x_256 = lean_nat_add(x_9, x_255); +lean_dec(x_9); +x_257 = !lean_is_exclusive(x_252); +if (x_257 == 0) +{ +lean_object* x_258; uint8_t x_259; +x_258 = lean_ctor_get(x_252, 2); +x_259 = !lean_is_exclusive(x_258); +if (x_259 == 0) +{ +lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_316; uint8_t x_317; +x_260 = lean_ctor_get(x_258, 2); +x_316 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +lean_ctor_set(x_258, 2, x_316); +x_317 = !lean_is_exclusive(x_10); +if (x_317 == 0) +{ +lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; +x_318 = lean_ctor_get(x_10, 2); +x_319 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_319, 0, x_254); +lean_ctor_set(x_319, 1, x_19); +x_320 = lean_array_push(x_318, x_319); +lean_ctor_set(x_10, 2, x_320); +x_321 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_256, x_10, x_252); +if (lean_obj_tag(x_321) == 0) +{ +lean_object* x_322; lean_object* x_323; lean_object* x_324; +x_322 = lean_ctor_get(x_321, 0); +lean_inc(x_322); +x_323 = lean_ctor_get(x_321, 1); +lean_inc(x_323); +lean_dec(x_321); +x_324 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_324, 0, x_322); +x_261 = x_324; +x_262 = x_323; +goto block_315; +} +else +{ +lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_325 = lean_ctor_get(x_321, 0); +lean_inc(x_325); +x_326 = lean_ctor_get(x_321, 1); +lean_inc(x_326); +lean_dec(x_321); +x_327 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_327, 0, x_325); +x_261 = x_327; +x_262 = x_326; +goto block_315; +} +} +else +{ +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; +x_328 = lean_ctor_get(x_10, 0); +x_329 = lean_ctor_get(x_10, 1); +x_330 = lean_ctor_get(x_10, 2); +x_331 = lean_ctor_get(x_10, 3); +x_332 = lean_ctor_get(x_10, 4); +lean_inc(x_332); +lean_inc(x_331); +lean_inc(x_330); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_10); +x_333 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_333, 0, x_254); +lean_ctor_set(x_333, 1, x_19); +x_334 = lean_array_push(x_330, x_333); +x_335 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_335, 0, x_328); +lean_ctor_set(x_335, 1, x_329); +lean_ctor_set(x_335, 2, x_334); +lean_ctor_set(x_335, 3, x_331); +lean_ctor_set(x_335, 4, x_332); +x_336 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_256, x_335, x_252); +if (lean_obj_tag(x_336) == 0) +{ +lean_object* x_337; lean_object* x_338; lean_object* x_339; +x_337 = lean_ctor_get(x_336, 0); +lean_inc(x_337); +x_338 = lean_ctor_get(x_336, 1); +lean_inc(x_338); +lean_dec(x_336); +x_339 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_339, 0, x_337); +x_261 = x_339; +x_262 = x_338; +goto block_315; +} +else +{ +lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_340 = lean_ctor_get(x_336, 0); +lean_inc(x_340); +x_341 = lean_ctor_get(x_336, 1); +lean_inc(x_341); +lean_dec(x_336); +x_342 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_342, 0, x_340); +x_261 = x_342; +x_262 = x_341; +goto block_315; +} +} +block_315: +{ +if (lean_obj_tag(x_261) == 0) +{ +lean_object* x_263; lean_object* x_264; uint8_t x_265; +x_263 = lean_ctor_get(x_262, 2); +lean_inc(x_263); +x_264 = lean_ctor_get(x_261, 0); +lean_inc(x_264); +lean_dec(x_261); +x_265 = !lean_is_exclusive(x_262); +if (x_265 == 0) +{ +lean_object* x_266; uint8_t x_267; +x_266 = lean_ctor_get(x_262, 2); +lean_dec(x_266); +x_267 = !lean_is_exclusive(x_263); +if (x_267 == 0) +{ +lean_object* x_268; lean_object* x_269; +x_268 = lean_ctor_get(x_263, 2); +lean_dec(x_268); +lean_ctor_set(x_263, 2, x_260); +if (lean_is_scalar(x_253)) { + x_269 = lean_alloc_ctor(1, 2, 0); +} else { + x_269 = x_253; + lean_ctor_set_tag(x_269, 1); +} +lean_ctor_set(x_269, 0, x_264); +lean_ctor_set(x_269, 1, x_262); +return x_269; +} +else +{ +lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; +x_270 = lean_ctor_get(x_263, 0); +x_271 = lean_ctor_get(x_263, 1); +x_272 = lean_ctor_get(x_263, 3); +x_273 = lean_ctor_get(x_263, 4); +lean_inc(x_273); +lean_inc(x_272); +lean_inc(x_271); +lean_inc(x_270); +lean_dec(x_263); +x_274 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_274, 0, x_270); +lean_ctor_set(x_274, 1, x_271); +lean_ctor_set(x_274, 2, x_260); +lean_ctor_set(x_274, 3, x_272); +lean_ctor_set(x_274, 4, x_273); +lean_ctor_set(x_262, 2, x_274); +if (lean_is_scalar(x_253)) { + x_275 = lean_alloc_ctor(1, 2, 0); +} else { + x_275 = x_253; + lean_ctor_set_tag(x_275, 1); +} +lean_ctor_set(x_275, 0, x_264); +lean_ctor_set(x_275, 1, x_262); +return x_275; +} +} +else +{ +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; +x_276 = lean_ctor_get(x_262, 0); +x_277 = lean_ctor_get(x_262, 1); +x_278 = lean_ctor_get(x_262, 3); +x_279 = lean_ctor_get(x_262, 4); +x_280 = lean_ctor_get(x_262, 5); +lean_inc(x_280); +lean_inc(x_279); +lean_inc(x_278); +lean_inc(x_277); +lean_inc(x_276); +lean_dec(x_262); +x_281 = lean_ctor_get(x_263, 0); +lean_inc(x_281); +x_282 = lean_ctor_get(x_263, 1); +lean_inc(x_282); +x_283 = lean_ctor_get(x_263, 3); +lean_inc(x_283); +x_284 = lean_ctor_get(x_263, 4); +lean_inc(x_284); +if (lean_is_exclusive(x_263)) { + lean_ctor_release(x_263, 0); + lean_ctor_release(x_263, 1); + lean_ctor_release(x_263, 2); + lean_ctor_release(x_263, 3); + lean_ctor_release(x_263, 4); + x_285 = x_263; +} else { + lean_dec_ref(x_263); + x_285 = lean_box(0); +} +if (lean_is_scalar(x_285)) { + x_286 = lean_alloc_ctor(0, 5, 0); +} else { + x_286 = x_285; +} +lean_ctor_set(x_286, 0, x_281); +lean_ctor_set(x_286, 1, x_282); +lean_ctor_set(x_286, 2, x_260); +lean_ctor_set(x_286, 3, x_283); +lean_ctor_set(x_286, 4, x_284); +x_287 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_287, 0, x_276); +lean_ctor_set(x_287, 1, x_277); +lean_ctor_set(x_287, 2, x_286); +lean_ctor_set(x_287, 3, x_278); +lean_ctor_set(x_287, 4, x_279); +lean_ctor_set(x_287, 5, x_280); +if (lean_is_scalar(x_253)) { + x_288 = lean_alloc_ctor(1, 2, 0); +} else { + x_288 = x_253; + lean_ctor_set_tag(x_288, 1); +} +lean_ctor_set(x_288, 0, x_264); +lean_ctor_set(x_288, 1, x_287); +return x_288; +} +} +else +{ +lean_object* x_289; lean_object* x_290; uint8_t x_291; +x_289 = lean_ctor_get(x_262, 2); +lean_inc(x_289); +x_290 = lean_ctor_get(x_261, 0); +lean_inc(x_290); +lean_dec(x_261); +x_291 = !lean_is_exclusive(x_262); +if (x_291 == 0) +{ +lean_object* x_292; uint8_t x_293; +x_292 = lean_ctor_get(x_262, 2); +lean_dec(x_292); +x_293 = !lean_is_exclusive(x_289); +if (x_293 == 0) +{ +lean_object* x_294; lean_object* x_295; +x_294 = lean_ctor_get(x_289, 2); +lean_dec(x_294); +lean_ctor_set(x_289, 2, x_260); +if (lean_is_scalar(x_253)) { + x_295 = lean_alloc_ctor(0, 2, 0); +} else { + x_295 = x_253; +} +lean_ctor_set(x_295, 0, x_290); +lean_ctor_set(x_295, 1, x_262); +return x_295; +} +else +{ +lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; +x_296 = lean_ctor_get(x_289, 0); +x_297 = lean_ctor_get(x_289, 1); +x_298 = lean_ctor_get(x_289, 3); +x_299 = lean_ctor_get(x_289, 4); +lean_inc(x_299); +lean_inc(x_298); +lean_inc(x_297); +lean_inc(x_296); +lean_dec(x_289); +x_300 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_300, 0, x_296); +lean_ctor_set(x_300, 1, x_297); +lean_ctor_set(x_300, 2, x_260); +lean_ctor_set(x_300, 3, x_298); +lean_ctor_set(x_300, 4, x_299); +lean_ctor_set(x_262, 2, x_300); +if (lean_is_scalar(x_253)) { + x_301 = lean_alloc_ctor(0, 2, 0); +} else { + x_301 = x_253; +} +lean_ctor_set(x_301, 0, x_290); +lean_ctor_set(x_301, 1, x_262); +return x_301; +} +} +else +{ +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; +x_302 = lean_ctor_get(x_262, 0); +x_303 = lean_ctor_get(x_262, 1); +x_304 = lean_ctor_get(x_262, 3); +x_305 = lean_ctor_get(x_262, 4); +x_306 = lean_ctor_get(x_262, 5); +lean_inc(x_306); +lean_inc(x_305); +lean_inc(x_304); +lean_inc(x_303); +lean_inc(x_302); +lean_dec(x_262); +x_307 = lean_ctor_get(x_289, 0); +lean_inc(x_307); +x_308 = lean_ctor_get(x_289, 1); +lean_inc(x_308); +x_309 = lean_ctor_get(x_289, 3); +lean_inc(x_309); +x_310 = lean_ctor_get(x_289, 4); +lean_inc(x_310); +if (lean_is_exclusive(x_289)) { + lean_ctor_release(x_289, 0); + lean_ctor_release(x_289, 1); + lean_ctor_release(x_289, 2); + lean_ctor_release(x_289, 3); + lean_ctor_release(x_289, 4); + x_311 = x_289; +} else { + lean_dec_ref(x_289); + x_311 = lean_box(0); +} +if (lean_is_scalar(x_311)) { + x_312 = lean_alloc_ctor(0, 5, 0); +} else { + x_312 = x_311; +} +lean_ctor_set(x_312, 0, x_307); +lean_ctor_set(x_312, 1, x_308); +lean_ctor_set(x_312, 2, x_260); +lean_ctor_set(x_312, 3, x_309); +lean_ctor_set(x_312, 4, x_310); +x_313 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_313, 0, x_302); +lean_ctor_set(x_313, 1, x_303); +lean_ctor_set(x_313, 2, x_312); +lean_ctor_set(x_313, 3, x_304); +lean_ctor_set(x_313, 4, x_305); +lean_ctor_set(x_313, 5, x_306); +if (lean_is_scalar(x_253)) { + x_314 = lean_alloc_ctor(0, 2, 0); +} else { + x_314 = x_253; +} +lean_ctor_set(x_314, 0, x_290); +lean_ctor_set(x_314, 1, x_313); +return x_314; +} +} +} +} +else +{ +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_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; +x_343 = lean_ctor_get(x_258, 0); +x_344 = lean_ctor_get(x_258, 1); +x_345 = lean_ctor_get(x_258, 2); +x_346 = lean_ctor_get(x_258, 3); +x_347 = lean_ctor_get(x_258, 4); +lean_inc(x_347); +lean_inc(x_346); +lean_inc(x_345); +lean_inc(x_344); +lean_inc(x_343); +lean_dec(x_258); +x_383 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +x_384 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_384, 0, x_343); +lean_ctor_set(x_384, 1, x_344); +lean_ctor_set(x_384, 2, x_383); +lean_ctor_set(x_384, 3, x_346); +lean_ctor_set(x_384, 4, x_347); +lean_ctor_set(x_252, 2, x_384); +x_385 = lean_ctor_get(x_10, 0); +lean_inc(x_385); +x_386 = lean_ctor_get(x_10, 1); +lean_inc(x_386); +x_387 = lean_ctor_get(x_10, 2); +lean_inc(x_387); +x_388 = lean_ctor_get(x_10, 3); +lean_inc(x_388); +x_389 = lean_ctor_get(x_10, 4); +lean_inc(x_389); +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + x_390 = x_10; +} else { + lean_dec_ref(x_10); + x_390 = lean_box(0); +} +x_391 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_391, 0, x_254); +lean_ctor_set(x_391, 1, x_19); +x_392 = lean_array_push(x_387, x_391); +if (lean_is_scalar(x_390)) { + x_393 = lean_alloc_ctor(0, 5, 0); +} else { + x_393 = x_390; +} +lean_ctor_set(x_393, 0, x_385); +lean_ctor_set(x_393, 1, x_386); +lean_ctor_set(x_393, 2, x_392); +lean_ctor_set(x_393, 3, x_388); +lean_ctor_set(x_393, 4, x_389); +x_394 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_256, x_393, x_252); +if (lean_obj_tag(x_394) == 0) +{ +lean_object* x_395; lean_object* x_396; lean_object* x_397; +x_395 = lean_ctor_get(x_394, 0); +lean_inc(x_395); +x_396 = lean_ctor_get(x_394, 1); +lean_inc(x_396); +lean_dec(x_394); +x_397 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_397, 0, x_395); +x_348 = x_397; +x_349 = x_396; +goto block_382; +} +else +{ +lean_object* x_398; lean_object* x_399; lean_object* x_400; +x_398 = lean_ctor_get(x_394, 0); +lean_inc(x_398); +x_399 = lean_ctor_get(x_394, 1); +lean_inc(x_399); +lean_dec(x_394); +x_400 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_400, 0, x_398); +x_348 = x_400; +x_349 = x_399; +goto block_382; +} +block_382: +{ +if (lean_obj_tag(x_348) == 0) +{ +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; +x_350 = lean_ctor_get(x_349, 2); +lean_inc(x_350); +x_351 = lean_ctor_get(x_348, 0); +lean_inc(x_351); +lean_dec(x_348); +x_352 = lean_ctor_get(x_349, 0); +lean_inc(x_352); +x_353 = lean_ctor_get(x_349, 1); +lean_inc(x_353); +x_354 = lean_ctor_get(x_349, 3); +lean_inc(x_354); +x_355 = lean_ctor_get(x_349, 4); +lean_inc(x_355); +x_356 = lean_ctor_get(x_349, 5); +lean_inc(x_356); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + lean_ctor_release(x_349, 1); + lean_ctor_release(x_349, 2); + lean_ctor_release(x_349, 3); + lean_ctor_release(x_349, 4); + lean_ctor_release(x_349, 5); + x_357 = x_349; +} else { + lean_dec_ref(x_349); + x_357 = lean_box(0); +} +x_358 = lean_ctor_get(x_350, 0); +lean_inc(x_358); +x_359 = lean_ctor_get(x_350, 1); +lean_inc(x_359); +x_360 = lean_ctor_get(x_350, 3); +lean_inc(x_360); +x_361 = lean_ctor_get(x_350, 4); +lean_inc(x_361); +if (lean_is_exclusive(x_350)) { + lean_ctor_release(x_350, 0); + lean_ctor_release(x_350, 1); + lean_ctor_release(x_350, 2); + lean_ctor_release(x_350, 3); + lean_ctor_release(x_350, 4); + x_362 = x_350; +} else { + lean_dec_ref(x_350); + x_362 = lean_box(0); +} +if (lean_is_scalar(x_362)) { + x_363 = lean_alloc_ctor(0, 5, 0); +} else { + x_363 = x_362; +} +lean_ctor_set(x_363, 0, x_358); +lean_ctor_set(x_363, 1, x_359); +lean_ctor_set(x_363, 2, x_345); +lean_ctor_set(x_363, 3, x_360); +lean_ctor_set(x_363, 4, x_361); +if (lean_is_scalar(x_357)) { + x_364 = lean_alloc_ctor(0, 6, 0); +} else { + x_364 = x_357; +} +lean_ctor_set(x_364, 0, x_352); +lean_ctor_set(x_364, 1, x_353); +lean_ctor_set(x_364, 2, x_363); +lean_ctor_set(x_364, 3, x_354); +lean_ctor_set(x_364, 4, x_355); +lean_ctor_set(x_364, 5, x_356); +if (lean_is_scalar(x_253)) { + x_365 = lean_alloc_ctor(1, 2, 0); +} else { + x_365 = x_253; + lean_ctor_set_tag(x_365, 1); +} +lean_ctor_set(x_365, 0, x_351); +lean_ctor_set(x_365, 1, x_364); +return x_365; +} +else +{ +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_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; +x_366 = lean_ctor_get(x_349, 2); +lean_inc(x_366); +x_367 = lean_ctor_get(x_348, 0); +lean_inc(x_367); +lean_dec(x_348); +x_368 = lean_ctor_get(x_349, 0); +lean_inc(x_368); +x_369 = lean_ctor_get(x_349, 1); +lean_inc(x_369); +x_370 = lean_ctor_get(x_349, 3); +lean_inc(x_370); +x_371 = lean_ctor_get(x_349, 4); +lean_inc(x_371); +x_372 = lean_ctor_get(x_349, 5); +lean_inc(x_372); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + lean_ctor_release(x_349, 1); + lean_ctor_release(x_349, 2); + lean_ctor_release(x_349, 3); + lean_ctor_release(x_349, 4); + lean_ctor_release(x_349, 5); + x_373 = x_349; +} else { + lean_dec_ref(x_349); + x_373 = lean_box(0); +} +x_374 = lean_ctor_get(x_366, 0); +lean_inc(x_374); +x_375 = lean_ctor_get(x_366, 1); +lean_inc(x_375); +x_376 = lean_ctor_get(x_366, 3); +lean_inc(x_376); +x_377 = lean_ctor_get(x_366, 4); +lean_inc(x_377); +if (lean_is_exclusive(x_366)) { + lean_ctor_release(x_366, 0); + lean_ctor_release(x_366, 1); + lean_ctor_release(x_366, 2); + lean_ctor_release(x_366, 3); + lean_ctor_release(x_366, 4); + x_378 = x_366; +} else { + lean_dec_ref(x_366); + x_378 = lean_box(0); +} +if (lean_is_scalar(x_378)) { + x_379 = lean_alloc_ctor(0, 5, 0); +} else { + x_379 = x_378; +} +lean_ctor_set(x_379, 0, x_374); +lean_ctor_set(x_379, 1, x_375); +lean_ctor_set(x_379, 2, x_345); +lean_ctor_set(x_379, 3, x_376); +lean_ctor_set(x_379, 4, x_377); +if (lean_is_scalar(x_373)) { + x_380 = lean_alloc_ctor(0, 6, 0); +} else { + x_380 = x_373; +} +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_369); +lean_ctor_set(x_380, 2, x_379); +lean_ctor_set(x_380, 3, x_370); +lean_ctor_set(x_380, 4, x_371); +lean_ctor_set(x_380, 5, x_372); +if (lean_is_scalar(x_253)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_253; +} +lean_ctor_set(x_381, 0, x_367); +lean_ctor_set(x_381, 1, x_380); +return x_381; +} +} +} +} +else +{ +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_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_401 = lean_ctor_get(x_252, 2); +x_402 = lean_ctor_get(x_252, 0); +x_403 = lean_ctor_get(x_252, 1); +x_404 = lean_ctor_get(x_252, 3); +x_405 = lean_ctor_get(x_252, 4); +x_406 = lean_ctor_get(x_252, 5); +lean_inc(x_406); +lean_inc(x_405); +lean_inc(x_404); +lean_inc(x_401); +lean_inc(x_403); +lean_inc(x_402); +lean_dec(x_252); +x_407 = lean_ctor_get(x_401, 0); +lean_inc(x_407); +x_408 = lean_ctor_get(x_401, 1); +lean_inc(x_408); +x_409 = lean_ctor_get(x_401, 2); +lean_inc(x_409); +x_410 = lean_ctor_get(x_401, 3); +lean_inc(x_410); +x_411 = lean_ctor_get(x_401, 4); +lean_inc(x_411); +if (lean_is_exclusive(x_401)) { + lean_ctor_release(x_401, 0); + lean_ctor_release(x_401, 1); + lean_ctor_release(x_401, 2); + lean_ctor_release(x_401, 3); + lean_ctor_release(x_401, 4); + x_412 = x_401; +} else { + lean_dec_ref(x_401); + x_412 = lean_box(0); +} +x_448 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +if (lean_is_scalar(x_412)) { + x_449 = lean_alloc_ctor(0, 5, 0); +} else { + x_449 = x_412; +} +lean_ctor_set(x_449, 0, x_407); +lean_ctor_set(x_449, 1, x_408); +lean_ctor_set(x_449, 2, x_448); +lean_ctor_set(x_449, 3, x_410); +lean_ctor_set(x_449, 4, x_411); +x_450 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_450, 0, x_402); +lean_ctor_set(x_450, 1, x_403); +lean_ctor_set(x_450, 2, x_449); +lean_ctor_set(x_450, 3, x_404); +lean_ctor_set(x_450, 4, x_405); +lean_ctor_set(x_450, 5, x_406); +x_451 = lean_ctor_get(x_10, 0); +lean_inc(x_451); +x_452 = lean_ctor_get(x_10, 1); +lean_inc(x_452); +x_453 = lean_ctor_get(x_10, 2); +lean_inc(x_453); +x_454 = lean_ctor_get(x_10, 3); +lean_inc(x_454); +x_455 = lean_ctor_get(x_10, 4); +lean_inc(x_455); +if (lean_is_exclusive(x_10)) { + lean_ctor_release(x_10, 0); + lean_ctor_release(x_10, 1); + lean_ctor_release(x_10, 2); + lean_ctor_release(x_10, 3); + lean_ctor_release(x_10, 4); + x_456 = x_10; +} else { + lean_dec_ref(x_10); + x_456 = lean_box(0); +} +x_457 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_457, 0, x_254); +lean_ctor_set(x_457, 1, x_19); +x_458 = lean_array_push(x_453, x_457); +if (lean_is_scalar(x_456)) { + x_459 = lean_alloc_ctor(0, 5, 0); +} else { + x_459 = x_456; +} +lean_ctor_set(x_459, 0, x_451); +lean_ctor_set(x_459, 1, x_452); +lean_ctor_set(x_459, 2, x_458); +lean_ctor_set(x_459, 3, x_454); +lean_ctor_set(x_459, 4, x_455); +x_460 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_256, x_459, x_450); +if (lean_obj_tag(x_460) == 0) +{ +lean_object* x_461; lean_object* x_462; lean_object* x_463; +x_461 = lean_ctor_get(x_460, 0); +lean_inc(x_461); +x_462 = lean_ctor_get(x_460, 1); +lean_inc(x_462); +lean_dec(x_460); +x_463 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_463, 0, x_461); +x_413 = x_463; +x_414 = x_462; +goto block_447; +} +else +{ +lean_object* x_464; lean_object* x_465; lean_object* x_466; +x_464 = lean_ctor_get(x_460, 0); +lean_inc(x_464); +x_465 = lean_ctor_get(x_460, 1); +lean_inc(x_465); +lean_dec(x_460); +x_466 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_466, 0, x_464); +x_413 = x_466; +x_414 = x_465; +goto block_447; +} +block_447: +{ +if (lean_obj_tag(x_413) == 0) +{ +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; +x_415 = lean_ctor_get(x_414, 2); +lean_inc(x_415); +x_416 = lean_ctor_get(x_413, 0); +lean_inc(x_416); +lean_dec(x_413); +x_417 = lean_ctor_get(x_414, 0); +lean_inc(x_417); +x_418 = lean_ctor_get(x_414, 1); +lean_inc(x_418); +x_419 = lean_ctor_get(x_414, 3); +lean_inc(x_419); +x_420 = lean_ctor_get(x_414, 4); +lean_inc(x_420); +x_421 = lean_ctor_get(x_414, 5); +lean_inc(x_421); +if (lean_is_exclusive(x_414)) { + lean_ctor_release(x_414, 0); + lean_ctor_release(x_414, 1); + lean_ctor_release(x_414, 2); + lean_ctor_release(x_414, 3); + lean_ctor_release(x_414, 4); + lean_ctor_release(x_414, 5); + x_422 = x_414; +} else { + lean_dec_ref(x_414); + x_422 = lean_box(0); +} +x_423 = lean_ctor_get(x_415, 0); +lean_inc(x_423); +x_424 = lean_ctor_get(x_415, 1); +lean_inc(x_424); +x_425 = lean_ctor_get(x_415, 3); +lean_inc(x_425); +x_426 = lean_ctor_get(x_415, 4); +lean_inc(x_426); +if (lean_is_exclusive(x_415)) { + lean_ctor_release(x_415, 0); + lean_ctor_release(x_415, 1); + lean_ctor_release(x_415, 2); + lean_ctor_release(x_415, 3); + lean_ctor_release(x_415, 4); + x_427 = x_415; +} else { + lean_dec_ref(x_415); + x_427 = lean_box(0); +} +if (lean_is_scalar(x_427)) { + x_428 = lean_alloc_ctor(0, 5, 0); +} else { + x_428 = x_427; +} +lean_ctor_set(x_428, 0, x_423); +lean_ctor_set(x_428, 1, x_424); +lean_ctor_set(x_428, 2, x_409); +lean_ctor_set(x_428, 3, x_425); +lean_ctor_set(x_428, 4, x_426); +if (lean_is_scalar(x_422)) { + x_429 = lean_alloc_ctor(0, 6, 0); +} else { + x_429 = x_422; +} +lean_ctor_set(x_429, 0, x_417); +lean_ctor_set(x_429, 1, x_418); +lean_ctor_set(x_429, 2, x_428); +lean_ctor_set(x_429, 3, x_419); +lean_ctor_set(x_429, 4, x_420); +lean_ctor_set(x_429, 5, x_421); +if (lean_is_scalar(x_253)) { + x_430 = lean_alloc_ctor(1, 2, 0); +} else { + x_430 = x_253; + lean_ctor_set_tag(x_430, 1); +} +lean_ctor_set(x_430, 0, x_416); +lean_ctor_set(x_430, 1, x_429); +return x_430; +} +else +{ +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; +x_431 = lean_ctor_get(x_414, 2); +lean_inc(x_431); +x_432 = lean_ctor_get(x_413, 0); +lean_inc(x_432); +lean_dec(x_413); +x_433 = lean_ctor_get(x_414, 0); +lean_inc(x_433); +x_434 = lean_ctor_get(x_414, 1); +lean_inc(x_434); +x_435 = lean_ctor_get(x_414, 3); +lean_inc(x_435); +x_436 = lean_ctor_get(x_414, 4); +lean_inc(x_436); +x_437 = lean_ctor_get(x_414, 5); +lean_inc(x_437); +if (lean_is_exclusive(x_414)) { + lean_ctor_release(x_414, 0); + lean_ctor_release(x_414, 1); + lean_ctor_release(x_414, 2); + lean_ctor_release(x_414, 3); + lean_ctor_release(x_414, 4); + lean_ctor_release(x_414, 5); + x_438 = x_414; +} else { + lean_dec_ref(x_414); + x_438 = lean_box(0); +} +x_439 = lean_ctor_get(x_431, 0); +lean_inc(x_439); +x_440 = lean_ctor_get(x_431, 1); +lean_inc(x_440); +x_441 = lean_ctor_get(x_431, 3); +lean_inc(x_441); +x_442 = lean_ctor_get(x_431, 4); +lean_inc(x_442); +if (lean_is_exclusive(x_431)) { + lean_ctor_release(x_431, 0); + lean_ctor_release(x_431, 1); + lean_ctor_release(x_431, 2); + lean_ctor_release(x_431, 3); + lean_ctor_release(x_431, 4); + x_443 = x_431; +} else { + lean_dec_ref(x_431); + x_443 = lean_box(0); +} +if (lean_is_scalar(x_443)) { + x_444 = lean_alloc_ctor(0, 5, 0); +} else { + x_444 = x_443; +} +lean_ctor_set(x_444, 0, x_439); +lean_ctor_set(x_444, 1, x_440); +lean_ctor_set(x_444, 2, x_409); +lean_ctor_set(x_444, 3, x_441); +lean_ctor_set(x_444, 4, x_442); +if (lean_is_scalar(x_438)) { + x_445 = lean_alloc_ctor(0, 6, 0); +} else { + x_445 = x_438; +} +lean_ctor_set(x_445, 0, x_433); +lean_ctor_set(x_445, 1, x_434); +lean_ctor_set(x_445, 2, x_444); +lean_ctor_set(x_445, 3, x_435); +lean_ctor_set(x_445, 4, x_436); +lean_ctor_set(x_445, 5, x_437); +if (lean_is_scalar(x_253)) { + x_446 = lean_alloc_ctor(0, 2, 0); +} else { + x_446 = x_253; +} +lean_ctor_set(x_446, 0, x_432); +lean_ctor_set(x_446, 1, x_445); +return x_446; +} +} +} +} +} +else +{ +uint8_t x_467; +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_467 = !lean_is_exclusive(x_246); +if (x_467 == 0) +{ +return x_246; +} +else +{ +lean_object* x_468; lean_object* x_469; lean_object* x_470; +x_468 = lean_ctor_get(x_246, 0); +x_469 = lean_ctor_get(x_246, 1); +lean_inc(x_469); +lean_inc(x_468); +lean_dec(x_246); +x_470 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_470, 0, x_468); +lean_ctor_set(x_470, 1, x_469); +return x_470; +} +} +} +} +} +else +{ +uint8_t x_471; +lean_dec(x_23); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_471 = !lean_is_exclusive(x_24); +if (x_471 == 0) +{ +return x_24; +} +else +{ +lean_object* x_472; lean_object* x_473; lean_object* x_474; +x_472 = lean_ctor_get(x_24, 0); +x_473 = lean_ctor_get(x_24, 1); +lean_inc(x_473); +lean_inc(x_472); +lean_dec(x_24); +x_474 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_474, 0, x_472); +lean_ctor_set(x_474, 1, x_473); +return x_474; +} +} +} +else +{ +uint8_t x_475; +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_475 = !lean_is_exclusive(x_20); +if (x_475 == 0) +{ +return x_20; +} +else +{ +lean_object* x_476; lean_object* x_477; lean_object* x_478; +x_476 = lean_ctor_get(x_20, 0); +x_477 = lean_ctor_get(x_20, 1); +lean_inc(x_477); +lean_inc(x_476); +lean_dec(x_20); +x_478 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_478, 0, x_476); +lean_ctor_set(x_478, 1, x_477); +return x_478; +} +} +} +} +} +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_2); +x_7 = lean_nat_dec_lt(x_3, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_3); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1(x_1, x_1, x_8, x_8, x_4, x_5); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_array_fget(x_2, x_3); +lean_inc(x_4); +x_11 = l_Lean_Meta_getFVarLocalDecl(x_10, x_4, x_5); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +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_Lean_LocalDecl_type(x_12); +lean_dec(x_12); +lean_inc(x_4); +lean_inc(x_14); +x_15 = l_Lean_Meta_isClassQuick___main(x_14, x_4, x_13); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +switch (lean_obj_tag(x_16)) { +case 0: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_dec(x_14); +lean_dec(x_10); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_add(x_3, x_18); +lean_dec(x_3); +x_3 = x_19; +x_5 = x_17; +goto _start; +} +case 1: +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +lean_dec(x_14); +x_21 = lean_ctor_get(x_15, 1); +lean_inc(x_21); +if (lean_is_exclusive(x_15)) { + lean_ctor_release(x_15, 0); + lean_ctor_release(x_15, 1); + x_22 = x_15; +} else { + lean_dec_ref(x_15); + x_22 = lean_box(0); +} +x_23 = lean_ctor_get(x_16, 0); +lean_inc(x_23); +lean_dec(x_16); +x_24 = lean_unsigned_to_nat(1u); +x_25 = lean_nat_add(x_3, x_24); +lean_dec(x_3); +x_26 = !lean_is_exclusive(x_21); +if (x_26 == 0) +{ +lean_object* x_27; uint8_t x_28; +x_27 = lean_ctor_get(x_21, 2); +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_85; uint8_t x_86; +x_29 = lean_ctor_get(x_27, 2); +x_85 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +lean_ctor_set(x_27, 2, x_85); +x_86 = !lean_is_exclusive(x_4); +if (x_86 == 0) +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_87 = lean_ctor_get(x_4, 2); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_23); +lean_ctor_set(x_88, 1, x_10); +x_89 = lean_array_push(x_87, x_88); +lean_ctor_set(x_4, 2, x_89); +x_90 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_25, x_4, x_21); +if (lean_obj_tag(x_90) == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_90, 1); +lean_inc(x_92); +lean_dec(x_90); +x_93 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_93, 0, x_91); +x_30 = x_93; +x_31 = x_92; +goto block_84; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_90, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_90, 1); +lean_inc(x_95); +lean_dec(x_90); +x_96 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_96, 0, x_94); +x_30 = x_96; +x_31 = x_95; +goto block_84; +} +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_97 = lean_ctor_get(x_4, 0); +x_98 = lean_ctor_get(x_4, 1); +x_99 = lean_ctor_get(x_4, 2); +x_100 = lean_ctor_get(x_4, 3); +x_101 = lean_ctor_get(x_4, 4); +lean_inc(x_101); +lean_inc(x_100); +lean_inc(x_99); +lean_inc(x_98); +lean_inc(x_97); +lean_dec(x_4); +x_102 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_102, 0, x_23); +lean_ctor_set(x_102, 1, x_10); +x_103 = lean_array_push(x_99, x_102); +x_104 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_104, 0, x_97); +lean_ctor_set(x_104, 1, x_98); +lean_ctor_set(x_104, 2, x_103); +lean_ctor_set(x_104, 3, x_100); +lean_ctor_set(x_104, 4, x_101); +x_105 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_25, x_104, x_21); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; +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 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_106); +x_30 = x_108; +x_31 = x_107; +goto block_84; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_105, 0); +lean_inc(x_109); +x_110 = lean_ctor_get(x_105, 1); +lean_inc(x_110); +lean_dec(x_105); +x_111 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_111, 0, x_109); +x_30 = x_111; +x_31 = x_110; +goto block_84; +} +} +block_84: +{ +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_ctor_get(x_31, 2); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 0); +lean_inc(x_33); +lean_dec(x_30); +x_34 = !lean_is_exclusive(x_31); +if (x_34 == 0) +{ +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_31, 2); +lean_dec(x_35); +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_32, 2); +lean_dec(x_37); +lean_ctor_set(x_32, 2, x_29); +if (lean_is_scalar(x_22)) { + x_38 = lean_alloc_ctor(1, 2, 0); +} else { + x_38 = x_22; + lean_ctor_set_tag(x_38, 1); +} +lean_ctor_set(x_38, 0, x_33); +lean_ctor_set(x_38, 1, x_31); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_39 = lean_ctor_get(x_32, 0); +x_40 = lean_ctor_get(x_32, 1); +x_41 = lean_ctor_get(x_32, 3); +x_42 = lean_ctor_get(x_32, 4); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_32); +x_43 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_43, 0, x_39); +lean_ctor_set(x_43, 1, x_40); +lean_ctor_set(x_43, 2, x_29); +lean_ctor_set(x_43, 3, x_41); +lean_ctor_set(x_43, 4, x_42); +lean_ctor_set(x_31, 2, x_43); +if (lean_is_scalar(x_22)) { + x_44 = lean_alloc_ctor(1, 2, 0); +} else { + x_44 = x_22; + lean_ctor_set_tag(x_44, 1); +} +lean_ctor_set(x_44, 0, x_33); +lean_ctor_set(x_44, 1, x_31); +return x_44; +} +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_45 = lean_ctor_get(x_31, 0); +x_46 = lean_ctor_get(x_31, 1); +x_47 = lean_ctor_get(x_31, 3); +x_48 = lean_ctor_get(x_31, 4); +x_49 = lean_ctor_get(x_31, 5); +lean_inc(x_49); +lean_inc(x_48); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_31); +x_50 = lean_ctor_get(x_32, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_32, 1); +lean_inc(x_51); +x_52 = lean_ctor_get(x_32, 3); +lean_inc(x_52); +x_53 = lean_ctor_get(x_32, 4); +lean_inc(x_53); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + lean_ctor_release(x_32, 3); + lean_ctor_release(x_32, 4); + x_54 = x_32; +} else { + lean_dec_ref(x_32); + x_54 = lean_box(0); +} +if (lean_is_scalar(x_54)) { + x_55 = lean_alloc_ctor(0, 5, 0); +} else { + x_55 = x_54; +} +lean_ctor_set(x_55, 0, x_50); +lean_ctor_set(x_55, 1, x_51); +lean_ctor_set(x_55, 2, x_29); +lean_ctor_set(x_55, 3, x_52); +lean_ctor_set(x_55, 4, x_53); +x_56 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_56, 0, x_45); +lean_ctor_set(x_56, 1, x_46); +lean_ctor_set(x_56, 2, x_55); +lean_ctor_set(x_56, 3, x_47); +lean_ctor_set(x_56, 4, x_48); +lean_ctor_set(x_56, 5, x_49); +if (lean_is_scalar(x_22)) { + x_57 = lean_alloc_ctor(1, 2, 0); +} else { + x_57 = x_22; + lean_ctor_set_tag(x_57, 1); +} +lean_ctor_set(x_57, 0, x_33); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +else +{ +lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_58 = lean_ctor_get(x_31, 2); +lean_inc(x_58); +x_59 = lean_ctor_get(x_30, 0); +lean_inc(x_59); +lean_dec(x_30); +x_60 = !lean_is_exclusive(x_31); +if (x_60 == 0) +{ +lean_object* x_61; uint8_t x_62; +x_61 = lean_ctor_get(x_31, 2); +lean_dec(x_61); +x_62 = !lean_is_exclusive(x_58); +if (x_62 == 0) +{ +lean_object* x_63; lean_object* x_64; +x_63 = lean_ctor_get(x_58, 2); +lean_dec(x_63); +lean_ctor_set(x_58, 2, x_29); +if (lean_is_scalar(x_22)) { + x_64 = lean_alloc_ctor(0, 2, 0); +} else { + x_64 = x_22; +} +lean_ctor_set(x_64, 0, x_59); +lean_ctor_set(x_64, 1, x_31); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_65 = lean_ctor_get(x_58, 0); +x_66 = lean_ctor_get(x_58, 1); +x_67 = lean_ctor_get(x_58, 3); +x_68 = lean_ctor_get(x_58, 4); +lean_inc(x_68); +lean_inc(x_67); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_58); +x_69 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_66); +lean_ctor_set(x_69, 2, x_29); +lean_ctor_set(x_69, 3, x_67); +lean_ctor_set(x_69, 4, x_68); +lean_ctor_set(x_31, 2, x_69); +if (lean_is_scalar(x_22)) { + x_70 = lean_alloc_ctor(0, 2, 0); +} else { + x_70 = x_22; +} +lean_ctor_set(x_70, 0, x_59); +lean_ctor_set(x_70, 1, x_31); +return x_70; +} +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_71 = lean_ctor_get(x_31, 0); +x_72 = lean_ctor_get(x_31, 1); +x_73 = lean_ctor_get(x_31, 3); +x_74 = lean_ctor_get(x_31, 4); +x_75 = lean_ctor_get(x_31, 5); +lean_inc(x_75); +lean_inc(x_74); +lean_inc(x_73); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_31); +x_76 = lean_ctor_get(x_58, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_58, 1); +lean_inc(x_77); +x_78 = lean_ctor_get(x_58, 3); +lean_inc(x_78); +x_79 = lean_ctor_get(x_58, 4); +lean_inc(x_79); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + lean_ctor_release(x_58, 1); + lean_ctor_release(x_58, 2); + lean_ctor_release(x_58, 3); + lean_ctor_release(x_58, 4); + x_80 = x_58; +} else { + lean_dec_ref(x_58); + x_80 = lean_box(0); +} +if (lean_is_scalar(x_80)) { + x_81 = lean_alloc_ctor(0, 5, 0); +} else { + x_81 = x_80; +} +lean_ctor_set(x_81, 0, x_76); +lean_ctor_set(x_81, 1, x_77); +lean_ctor_set(x_81, 2, x_29); +lean_ctor_set(x_81, 3, x_78); +lean_ctor_set(x_81, 4, x_79); +x_82 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_82, 0, x_71); +lean_ctor_set(x_82, 1, x_72); +lean_ctor_set(x_82, 2, x_81); +lean_ctor_set(x_82, 3, x_73); +lean_ctor_set(x_82, 4, x_74); +lean_ctor_set(x_82, 5, x_75); +if (lean_is_scalar(x_22)) { + x_83 = lean_alloc_ctor(0, 2, 0); +} else { + x_83 = x_22; +} +lean_ctor_set(x_83, 0, x_59); +lean_ctor_set(x_83, 1, x_82); +return x_83; +} +} +} +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_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; +x_112 = lean_ctor_get(x_27, 0); +x_113 = lean_ctor_get(x_27, 1); +x_114 = lean_ctor_get(x_27, 2); +x_115 = lean_ctor_get(x_27, 3); +x_116 = lean_ctor_get(x_27, 4); +lean_inc(x_116); +lean_inc(x_115); +lean_inc(x_114); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_27); +x_152 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +x_153 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_153, 0, x_112); +lean_ctor_set(x_153, 1, x_113); +lean_ctor_set(x_153, 2, x_152); +lean_ctor_set(x_153, 3, x_115); +lean_ctor_set(x_153, 4, x_116); +lean_ctor_set(x_21, 2, x_153); +x_154 = lean_ctor_get(x_4, 0); +lean_inc(x_154); +x_155 = lean_ctor_get(x_4, 1); +lean_inc(x_155); +x_156 = lean_ctor_get(x_4, 2); +lean_inc(x_156); +x_157 = lean_ctor_get(x_4, 3); +lean_inc(x_157); +x_158 = lean_ctor_get(x_4, 4); +lean_inc(x_158); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + lean_ctor_release(x_4, 4); + x_159 = x_4; +} else { + lean_dec_ref(x_4); + x_159 = lean_box(0); +} +x_160 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_160, 0, x_23); +lean_ctor_set(x_160, 1, x_10); +x_161 = lean_array_push(x_156, x_160); +if (lean_is_scalar(x_159)) { + x_162 = lean_alloc_ctor(0, 5, 0); +} else { + x_162 = x_159; +} +lean_ctor_set(x_162, 0, x_154); +lean_ctor_set(x_162, 1, x_155); +lean_ctor_set(x_162, 2, x_161); +lean_ctor_set(x_162, 3, x_157); +lean_ctor_set(x_162, 4, x_158); +x_163 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_25, x_162, x_21); +if (lean_obj_tag(x_163) == 0) +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +x_165 = lean_ctor_get(x_163, 1); +lean_inc(x_165); +lean_dec(x_163); +x_166 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_166, 0, x_164); +x_117 = x_166; +x_118 = x_165; +goto block_151; +} +else +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_167 = lean_ctor_get(x_163, 0); +lean_inc(x_167); +x_168 = lean_ctor_get(x_163, 1); +lean_inc(x_168); +lean_dec(x_163); +x_169 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_169, 0, x_167); +x_117 = x_169; +x_118 = x_168; +goto block_151; +} +block_151: +{ +if (lean_obj_tag(x_117) == 0) +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; +x_119 = lean_ctor_get(x_118, 2); +lean_inc(x_119); +x_120 = lean_ctor_get(x_117, 0); +lean_inc(x_120); +lean_dec(x_117); +x_121 = lean_ctor_get(x_118, 0); +lean_inc(x_121); +x_122 = lean_ctor_get(x_118, 1); +lean_inc(x_122); +x_123 = lean_ctor_get(x_118, 3); +lean_inc(x_123); +x_124 = lean_ctor_get(x_118, 4); +lean_inc(x_124); +x_125 = lean_ctor_get(x_118, 5); +lean_inc(x_125); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + lean_ctor_release(x_118, 2); + lean_ctor_release(x_118, 3); + lean_ctor_release(x_118, 4); + lean_ctor_release(x_118, 5); + x_126 = x_118; +} else { + lean_dec_ref(x_118); + x_126 = lean_box(0); +} +x_127 = lean_ctor_get(x_119, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_119, 1); +lean_inc(x_128); +x_129 = lean_ctor_get(x_119, 3); +lean_inc(x_129); +x_130 = lean_ctor_get(x_119, 4); +lean_inc(x_130); +if (lean_is_exclusive(x_119)) { + lean_ctor_release(x_119, 0); + lean_ctor_release(x_119, 1); + lean_ctor_release(x_119, 2); + lean_ctor_release(x_119, 3); + lean_ctor_release(x_119, 4); + x_131 = x_119; +} else { + lean_dec_ref(x_119); + x_131 = lean_box(0); +} +if (lean_is_scalar(x_131)) { + x_132 = lean_alloc_ctor(0, 5, 0); +} else { + x_132 = x_131; +} +lean_ctor_set(x_132, 0, x_127); +lean_ctor_set(x_132, 1, x_128); +lean_ctor_set(x_132, 2, x_114); +lean_ctor_set(x_132, 3, x_129); +lean_ctor_set(x_132, 4, x_130); +if (lean_is_scalar(x_126)) { + x_133 = lean_alloc_ctor(0, 6, 0); +} else { + x_133 = x_126; +} +lean_ctor_set(x_133, 0, x_121); +lean_ctor_set(x_133, 1, x_122); +lean_ctor_set(x_133, 2, x_132); +lean_ctor_set(x_133, 3, x_123); +lean_ctor_set(x_133, 4, x_124); +lean_ctor_set(x_133, 5, x_125); +if (lean_is_scalar(x_22)) { + x_134 = lean_alloc_ctor(1, 2, 0); +} else { + x_134 = x_22; + lean_ctor_set_tag(x_134, 1); +} +lean_ctor_set(x_134, 0, x_120); +lean_ctor_set(x_134, 1, x_133); +return x_134; +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_135 = lean_ctor_get(x_118, 2); +lean_inc(x_135); +x_136 = lean_ctor_get(x_117, 0); +lean_inc(x_136); +lean_dec(x_117); +x_137 = lean_ctor_get(x_118, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_118, 1); +lean_inc(x_138); +x_139 = lean_ctor_get(x_118, 3); +lean_inc(x_139); +x_140 = lean_ctor_get(x_118, 4); +lean_inc(x_140); +x_141 = lean_ctor_get(x_118, 5); +lean_inc(x_141); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + lean_ctor_release(x_118, 2); + lean_ctor_release(x_118, 3); + lean_ctor_release(x_118, 4); + lean_ctor_release(x_118, 5); + x_142 = x_118; +} else { + lean_dec_ref(x_118); + x_142 = lean_box(0); +} +x_143 = lean_ctor_get(x_135, 0); +lean_inc(x_143); +x_144 = lean_ctor_get(x_135, 1); +lean_inc(x_144); +x_145 = lean_ctor_get(x_135, 3); +lean_inc(x_145); +x_146 = lean_ctor_get(x_135, 4); +lean_inc(x_146); +if (lean_is_exclusive(x_135)) { + lean_ctor_release(x_135, 0); + lean_ctor_release(x_135, 1); + lean_ctor_release(x_135, 2); + lean_ctor_release(x_135, 3); + lean_ctor_release(x_135, 4); + x_147 = x_135; +} else { + lean_dec_ref(x_135); + x_147 = lean_box(0); +} +if (lean_is_scalar(x_147)) { + x_148 = lean_alloc_ctor(0, 5, 0); +} else { + x_148 = x_147; +} +lean_ctor_set(x_148, 0, x_143); +lean_ctor_set(x_148, 1, x_144); +lean_ctor_set(x_148, 2, x_114); +lean_ctor_set(x_148, 3, x_145); +lean_ctor_set(x_148, 4, x_146); +if (lean_is_scalar(x_142)) { + x_149 = lean_alloc_ctor(0, 6, 0); +} else { + x_149 = x_142; +} +lean_ctor_set(x_149, 0, x_137); +lean_ctor_set(x_149, 1, x_138); +lean_ctor_set(x_149, 2, x_148); +lean_ctor_set(x_149, 3, x_139); +lean_ctor_set(x_149, 4, x_140); +lean_ctor_set(x_149, 5, x_141); +if (lean_is_scalar(x_22)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_22; +} +lean_ctor_set(x_150, 0, x_136); +lean_ctor_set(x_150, 1, x_149); +return x_150; +} +} +} +} +else +{ +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_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; +x_170 = lean_ctor_get(x_21, 2); +x_171 = lean_ctor_get(x_21, 0); +x_172 = lean_ctor_get(x_21, 1); +x_173 = lean_ctor_get(x_21, 3); +x_174 = lean_ctor_get(x_21, 4); +x_175 = lean_ctor_get(x_21, 5); +lean_inc(x_175); +lean_inc(x_174); +lean_inc(x_173); +lean_inc(x_170); +lean_inc(x_172); +lean_inc(x_171); +lean_dec(x_21); +x_176 = lean_ctor_get(x_170, 0); +lean_inc(x_176); +x_177 = lean_ctor_get(x_170, 1); +lean_inc(x_177); +x_178 = lean_ctor_get(x_170, 2); +lean_inc(x_178); +x_179 = lean_ctor_get(x_170, 3); +lean_inc(x_179); +x_180 = lean_ctor_get(x_170, 4); +lean_inc(x_180); +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + lean_ctor_release(x_170, 1); + lean_ctor_release(x_170, 2); + lean_ctor_release(x_170, 3); + lean_ctor_release(x_170, 4); + x_181 = x_170; +} else { + lean_dec_ref(x_170); + x_181 = lean_box(0); +} +x_217 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +if (lean_is_scalar(x_181)) { + x_218 = lean_alloc_ctor(0, 5, 0); +} else { + x_218 = x_181; +} +lean_ctor_set(x_218, 0, x_176); +lean_ctor_set(x_218, 1, x_177); +lean_ctor_set(x_218, 2, x_217); +lean_ctor_set(x_218, 3, x_179); +lean_ctor_set(x_218, 4, x_180); +x_219 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_219, 0, x_171); +lean_ctor_set(x_219, 1, x_172); +lean_ctor_set(x_219, 2, x_218); +lean_ctor_set(x_219, 3, x_173); +lean_ctor_set(x_219, 4, x_174); +lean_ctor_set(x_219, 5, x_175); +x_220 = lean_ctor_get(x_4, 0); +lean_inc(x_220); +x_221 = lean_ctor_get(x_4, 1); +lean_inc(x_221); +x_222 = lean_ctor_get(x_4, 2); +lean_inc(x_222); +x_223 = lean_ctor_get(x_4, 3); +lean_inc(x_223); +x_224 = lean_ctor_get(x_4, 4); +lean_inc(x_224); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + lean_ctor_release(x_4, 4); + x_225 = x_4; +} else { + lean_dec_ref(x_4); + x_225 = lean_box(0); +} +x_226 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_226, 0, x_23); +lean_ctor_set(x_226, 1, x_10); +x_227 = lean_array_push(x_222, x_226); +if (lean_is_scalar(x_225)) { + x_228 = lean_alloc_ctor(0, 5, 0); +} else { + x_228 = x_225; +} +lean_ctor_set(x_228, 0, x_220); +lean_ctor_set(x_228, 1, x_221); +lean_ctor_set(x_228, 2, x_227); +lean_ctor_set(x_228, 3, x_223); +lean_ctor_set(x_228, 4, x_224); +x_229 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_25, x_228, x_219); +if (lean_obj_tag(x_229) == 0) +{ +lean_object* x_230; lean_object* x_231; lean_object* x_232; +x_230 = lean_ctor_get(x_229, 0); +lean_inc(x_230); +x_231 = lean_ctor_get(x_229, 1); +lean_inc(x_231); +lean_dec(x_229); +x_232 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_232, 0, x_230); +x_182 = x_232; +x_183 = x_231; +goto block_216; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_229, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_229, 1); +lean_inc(x_234); +lean_dec(x_229); +x_235 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_235, 0, x_233); +x_182 = x_235; +x_183 = x_234; +goto block_216; +} +block_216: +{ +if (lean_obj_tag(x_182) == 0) +{ +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; +x_184 = lean_ctor_get(x_183, 2); +lean_inc(x_184); +x_185 = lean_ctor_get(x_182, 0); +lean_inc(x_185); +lean_dec(x_182); +x_186 = lean_ctor_get(x_183, 0); +lean_inc(x_186); +x_187 = lean_ctor_get(x_183, 1); +lean_inc(x_187); +x_188 = lean_ctor_get(x_183, 3); +lean_inc(x_188); +x_189 = lean_ctor_get(x_183, 4); +lean_inc(x_189); +x_190 = lean_ctor_get(x_183, 5); +lean_inc(x_190); +if (lean_is_exclusive(x_183)) { + lean_ctor_release(x_183, 0); + lean_ctor_release(x_183, 1); + lean_ctor_release(x_183, 2); + lean_ctor_release(x_183, 3); + lean_ctor_release(x_183, 4); + lean_ctor_release(x_183, 5); + x_191 = x_183; +} else { + lean_dec_ref(x_183); + x_191 = lean_box(0); +} +x_192 = lean_ctor_get(x_184, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_184, 1); +lean_inc(x_193); +x_194 = lean_ctor_get(x_184, 3); +lean_inc(x_194); +x_195 = lean_ctor_get(x_184, 4); +lean_inc(x_195); +if (lean_is_exclusive(x_184)) { + lean_ctor_release(x_184, 0); + lean_ctor_release(x_184, 1); + lean_ctor_release(x_184, 2); + lean_ctor_release(x_184, 3); + lean_ctor_release(x_184, 4); + x_196 = x_184; +} else { + lean_dec_ref(x_184); + x_196 = lean_box(0); +} +if (lean_is_scalar(x_196)) { + x_197 = lean_alloc_ctor(0, 5, 0); +} else { + x_197 = x_196; +} +lean_ctor_set(x_197, 0, x_192); +lean_ctor_set(x_197, 1, x_193); +lean_ctor_set(x_197, 2, x_178); +lean_ctor_set(x_197, 3, x_194); +lean_ctor_set(x_197, 4, x_195); +if (lean_is_scalar(x_191)) { + x_198 = lean_alloc_ctor(0, 6, 0); +} else { + x_198 = x_191; +} +lean_ctor_set(x_198, 0, x_186); +lean_ctor_set(x_198, 1, x_187); +lean_ctor_set(x_198, 2, x_197); +lean_ctor_set(x_198, 3, x_188); +lean_ctor_set(x_198, 4, x_189); +lean_ctor_set(x_198, 5, x_190); +if (lean_is_scalar(x_22)) { + x_199 = lean_alloc_ctor(1, 2, 0); +} else { + x_199 = x_22; + lean_ctor_set_tag(x_199, 1); +} +lean_ctor_set(x_199, 0, x_185); +lean_ctor_set(x_199, 1, x_198); +return x_199; +} +else +{ +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; +x_200 = lean_ctor_get(x_183, 2); +lean_inc(x_200); +x_201 = lean_ctor_get(x_182, 0); +lean_inc(x_201); +lean_dec(x_182); +x_202 = lean_ctor_get(x_183, 0); +lean_inc(x_202); +x_203 = lean_ctor_get(x_183, 1); +lean_inc(x_203); +x_204 = lean_ctor_get(x_183, 3); +lean_inc(x_204); +x_205 = lean_ctor_get(x_183, 4); +lean_inc(x_205); +x_206 = lean_ctor_get(x_183, 5); +lean_inc(x_206); +if (lean_is_exclusive(x_183)) { + lean_ctor_release(x_183, 0); + lean_ctor_release(x_183, 1); + lean_ctor_release(x_183, 2); + lean_ctor_release(x_183, 3); + lean_ctor_release(x_183, 4); + lean_ctor_release(x_183, 5); + x_207 = x_183; +} else { + lean_dec_ref(x_183); + x_207 = lean_box(0); +} +x_208 = lean_ctor_get(x_200, 0); +lean_inc(x_208); +x_209 = lean_ctor_get(x_200, 1); +lean_inc(x_209); +x_210 = lean_ctor_get(x_200, 3); +lean_inc(x_210); +x_211 = lean_ctor_get(x_200, 4); +lean_inc(x_211); +if (lean_is_exclusive(x_200)) { + lean_ctor_release(x_200, 0); + lean_ctor_release(x_200, 1); + lean_ctor_release(x_200, 2); + lean_ctor_release(x_200, 3); + lean_ctor_release(x_200, 4); + x_212 = x_200; +} else { + lean_dec_ref(x_200); + x_212 = lean_box(0); +} +if (lean_is_scalar(x_212)) { + x_213 = lean_alloc_ctor(0, 5, 0); +} else { + x_213 = x_212; +} +lean_ctor_set(x_213, 0, x_208); +lean_ctor_set(x_213, 1, x_209); +lean_ctor_set(x_213, 2, x_178); +lean_ctor_set(x_213, 3, x_210); +lean_ctor_set(x_213, 4, x_211); +if (lean_is_scalar(x_207)) { + x_214 = lean_alloc_ctor(0, 6, 0); +} else { + x_214 = x_207; +} +lean_ctor_set(x_214, 0, x_202); +lean_ctor_set(x_214, 1, x_203); +lean_ctor_set(x_214, 2, x_213); +lean_ctor_set(x_214, 3, x_204); +lean_ctor_set(x_214, 4, x_205); +lean_ctor_set(x_214, 5, x_206); +if (lean_is_scalar(x_22)) { + x_215 = lean_alloc_ctor(0, 2, 0); +} else { + x_215 = x_22; +} +lean_ctor_set(x_215, 0, x_201); +lean_ctor_set(x_215, 1, x_214); +return x_215; +} +} +} +} +default: +{ +lean_object* x_236; lean_object* x_237; +x_236 = lean_ctor_get(x_15, 1); +lean_inc(x_236); +lean_dec(x_15); +lean_inc(x_4); +x_237 = l_Lean_Meta_isClassExpensive___main(x_14, x_4, x_236); +if (lean_obj_tag(x_237) == 0) +{ +lean_object* x_238; +x_238 = lean_ctor_get(x_237, 0); +lean_inc(x_238); +if (lean_obj_tag(x_238) == 0) +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; +lean_dec(x_10); +x_239 = lean_ctor_get(x_237, 1); +lean_inc(x_239); +lean_dec(x_237); +x_240 = lean_unsigned_to_nat(1u); +x_241 = lean_nat_add(x_3, x_240); +lean_dec(x_3); +x_3 = x_241; +x_5 = x_239; +goto _start; +} +else +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; uint8_t x_248; +x_243 = lean_ctor_get(x_237, 1); +lean_inc(x_243); +if (lean_is_exclusive(x_237)) { + lean_ctor_release(x_237, 0); + lean_ctor_release(x_237, 1); + x_244 = x_237; +} else { + lean_dec_ref(x_237); + x_244 = lean_box(0); +} +x_245 = lean_ctor_get(x_238, 0); +lean_inc(x_245); +lean_dec(x_238); +x_246 = lean_unsigned_to_nat(1u); +x_247 = lean_nat_add(x_3, x_246); +lean_dec(x_3); +x_248 = !lean_is_exclusive(x_243); +if (x_248 == 0) +{ +lean_object* x_249; uint8_t x_250; +x_249 = lean_ctor_get(x_243, 2); +x_250 = !lean_is_exclusive(x_249); +if (x_250 == 0) +{ +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_307; uint8_t x_308; +x_251 = lean_ctor_get(x_249, 2); +x_307 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +lean_ctor_set(x_249, 2, x_307); +x_308 = !lean_is_exclusive(x_4); +if (x_308 == 0) +{ +lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; +x_309 = lean_ctor_get(x_4, 2); +x_310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_310, 0, x_245); +lean_ctor_set(x_310, 1, x_10); +x_311 = lean_array_push(x_309, x_310); +lean_ctor_set(x_4, 2, x_311); +x_312 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_247, x_4, x_243); +if (lean_obj_tag(x_312) == 0) +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; +x_313 = lean_ctor_get(x_312, 0); +lean_inc(x_313); +x_314 = lean_ctor_get(x_312, 1); +lean_inc(x_314); +lean_dec(x_312); +x_315 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_315, 0, x_313); +x_252 = x_315; +x_253 = x_314; +goto block_306; +} +else +{ +lean_object* x_316; lean_object* x_317; lean_object* x_318; +x_316 = lean_ctor_get(x_312, 0); +lean_inc(x_316); +x_317 = lean_ctor_get(x_312, 1); +lean_inc(x_317); +lean_dec(x_312); +x_318 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_318, 0, x_316); +x_252 = x_318; +x_253 = x_317; +goto block_306; +} +} +else +{ +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; +x_319 = lean_ctor_get(x_4, 0); +x_320 = lean_ctor_get(x_4, 1); +x_321 = lean_ctor_get(x_4, 2); +x_322 = lean_ctor_get(x_4, 3); +x_323 = lean_ctor_get(x_4, 4); +lean_inc(x_323); +lean_inc(x_322); +lean_inc(x_321); +lean_inc(x_320); +lean_inc(x_319); +lean_dec(x_4); +x_324 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_324, 0, x_245); +lean_ctor_set(x_324, 1, x_10); +x_325 = lean_array_push(x_321, x_324); +x_326 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_326, 0, x_319); +lean_ctor_set(x_326, 1, x_320); +lean_ctor_set(x_326, 2, x_325); +lean_ctor_set(x_326, 3, x_322); +lean_ctor_set(x_326, 4, x_323); +x_327 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_247, x_326, x_243); +if (lean_obj_tag(x_327) == 0) +{ +lean_object* x_328; lean_object* x_329; lean_object* x_330; +x_328 = lean_ctor_get(x_327, 0); +lean_inc(x_328); +x_329 = lean_ctor_get(x_327, 1); +lean_inc(x_329); +lean_dec(x_327); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_252 = x_330; +x_253 = x_329; +goto block_306; +} +else +{ +lean_object* x_331; lean_object* x_332; lean_object* x_333; +x_331 = lean_ctor_get(x_327, 0); +lean_inc(x_331); +x_332 = lean_ctor_get(x_327, 1); +lean_inc(x_332); +lean_dec(x_327); +x_333 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_333, 0, x_331); +x_252 = x_333; +x_253 = x_332; +goto block_306; +} +} +block_306: +{ +if (lean_obj_tag(x_252) == 0) +{ +lean_object* x_254; lean_object* x_255; uint8_t x_256; +x_254 = lean_ctor_get(x_253, 2); +lean_inc(x_254); +x_255 = lean_ctor_get(x_252, 0); +lean_inc(x_255); +lean_dec(x_252); +x_256 = !lean_is_exclusive(x_253); +if (x_256 == 0) +{ +lean_object* x_257; uint8_t x_258; +x_257 = lean_ctor_get(x_253, 2); +lean_dec(x_257); +x_258 = !lean_is_exclusive(x_254); +if (x_258 == 0) +{ +lean_object* x_259; lean_object* x_260; +x_259 = lean_ctor_get(x_254, 2); +lean_dec(x_259); +lean_ctor_set(x_254, 2, x_251); +if (lean_is_scalar(x_244)) { + x_260 = lean_alloc_ctor(1, 2, 0); +} else { + x_260 = x_244; + lean_ctor_set_tag(x_260, 1); +} +lean_ctor_set(x_260, 0, x_255); +lean_ctor_set(x_260, 1, x_253); +return x_260; +} +else +{ +lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_261 = lean_ctor_get(x_254, 0); +x_262 = lean_ctor_get(x_254, 1); +x_263 = lean_ctor_get(x_254, 3); +x_264 = lean_ctor_get(x_254, 4); +lean_inc(x_264); +lean_inc(x_263); +lean_inc(x_262); +lean_inc(x_261); +lean_dec(x_254); +x_265 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_265, 0, x_261); +lean_ctor_set(x_265, 1, x_262); +lean_ctor_set(x_265, 2, x_251); +lean_ctor_set(x_265, 3, x_263); +lean_ctor_set(x_265, 4, x_264); +lean_ctor_set(x_253, 2, x_265); +if (lean_is_scalar(x_244)) { + x_266 = lean_alloc_ctor(1, 2, 0); +} else { + x_266 = x_244; + lean_ctor_set_tag(x_266, 1); +} +lean_ctor_set(x_266, 0, x_255); +lean_ctor_set(x_266, 1, x_253); +return x_266; +} +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; +x_267 = lean_ctor_get(x_253, 0); +x_268 = lean_ctor_get(x_253, 1); +x_269 = lean_ctor_get(x_253, 3); +x_270 = lean_ctor_get(x_253, 4); +x_271 = lean_ctor_get(x_253, 5); +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_inc(x_267); +lean_dec(x_253); +x_272 = lean_ctor_get(x_254, 0); +lean_inc(x_272); +x_273 = lean_ctor_get(x_254, 1); +lean_inc(x_273); +x_274 = lean_ctor_get(x_254, 3); +lean_inc(x_274); +x_275 = lean_ctor_get(x_254, 4); +lean_inc(x_275); +if (lean_is_exclusive(x_254)) { + lean_ctor_release(x_254, 0); + lean_ctor_release(x_254, 1); + lean_ctor_release(x_254, 2); + lean_ctor_release(x_254, 3); + lean_ctor_release(x_254, 4); + x_276 = x_254; +} else { + lean_dec_ref(x_254); + x_276 = lean_box(0); +} +if (lean_is_scalar(x_276)) { + x_277 = lean_alloc_ctor(0, 5, 0); +} else { + x_277 = x_276; +} +lean_ctor_set(x_277, 0, x_272); +lean_ctor_set(x_277, 1, x_273); +lean_ctor_set(x_277, 2, x_251); +lean_ctor_set(x_277, 3, x_274); +lean_ctor_set(x_277, 4, x_275); +x_278 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_278, 0, x_267); +lean_ctor_set(x_278, 1, x_268); +lean_ctor_set(x_278, 2, x_277); +lean_ctor_set(x_278, 3, x_269); +lean_ctor_set(x_278, 4, x_270); +lean_ctor_set(x_278, 5, x_271); +if (lean_is_scalar(x_244)) { + x_279 = lean_alloc_ctor(1, 2, 0); +} else { + x_279 = x_244; + lean_ctor_set_tag(x_279, 1); +} +lean_ctor_set(x_279, 0, x_255); +lean_ctor_set(x_279, 1, x_278); +return x_279; +} +} +else +{ +lean_object* x_280; lean_object* x_281; uint8_t x_282; +x_280 = lean_ctor_get(x_253, 2); +lean_inc(x_280); +x_281 = lean_ctor_get(x_252, 0); +lean_inc(x_281); +lean_dec(x_252); +x_282 = !lean_is_exclusive(x_253); +if (x_282 == 0) +{ +lean_object* x_283; uint8_t x_284; +x_283 = lean_ctor_get(x_253, 2); +lean_dec(x_283); +x_284 = !lean_is_exclusive(x_280); +if (x_284 == 0) +{ +lean_object* x_285; lean_object* x_286; +x_285 = lean_ctor_get(x_280, 2); +lean_dec(x_285); +lean_ctor_set(x_280, 2, x_251); +if (lean_is_scalar(x_244)) { + x_286 = lean_alloc_ctor(0, 2, 0); +} else { + x_286 = x_244; +} +lean_ctor_set(x_286, 0, x_281); +lean_ctor_set(x_286, 1, x_253); +return x_286; +} +else +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_287 = lean_ctor_get(x_280, 0); +x_288 = lean_ctor_get(x_280, 1); +x_289 = lean_ctor_get(x_280, 3); +x_290 = lean_ctor_get(x_280, 4); +lean_inc(x_290); +lean_inc(x_289); +lean_inc(x_288); +lean_inc(x_287); +lean_dec(x_280); +x_291 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_291, 0, x_287); +lean_ctor_set(x_291, 1, x_288); +lean_ctor_set(x_291, 2, x_251); +lean_ctor_set(x_291, 3, x_289); +lean_ctor_set(x_291, 4, x_290); +lean_ctor_set(x_253, 2, x_291); +if (lean_is_scalar(x_244)) { + x_292 = lean_alloc_ctor(0, 2, 0); +} else { + x_292 = x_244; +} +lean_ctor_set(x_292, 0, x_281); +lean_ctor_set(x_292, 1, x_253); +return x_292; +} +} +else +{ +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; +x_293 = lean_ctor_get(x_253, 0); +x_294 = lean_ctor_get(x_253, 1); +x_295 = lean_ctor_get(x_253, 3); +x_296 = lean_ctor_get(x_253, 4); +x_297 = lean_ctor_get(x_253, 5); +lean_inc(x_297); +lean_inc(x_296); +lean_inc(x_295); +lean_inc(x_294); +lean_inc(x_293); +lean_dec(x_253); +x_298 = lean_ctor_get(x_280, 0); +lean_inc(x_298); +x_299 = lean_ctor_get(x_280, 1); +lean_inc(x_299); +x_300 = lean_ctor_get(x_280, 3); +lean_inc(x_300); +x_301 = lean_ctor_get(x_280, 4); +lean_inc(x_301); +if (lean_is_exclusive(x_280)) { + lean_ctor_release(x_280, 0); + lean_ctor_release(x_280, 1); + lean_ctor_release(x_280, 2); + lean_ctor_release(x_280, 3); + lean_ctor_release(x_280, 4); + x_302 = x_280; +} else { + lean_dec_ref(x_280); + x_302 = lean_box(0); +} +if (lean_is_scalar(x_302)) { + x_303 = lean_alloc_ctor(0, 5, 0); +} else { + x_303 = x_302; +} +lean_ctor_set(x_303, 0, x_298); +lean_ctor_set(x_303, 1, x_299); +lean_ctor_set(x_303, 2, x_251); +lean_ctor_set(x_303, 3, x_300); +lean_ctor_set(x_303, 4, x_301); +x_304 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_304, 0, x_293); +lean_ctor_set(x_304, 1, x_294); +lean_ctor_set(x_304, 2, x_303); +lean_ctor_set(x_304, 3, x_295); +lean_ctor_set(x_304, 4, x_296); +lean_ctor_set(x_304, 5, x_297); +if (lean_is_scalar(x_244)) { + x_305 = lean_alloc_ctor(0, 2, 0); +} else { + x_305 = x_244; +} +lean_ctor_set(x_305, 0, x_281); +lean_ctor_set(x_305, 1, x_304); +return x_305; +} +} +} +} +else +{ +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_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; +x_334 = lean_ctor_get(x_249, 0); +x_335 = lean_ctor_get(x_249, 1); +x_336 = lean_ctor_get(x_249, 2); +x_337 = lean_ctor_get(x_249, 3); +x_338 = lean_ctor_get(x_249, 4); +lean_inc(x_338); +lean_inc(x_337); +lean_inc(x_336); +lean_inc(x_335); +lean_inc(x_334); +lean_dec(x_249); +x_374 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +x_375 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_375, 0, x_334); +lean_ctor_set(x_375, 1, x_335); +lean_ctor_set(x_375, 2, x_374); +lean_ctor_set(x_375, 3, x_337); +lean_ctor_set(x_375, 4, x_338); +lean_ctor_set(x_243, 2, x_375); +x_376 = lean_ctor_get(x_4, 0); +lean_inc(x_376); +x_377 = lean_ctor_get(x_4, 1); +lean_inc(x_377); +x_378 = lean_ctor_get(x_4, 2); +lean_inc(x_378); +x_379 = lean_ctor_get(x_4, 3); +lean_inc(x_379); +x_380 = lean_ctor_get(x_4, 4); +lean_inc(x_380); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + lean_ctor_release(x_4, 4); + x_381 = x_4; +} else { + lean_dec_ref(x_4); + x_381 = lean_box(0); +} +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_245); +lean_ctor_set(x_382, 1, x_10); +x_383 = lean_array_push(x_378, x_382); +if (lean_is_scalar(x_381)) { + x_384 = lean_alloc_ctor(0, 5, 0); +} else { + x_384 = x_381; +} +lean_ctor_set(x_384, 0, x_376); +lean_ctor_set(x_384, 1, x_377); +lean_ctor_set(x_384, 2, x_383); +lean_ctor_set(x_384, 3, x_379); +lean_ctor_set(x_384, 4, x_380); +x_385 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_247, x_384, x_243); +if (lean_obj_tag(x_385) == 0) +{ +lean_object* x_386; lean_object* x_387; lean_object* x_388; +x_386 = lean_ctor_get(x_385, 0); +lean_inc(x_386); +x_387 = lean_ctor_get(x_385, 1); +lean_inc(x_387); +lean_dec(x_385); +x_388 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_388, 0, x_386); +x_339 = x_388; +x_340 = x_387; +goto block_373; +} +else +{ +lean_object* x_389; lean_object* x_390; lean_object* x_391; +x_389 = lean_ctor_get(x_385, 0); +lean_inc(x_389); +x_390 = lean_ctor_get(x_385, 1); +lean_inc(x_390); +lean_dec(x_385); +x_391 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_391, 0, x_389); +x_339 = x_391; +x_340 = x_390; +goto block_373; +} +block_373: +{ +if (lean_obj_tag(x_339) == 0) +{ +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; +x_341 = lean_ctor_get(x_340, 2); +lean_inc(x_341); +x_342 = lean_ctor_get(x_339, 0); +lean_inc(x_342); +lean_dec(x_339); +x_343 = lean_ctor_get(x_340, 0); +lean_inc(x_343); +x_344 = lean_ctor_get(x_340, 1); +lean_inc(x_344); +x_345 = lean_ctor_get(x_340, 3); +lean_inc(x_345); +x_346 = lean_ctor_get(x_340, 4); +lean_inc(x_346); +x_347 = lean_ctor_get(x_340, 5); +lean_inc(x_347); +if (lean_is_exclusive(x_340)) { + lean_ctor_release(x_340, 0); + lean_ctor_release(x_340, 1); + lean_ctor_release(x_340, 2); + lean_ctor_release(x_340, 3); + lean_ctor_release(x_340, 4); + lean_ctor_release(x_340, 5); + x_348 = x_340; +} else { + lean_dec_ref(x_340); + x_348 = lean_box(0); +} +x_349 = lean_ctor_get(x_341, 0); +lean_inc(x_349); +x_350 = lean_ctor_get(x_341, 1); +lean_inc(x_350); +x_351 = lean_ctor_get(x_341, 3); +lean_inc(x_351); +x_352 = lean_ctor_get(x_341, 4); +lean_inc(x_352); +if (lean_is_exclusive(x_341)) { + lean_ctor_release(x_341, 0); + lean_ctor_release(x_341, 1); + lean_ctor_release(x_341, 2); + lean_ctor_release(x_341, 3); + lean_ctor_release(x_341, 4); + x_353 = x_341; +} else { + lean_dec_ref(x_341); + x_353 = lean_box(0); +} +if (lean_is_scalar(x_353)) { + x_354 = lean_alloc_ctor(0, 5, 0); +} else { + x_354 = x_353; +} +lean_ctor_set(x_354, 0, x_349); +lean_ctor_set(x_354, 1, x_350); +lean_ctor_set(x_354, 2, x_336); +lean_ctor_set(x_354, 3, x_351); +lean_ctor_set(x_354, 4, x_352); +if (lean_is_scalar(x_348)) { + x_355 = lean_alloc_ctor(0, 6, 0); +} else { + x_355 = x_348; +} +lean_ctor_set(x_355, 0, x_343); +lean_ctor_set(x_355, 1, x_344); +lean_ctor_set(x_355, 2, x_354); +lean_ctor_set(x_355, 3, x_345); +lean_ctor_set(x_355, 4, x_346); +lean_ctor_set(x_355, 5, x_347); +if (lean_is_scalar(x_244)) { + x_356 = lean_alloc_ctor(1, 2, 0); +} else { + x_356 = x_244; + lean_ctor_set_tag(x_356, 1); +} +lean_ctor_set(x_356, 0, x_342); +lean_ctor_set(x_356, 1, x_355); +return x_356; +} +else +{ +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; +x_357 = lean_ctor_get(x_340, 2); +lean_inc(x_357); +x_358 = lean_ctor_get(x_339, 0); +lean_inc(x_358); +lean_dec(x_339); +x_359 = lean_ctor_get(x_340, 0); +lean_inc(x_359); +x_360 = lean_ctor_get(x_340, 1); +lean_inc(x_360); +x_361 = lean_ctor_get(x_340, 3); +lean_inc(x_361); +x_362 = lean_ctor_get(x_340, 4); +lean_inc(x_362); +x_363 = lean_ctor_get(x_340, 5); +lean_inc(x_363); +if (lean_is_exclusive(x_340)) { + lean_ctor_release(x_340, 0); + lean_ctor_release(x_340, 1); + lean_ctor_release(x_340, 2); + lean_ctor_release(x_340, 3); + lean_ctor_release(x_340, 4); + lean_ctor_release(x_340, 5); + x_364 = x_340; +} else { + lean_dec_ref(x_340); + x_364 = lean_box(0); +} +x_365 = lean_ctor_get(x_357, 0); +lean_inc(x_365); +x_366 = lean_ctor_get(x_357, 1); +lean_inc(x_366); +x_367 = lean_ctor_get(x_357, 3); +lean_inc(x_367); +x_368 = lean_ctor_get(x_357, 4); +lean_inc(x_368); +if (lean_is_exclusive(x_357)) { + lean_ctor_release(x_357, 0); + lean_ctor_release(x_357, 1); + lean_ctor_release(x_357, 2); + lean_ctor_release(x_357, 3); + lean_ctor_release(x_357, 4); + x_369 = x_357; +} else { + lean_dec_ref(x_357); + x_369 = lean_box(0); +} +if (lean_is_scalar(x_369)) { + x_370 = lean_alloc_ctor(0, 5, 0); +} else { + x_370 = x_369; +} +lean_ctor_set(x_370, 0, x_365); +lean_ctor_set(x_370, 1, x_366); +lean_ctor_set(x_370, 2, x_336); +lean_ctor_set(x_370, 3, x_367); +lean_ctor_set(x_370, 4, x_368); +if (lean_is_scalar(x_364)) { + x_371 = lean_alloc_ctor(0, 6, 0); +} else { + x_371 = x_364; +} +lean_ctor_set(x_371, 0, x_359); +lean_ctor_set(x_371, 1, x_360); +lean_ctor_set(x_371, 2, x_370); +lean_ctor_set(x_371, 3, x_361); +lean_ctor_set(x_371, 4, x_362); +lean_ctor_set(x_371, 5, x_363); +if (lean_is_scalar(x_244)) { + x_372 = lean_alloc_ctor(0, 2, 0); +} else { + x_372 = x_244; +} +lean_ctor_set(x_372, 0, x_358); +lean_ctor_set(x_372, 1, x_371); +return x_372; +} +} +} +} +else +{ +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_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; +x_392 = lean_ctor_get(x_243, 2); +x_393 = lean_ctor_get(x_243, 0); +x_394 = lean_ctor_get(x_243, 1); +x_395 = lean_ctor_get(x_243, 3); +x_396 = lean_ctor_get(x_243, 4); +x_397 = lean_ctor_get(x_243, 5); +lean_inc(x_397); +lean_inc(x_396); +lean_inc(x_395); +lean_inc(x_392); +lean_inc(x_394); +lean_inc(x_393); +lean_dec(x_243); +x_398 = lean_ctor_get(x_392, 0); +lean_inc(x_398); +x_399 = lean_ctor_get(x_392, 1); +lean_inc(x_399); +x_400 = lean_ctor_get(x_392, 2); +lean_inc(x_400); +x_401 = lean_ctor_get(x_392, 3); +lean_inc(x_401); +x_402 = lean_ctor_get(x_392, 4); +lean_inc(x_402); +if (lean_is_exclusive(x_392)) { + lean_ctor_release(x_392, 0); + lean_ctor_release(x_392, 1); + lean_ctor_release(x_392, 2); + lean_ctor_release(x_392, 3); + lean_ctor_release(x_392, 4); + x_403 = x_392; +} else { + lean_dec_ref(x_392); + x_403 = lean_box(0); +} +x_439 = l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +if (lean_is_scalar(x_403)) { + x_440 = lean_alloc_ctor(0, 5, 0); +} else { + x_440 = x_403; +} +lean_ctor_set(x_440, 0, x_398); +lean_ctor_set(x_440, 1, x_399); +lean_ctor_set(x_440, 2, x_439); +lean_ctor_set(x_440, 3, x_401); +lean_ctor_set(x_440, 4, x_402); +x_441 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_441, 0, x_393); +lean_ctor_set(x_441, 1, x_394); +lean_ctor_set(x_441, 2, x_440); +lean_ctor_set(x_441, 3, x_395); +lean_ctor_set(x_441, 4, x_396); +lean_ctor_set(x_441, 5, x_397); +x_442 = lean_ctor_get(x_4, 0); +lean_inc(x_442); +x_443 = lean_ctor_get(x_4, 1); +lean_inc(x_443); +x_444 = lean_ctor_get(x_4, 2); +lean_inc(x_444); +x_445 = lean_ctor_get(x_4, 3); +lean_inc(x_445); +x_446 = lean_ctor_get(x_4, 4); +lean_inc(x_446); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + lean_ctor_release(x_4, 4); + x_447 = x_4; +} else { + lean_dec_ref(x_4); + x_447 = lean_box(0); +} +x_448 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_448, 0, x_245); +lean_ctor_set(x_448, 1, x_10); +x_449 = lean_array_push(x_444, x_448); +if (lean_is_scalar(x_447)) { + x_450 = lean_alloc_ctor(0, 5, 0); +} else { + x_450 = x_447; +} +lean_ctor_set(x_450, 0, x_442); +lean_ctor_set(x_450, 1, x_443); +lean_ctor_set(x_450, 2, x_449); +lean_ctor_set(x_450, 3, x_445); +lean_ctor_set(x_450, 4, x_446); +x_451 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_247, x_450, x_441); +if (lean_obj_tag(x_451) == 0) +{ +lean_object* x_452; lean_object* x_453; lean_object* x_454; +x_452 = lean_ctor_get(x_451, 0); +lean_inc(x_452); +x_453 = lean_ctor_get(x_451, 1); +lean_inc(x_453); +lean_dec(x_451); +x_454 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_454, 0, x_452); +x_404 = x_454; +x_405 = x_453; +goto block_438; +} +else +{ +lean_object* x_455; lean_object* x_456; lean_object* x_457; +x_455 = lean_ctor_get(x_451, 0); +lean_inc(x_455); +x_456 = lean_ctor_get(x_451, 1); +lean_inc(x_456); +lean_dec(x_451); +x_457 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_457, 0, x_455); +x_404 = x_457; +x_405 = x_456; +goto block_438; +} +block_438: +{ +if (lean_obj_tag(x_404) == 0) +{ +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; +x_406 = lean_ctor_get(x_405, 2); +lean_inc(x_406); +x_407 = lean_ctor_get(x_404, 0); +lean_inc(x_407); +lean_dec(x_404); +x_408 = lean_ctor_get(x_405, 0); +lean_inc(x_408); +x_409 = lean_ctor_get(x_405, 1); +lean_inc(x_409); +x_410 = lean_ctor_get(x_405, 3); +lean_inc(x_410); +x_411 = lean_ctor_get(x_405, 4); +lean_inc(x_411); +x_412 = lean_ctor_get(x_405, 5); +lean_inc(x_412); +if (lean_is_exclusive(x_405)) { + lean_ctor_release(x_405, 0); + lean_ctor_release(x_405, 1); + lean_ctor_release(x_405, 2); + lean_ctor_release(x_405, 3); + lean_ctor_release(x_405, 4); + lean_ctor_release(x_405, 5); + x_413 = x_405; +} else { + lean_dec_ref(x_405); + x_413 = lean_box(0); +} +x_414 = lean_ctor_get(x_406, 0); +lean_inc(x_414); +x_415 = lean_ctor_get(x_406, 1); +lean_inc(x_415); +x_416 = lean_ctor_get(x_406, 3); +lean_inc(x_416); +x_417 = lean_ctor_get(x_406, 4); +lean_inc(x_417); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + lean_ctor_release(x_406, 1); + lean_ctor_release(x_406, 2); + lean_ctor_release(x_406, 3); + lean_ctor_release(x_406, 4); + x_418 = x_406; +} else { + lean_dec_ref(x_406); + x_418 = lean_box(0); +} +if (lean_is_scalar(x_418)) { + x_419 = lean_alloc_ctor(0, 5, 0); +} else { + x_419 = x_418; +} +lean_ctor_set(x_419, 0, x_414); +lean_ctor_set(x_419, 1, x_415); +lean_ctor_set(x_419, 2, x_400); +lean_ctor_set(x_419, 3, x_416); +lean_ctor_set(x_419, 4, x_417); +if (lean_is_scalar(x_413)) { + x_420 = lean_alloc_ctor(0, 6, 0); +} else { + x_420 = x_413; +} +lean_ctor_set(x_420, 0, x_408); +lean_ctor_set(x_420, 1, x_409); +lean_ctor_set(x_420, 2, x_419); +lean_ctor_set(x_420, 3, x_410); +lean_ctor_set(x_420, 4, x_411); +lean_ctor_set(x_420, 5, x_412); +if (lean_is_scalar(x_244)) { + x_421 = lean_alloc_ctor(1, 2, 0); +} else { + x_421 = x_244; + lean_ctor_set_tag(x_421, 1); +} +lean_ctor_set(x_421, 0, x_407); +lean_ctor_set(x_421, 1, x_420); +return x_421; +} +else +{ +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; +x_422 = lean_ctor_get(x_405, 2); +lean_inc(x_422); +x_423 = lean_ctor_get(x_404, 0); +lean_inc(x_423); +lean_dec(x_404); +x_424 = lean_ctor_get(x_405, 0); +lean_inc(x_424); +x_425 = lean_ctor_get(x_405, 1); +lean_inc(x_425); +x_426 = lean_ctor_get(x_405, 3); +lean_inc(x_426); +x_427 = lean_ctor_get(x_405, 4); +lean_inc(x_427); +x_428 = lean_ctor_get(x_405, 5); +lean_inc(x_428); +if (lean_is_exclusive(x_405)) { + lean_ctor_release(x_405, 0); + lean_ctor_release(x_405, 1); + lean_ctor_release(x_405, 2); + lean_ctor_release(x_405, 3); + lean_ctor_release(x_405, 4); + lean_ctor_release(x_405, 5); + x_429 = x_405; +} else { + lean_dec_ref(x_405); + x_429 = lean_box(0); +} +x_430 = lean_ctor_get(x_422, 0); +lean_inc(x_430); +x_431 = lean_ctor_get(x_422, 1); +lean_inc(x_431); +x_432 = lean_ctor_get(x_422, 3); +lean_inc(x_432); +x_433 = lean_ctor_get(x_422, 4); +lean_inc(x_433); +if (lean_is_exclusive(x_422)) { + lean_ctor_release(x_422, 0); + lean_ctor_release(x_422, 1); + lean_ctor_release(x_422, 2); + lean_ctor_release(x_422, 3); + lean_ctor_release(x_422, 4); + x_434 = x_422; +} else { + lean_dec_ref(x_422); + x_434 = lean_box(0); +} +if (lean_is_scalar(x_434)) { + x_435 = lean_alloc_ctor(0, 5, 0); +} else { + x_435 = x_434; +} +lean_ctor_set(x_435, 0, x_430); +lean_ctor_set(x_435, 1, x_431); +lean_ctor_set(x_435, 2, x_400); +lean_ctor_set(x_435, 3, x_432); +lean_ctor_set(x_435, 4, x_433); +if (lean_is_scalar(x_429)) { + x_436 = lean_alloc_ctor(0, 6, 0); +} else { + x_436 = x_429; +} +lean_ctor_set(x_436, 0, x_424); +lean_ctor_set(x_436, 1, x_425); +lean_ctor_set(x_436, 2, x_435); +lean_ctor_set(x_436, 3, x_426); +lean_ctor_set(x_436, 4, x_427); +lean_ctor_set(x_436, 5, x_428); +if (lean_is_scalar(x_244)) { + x_437 = lean_alloc_ctor(0, 2, 0); +} else { + x_437 = x_244; +} +lean_ctor_set(x_437, 0, x_423); +lean_ctor_set(x_437, 1, x_436); +return x_437; +} +} +} +} +} +else +{ +uint8_t x_458; +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_3); +x_458 = !lean_is_exclusive(x_237); +if (x_458 == 0) +{ +return x_237; +} +else +{ +lean_object* x_459; lean_object* x_460; lean_object* x_461; +x_459 = lean_ctor_get(x_237, 0); +x_460 = lean_ctor_get(x_237, 1); +lean_inc(x_460); +lean_inc(x_459); +lean_dec(x_237); +x_461 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_461, 0, x_459); +lean_ctor_set(x_461, 1, x_460); +return x_461; +} +} +} +} +} +else +{ +uint8_t x_462; +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_3); +x_462 = !lean_is_exclusive(x_15); +if (x_462 == 0) +{ +return x_15; +} +else +{ +lean_object* x_463; lean_object* x_464; lean_object* x_465; +x_463 = lean_ctor_get(x_15, 0); +x_464 = lean_ctor_get(x_15, 1); +lean_inc(x_464); +lean_inc(x_463); +lean_dec(x_15); +x_465 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_465, 0, x_463); +lean_ctor_set(x_465, 1, x_464); +return x_465; +} +} +} +else +{ +uint8_t x_466; +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_3); +x_466 = !lean_is_exclusive(x_11); +if (x_466 == 0) +{ +return x_11; +} +else +{ +lean_object* x_467; lean_object* x_468; lean_object* x_469; +x_467 = lean_ctor_get(x_11, 0); +x_468 = lean_ctor_get(x_11, 1); +lean_inc(x_468); +lean_inc(x_467); +lean_dec(x_11); +x_469 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_469, 0, x_467); +lean_ctor_set(x_469, 1, x_468); +return x_469; +} +} +} +} +} +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__3(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +if (lean_obj_tag(x_6) == 7) +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint64_t x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_23 = lean_ctor_get(x_6, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_6, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_6, 2); +lean_inc(x_25); +x_26 = lean_ctor_get_uint64(x_6, sizeof(void*)*3); +lean_dec(x_6); +x_27 = lean_array_get_size(x_4); +x_28 = lean_expr_instantiate_rev_range(x_24, x_5, x_27, x_4); +lean_dec(x_27); +lean_dec(x_24); +x_29 = l_Lean_Meta_mkFreshId___rarg(x_8); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec(x_29); +x_32 = (uint8_t)((x_26 << 24) >> 61); +lean_inc(x_30); +x_33 = lean_local_ctx_mk_local_decl(x_3, x_30, x_23, x_28, x_32); +x_34 = l_Lean_mkFVar(x_30); +x_35 = lean_array_push(x_4, x_34); +x_3 = x_33; +x_4 = x_35; +x_6 = x_25; +x_8 = x_31; +goto _start; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; uint64_t x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_37 = lean_ctor_get(x_6, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_6, 1); +lean_inc(x_38); +x_39 = lean_ctor_get(x_6, 2); +lean_inc(x_39); +x_40 = lean_ctor_get_uint64(x_6, sizeof(void*)*3); +lean_dec(x_6); +x_41 = lean_ctor_get(x_2, 0); +lean_inc(x_41); +x_42 = lean_array_get_size(x_4); +x_43 = lean_nat_dec_lt(x_42, x_41); +lean_dec(x_41); +if (x_43 == 0) +{ +uint8_t x_44; +lean_dec(x_42); +lean_dec(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_2); +x_44 = !lean_is_exclusive(x_7); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_7, 1); +lean_dec(x_45); +lean_ctor_set(x_7, 1, x_3); +x_46 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_4, x_4, x_5, x_7, x_8); +lean_dec(x_4); +return x_46; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_47 = lean_ctor_get(x_7, 0); +x_48 = lean_ctor_get(x_7, 2); +x_49 = lean_ctor_get(x_7, 3); +x_50 = lean_ctor_get(x_7, 4); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_7); +x_51 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_51, 0, x_47); +lean_ctor_set(x_51, 1, x_3); +lean_ctor_set(x_51, 2, x_48); +lean_ctor_set(x_51, 3, x_49); +lean_ctor_set(x_51, 4, x_50); +x_52 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_4, x_4, x_5, x_51, x_8); +lean_dec(x_4); +return x_52; +} +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_53 = lean_expr_instantiate_rev_range(x_38, x_5, x_42, x_4); +lean_dec(x_42); +lean_dec(x_38); +x_54 = l_Lean_Meta_mkFreshId___rarg(x_8); +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec(x_54); +x_57 = (uint8_t)((x_40 << 24) >> 61); +lean_inc(x_55); +x_58 = lean_local_ctx_mk_local_decl(x_3, x_55, x_37, x_53, x_57); +x_59 = l_Lean_mkFVar(x_55); +x_60 = lean_array_push(x_4, x_59); +x_3 = x_58; +x_4 = x_60; +x_6 = x_39; +x_8 = x_56; +goto _start; +} +} +} +else +{ +lean_object* x_62; +x_62 = lean_box(0); +x_9 = x_62; +goto block_22; +} +block_22: +{ +lean_object* x_10; uint8_t x_11; +lean_dec(x_9); +x_10 = lean_array_get_size(x_4); +x_11 = !lean_is_exclusive(x_7); +if (x_11 == 0) +{ +lean_object* x_12; +x_12 = lean_ctor_get(x_7, 1); +lean_dec(x_12); +lean_inc(x_3); +lean_ctor_set(x_7, 1, x_3); +if (x_1 == 0) +{ +lean_object* x_13; +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +x_13 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_4, x_4, x_5, x_7, x_8); +lean_dec(x_4); +return x_13; +} +else +{ +lean_object* x_14; +lean_inc(x_5); +lean_inc(x_4); +x_14 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_4, x_5, x_7, x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_14; +} +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_15 = lean_ctor_get(x_7, 0); +x_16 = lean_ctor_get(x_7, 2); +x_17 = lean_ctor_get(x_7, 3); +x_18 = lean_ctor_get(x_7, 4); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_7); +lean_inc(x_3); +x_19 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_19, 0, x_15); +lean_ctor_set(x_19, 1, x_3); +lean_ctor_set(x_19, 2, x_16); +lean_ctor_set(x_19, 3, x_17); +lean_ctor_set(x_19, 4, x_18); +if (x_1 == 0) +{ +lean_object* x_20; +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +x_20 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_4, x_4, x_5, x_19, x_8); +lean_dec(x_4); +return x_20; +} +else +{ +lean_object* x_21; +lean_inc(x_5); +lean_inc(x_4); +x_21 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_4, x_5, x_19, x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_21; +} +} +} +} +} +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +lean_inc(x_3); +x_5 = l_Lean_Meta_whnf(x_1, x_3, x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +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 = l_Lean_Expr_isForall(x_6); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_6); +lean_dec(x_2); +x_9 = l_Array_empty___closed__1; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1(x_9, x_9, x_10, x_10, x_3, x_7); +return x_11; +} +else +{ +lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_3, 1); +lean_inc(x_12); +x_13 = 1; +x_14 = l_Array_empty___closed__1; +x_15 = lean_unsigned_to_nat(0u); +x_16 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__3(x_13, x_2, x_12, x_14, x_15, x_6, x_3, x_7); +return x_16; +} +} +else +{ +uint8_t x_17; +lean_dec(x_3); +lean_dec(x_2); +x_17 = !lean_is_exclusive(x_5); +if (x_17 == 0) +{ +return x_5; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_5, 0); +x_19 = lean_ctor_get(x_5, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_5); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +} +lean_object* l___private_Lean_Elab_Match_10__getNumExplicitCtorParams(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; uint8_t x_10; +x_5 = lean_ctor_get(x_2, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_5, 2); +lean_inc(x_6); +lean_dec(x_5); +x_7 = lean_ctor_get(x_2, 3); +lean_inc(x_7); +lean_dec(x_2); +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_7); +x_9 = lean_ctor_get(x_4, 0); +lean_inc(x_9); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_9, 4); +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +x_13 = l_Lean_TraceState_Inhabited___closed__1; +lean_ctor_set(x_9, 4, x_13); +x_14 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__2(x_6, x_8, x_12, x_9); +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; lean_object* x_17; +x_16 = lean_ctor_get(x_14, 1); +x_17 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_16, x_11); +lean_ctor_set(x_14, 1, x_17); +return x_14; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_14, 0); +x_19 = lean_ctor_get(x_14, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_14); +x_20 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_19, x_11); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_18); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_14); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_14, 0); +x_24 = lean_ctor_get(x_14, 1); +lean_inc(x_3); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_11); +lean_ctor_set(x_14, 1, x_26); +lean_ctor_set(x_14, 0, x_25); +return x_14; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_27 = lean_ctor_get(x_14, 0); +x_28 = lean_ctor_get(x_14, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_14); +lean_inc(x_3); +x_29 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_27); +x_30 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_28, x_11); +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; +} +} +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_32 = lean_ctor_get(x_9, 0); +x_33 = lean_ctor_get(x_9, 1); +x_34 = lean_ctor_get(x_9, 2); +x_35 = lean_ctor_get(x_9, 3); +x_36 = lean_ctor_get(x_9, 4); +x_37 = lean_ctor_get(x_9, 5); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_9); +x_38 = lean_ctor_get(x_3, 0); +lean_inc(x_38); +x_39 = l_Lean_TraceState_Inhabited___closed__1; +x_40 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_40, 0, x_32); +lean_ctor_set(x_40, 1, x_33); +lean_ctor_set(x_40, 2, x_34); +lean_ctor_set(x_40, 3, x_35); +lean_ctor_set(x_40, 4, x_39); +lean_ctor_set(x_40, 5, x_37); +x_41 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__2(x_6, x_8, x_38, x_40); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_41, 1); +lean_inc(x_43); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + x_44 = x_41; +} else { + lean_dec_ref(x_41); + x_44 = lean_box(0); +} +x_45 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_43, x_36); +if (lean_is_scalar(x_44)) { + x_46 = lean_alloc_ctor(0, 2, 0); +} else { + x_46 = x_44; +} +lean_ctor_set(x_46, 0, x_42); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_47 = lean_ctor_get(x_41, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + x_49 = x_41; +} else { + lean_dec_ref(x_41); + x_49 = lean_box(0); +} +lean_inc(x_3); +x_50 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_47); +x_51 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_48, x_36); +if (lean_is_scalar(x_49)) { + x_52 = lean_alloc_ctor(1, 2, 0); +} else { + x_52 = x_49; +} +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +} +} +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Array_iterateMAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4___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_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__4(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_2); +lean_dec(x_2); +x_10 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5___lambda__1(x_1, x_9, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_1); +lean_dec(x_1); +x_13 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__5(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +return x_13; +} +} +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6___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_Meta_withNewLocalInstances___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__6(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +lean_dec(x_1); +x_10 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Elab_Match_10__getNumExplicitCtorParams___spec__3(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +lean_object* l___private_Lean_Elab_Match_10__getNumExplicitCtorParams___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_10__getNumExplicitCtorParams(x_1, x_2, x_3, x_4); +lean_dec(x_1); +return x_5; +} +} +lean_object* _init_l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ambiguous pattern, use fully qualified name, possible interpretations "); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous___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; uint8_t x_11; +x_6 = l_List_map___main___at_Lean_MessageData_coeOfListExpr___spec__1(x_2); +x_7 = l_Lean_MessageData_ofList(x_6); +lean_dec(x_6); +x_8 = l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__3; +x_9 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +x_10 = l_Lean_Elab_Term_throwError___rarg(x_1, x_9, x_4, x_5); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +return x_10; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_10); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___boxed), 5, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Elab_Match_11__throwAmbiguous___rarg(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_3); +lean_dec(x_1); +return x_6; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid pattern variable, must be atomic"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_12__processVar___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_12__processVar___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid pattern, variable '"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_12__processVar___closed__4; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_12__processVar___closed__5; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("' occurred more than once"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_12__processVar___closed__7; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_12__processVar___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_12__processVar___closed__8; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_12__processVar(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; uint8_t x_8; uint8_t x_9; +x_7 = l_Lean_Name_eraseMacroScopes(x_2); +x_8 = l_Lean_Name_isAtomic(x_7); +lean_dec(x_7); +if (x_3 == 0) +{ +uint8_t x_57; +x_57 = 0; +x_9 = x_57; +goto block_56; +} +else +{ +uint8_t x_58; +x_58 = 1; +x_9 = x_58; +goto block_56; +} +block_56: +{ +uint8_t x_10; +if (x_8 == 0) +{ +uint8_t x_54; +x_54 = 0; +x_10 = x_54; +goto block_53; +} +else +{ +uint8_t x_55; +x_55 = 1; +x_10 = x_55; +goto block_53; +} +block_53: +{ +lean_object* x_11; lean_object* x_12; +if (x_9 == 0) +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_box(0); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_4); +x_11 = x_47; +x_12 = x_6; +goto block_45; +} +else +{ +lean_object* x_48; uint8_t x_49; +lean_dec(x_2); +x_48 = l___private_Lean_Elab_Match_9__throwCtorExpected___rarg(x_1, x_4, x_5, x_6); +lean_dec(x_4); +x_49 = !lean_is_exclusive(x_48); +if (x_49 == 0) +{ +return x_48; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_48, 0); +x_51 = lean_ctor_get(x_48, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_48); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +block_45: +{ +if (x_10 == 0) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_dec(x_11); +lean_dec(x_2); +x_13 = l___private_Lean_Elab_Match_12__processVar___closed__3; +x_14 = l_Lean_Elab_Term_throwError___rarg(x_1, x_13, x_5, x_12); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +return x_14; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_14); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +else +{ +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_11, 1); +lean_inc(x_19); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_20 = x_11; +} else { + lean_dec_ref(x_11); + x_20 = lean_box(0); +} +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +x_22 = l_Lean_NameSet_contains(x_21, x_2); +if (x_22 == 0) +{ +uint8_t x_43; +x_43 = 0; +x_23 = x_43; +goto block_42; +} +else +{ +uint8_t x_44; +x_44 = 1; +x_23 = x_44; +goto block_42; +} +block_42: +{ +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_5); +x_24 = lean_box(0); +lean_inc(x_2); +x_25 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_21, x_2, x_24); +x_26 = lean_ctor_get(x_19, 1); +lean_inc(x_26); +lean_dec(x_19); +x_27 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_27, 0, x_2); +x_28 = lean_array_push(x_26, x_27); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_25); +lean_ctor_set(x_29, 1, x_28); +if (lean_is_scalar(x_20)) { + x_30 = lean_alloc_ctor(0, 2, 0); +} else { + x_30 = x_20; +} +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_12); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +x_32 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_32, 0, x_2); +x_33 = l___private_Lean_Elab_Match_12__processVar___closed__6; +x_34 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_32); +x_35 = l___private_Lean_Elab_Match_12__processVar___closed__9; +x_36 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Lean_Elab_Term_throwError___rarg(x_1, x_36, x_5, x_12); +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) +{ +return x_37; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} +} +} +} +} +} +} +} +lean_object* l___private_Lean_Elab_Match_12__processVar___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___private_Lean_Elab_Match_12__processVar(x_1, x_2, x_7, x_4, x_5, x_6); +lean_dec(x_1); +return x_8; +} +} +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Match_13__processIdAux___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___rarg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +x_8 = l_List_isEmpty___rarg(x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_free_object(x_1); +lean_dec(x_5); +x_1 = x_6; +goto _start; +} +else +{ +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_1); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +x_14 = l_List_isEmpty___rarg(x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_dec(x_11); +x_1 = x_12; +goto _start; +} +else +{ +lean_object* x_16; +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_11); +lean_ctor_set(x_16, 1, x_2); +x_1 = x_12; +x_2 = x_16; +goto _start; +} +} +} +} +} +lean_object* l_List_map___main___at___private_Lean_Elab_Match_13__processIdAux___spec__2(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_1, 1); +x_6 = l_List_map___main___at___private_Lean_Elab_Match_13__processIdAux___spec__2(x_5); +x_7 = lean_ctor_get(x_4, 0); +lean_inc(x_7); +lean_dec(x_4); +lean_ctor_set(x_1, 1, x_6); +lean_ctor_set(x_1, 0, x_7); +return x_1; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +lean_inc(x_9); +lean_inc(x_8); +lean_dec(x_1); +x_10 = l_List_map___main___at___private_Lean_Elab_Match_13__processIdAux___spec__2(x_9); +x_11 = lean_ctor_get(x_8, 0); +lean_inc(x_11); +lean_dec(x_8); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +} +} +} +lean_object* _init_l___private_Lean_Elab_Match_13__processIdAux___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__1; +x_2 = l_Nat_Inhabited; +x_3 = l_monadInhabited___rarg(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_13__processIdAux___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid occurrence of named pattern"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_13__processIdAux___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_13__processIdAux___closed__2; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_13__processIdAux___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_13__processIdAux___closed__3; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_13__processIdAux(lean_object* x_1, uint8_t 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; uint8_t x_10; lean_object* x_11; +x_6 = l_Lean_Elab_Term_getEnv___rarg(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); +if (lean_is_exclusive(x_6)) { + lean_ctor_release(x_6, 0); + lean_ctor_release(x_6, 1); + x_9 = x_6; +} else { + lean_dec_ref(x_6); + x_9 = lean_box(0); +} +x_10 = 1; +lean_inc(x_1); +x_11 = l_Lean_Syntax_isTermId_x3f(x_1, x_10); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; +lean_dec(x_9); +lean_dec(x_7); +x_12 = l___private_Lean_Elab_Match_9__throwCtorExpected___rarg(x_1, x_3, x_4, x_8); +lean_dec(x_3); +lean_dec(x_1); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; +x_13 = lean_ctor_get(x_11, 0); +lean_inc(x_13); +lean_dec(x_11); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + x_16 = x_13; +} else { + lean_dec_ref(x_13); + x_16 = lean_box(0); +} +x_17 = lean_unsigned_to_nat(0u); +x_18 = l_Lean_Syntax_getArg(x_15, x_17); +lean_dec(x_15); +x_19 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_20 = l_Lean_Syntax_isOfKind(x_18, x_19); +if (x_20 == 0) +{ +uint8_t x_116; +x_116 = 0; +x_21 = x_116; +goto block_115; +} +else +{ +x_21 = x_10; +goto block_115; +} +block_115: +{ +lean_object* x_22; lean_object* x_23; lean_object* x_81; lean_object* x_82; +if (x_21 == 0) +{ +lean_object* x_107; lean_object* x_108; +x_107 = lean_box(0); +x_108 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_3); +x_81 = x_108; +x_82 = x_8; +goto block_106; +} +else +{ +lean_object* x_109; lean_object* x_110; uint8_t x_111; +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_3); +x_109 = l___private_Lean_Elab_Match_13__processIdAux___closed__4; +x_110 = l_Lean_Elab_Term_throwError___rarg(x_1, x_109, x_4, x_8); +lean_dec(x_1); +x_111 = !lean_is_exclusive(x_110); +if (x_111 == 0) +{ +return x_110; +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_110, 0); +x_113 = lean_ctor_get(x_110, 1); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_110); +x_114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_114, 0, x_112); +lean_ctor_set(x_114, 1, x_113); +return x_114; +} +} +block_80: +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_24 = lean_ctor_get(x_22, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_22, 1); +lean_inc(x_25); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_26 = x_22; +} else { + lean_dec_ref(x_22); + x_26 = lean_box(0); +} +x_47 = lean_box(0); +x_48 = l_List_filterAux___main___at___private_Lean_Elab_Match_13__processIdAux___spec__1(x_24, x_47); +x_49 = l_List_map___main___at___private_Lean_Elab_Match_13__processIdAux___spec__2(x_48); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; +lean_dec(x_26); +lean_dec(x_16); +lean_dec(x_9); +lean_dec(x_7); +x_50 = lean_box(0); +x_27 = x_50; +goto block_46; +} +else +{ +lean_object* x_51; +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; +x_52 = lean_ctor_get(x_49, 0); +lean_inc(x_52); +lean_dec(x_49); +if (lean_obj_tag(x_52) == 4) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_61; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +lean_dec(x_52); +lean_inc(x_53); +lean_inc(x_7); +x_61 = lean_environment_find(x_7, x_53); +if (lean_obj_tag(x_61) == 0) +{ +lean_object* x_62; +lean_dec(x_53); +lean_dec(x_26); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_9); +lean_dec(x_7); +x_62 = l___private_Lean_Elab_Match_9__throwCtorExpected___rarg(x_1, x_25, x_4, x_23); +lean_dec(x_25); +lean_dec(x_1); +return x_62; +} +else +{ +lean_object* x_63; +x_63 = lean_ctor_get(x_61, 0); +lean_inc(x_63); +lean_dec(x_61); +if (lean_obj_tag(x_63) == 6) +{ +lean_object* x_64; lean_object* x_65; +lean_dec(x_53); +lean_dec(x_26); +lean_dec(x_14); +lean_dec(x_9); +lean_dec(x_7); +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +lean_dec(x_63); +x_65 = l___private_Lean_Elab_Match_10__getNumExplicitCtorParams(x_1, x_64, x_4, x_23); +lean_dec(x_1); +if (lean_obj_tag(x_65) == 0) +{ +uint8_t x_66; +x_66 = !lean_is_exclusive(x_65); +if (x_66 == 0) +{ +lean_object* x_67; lean_object* x_68; +x_67 = lean_ctor_get(x_65, 0); +if (lean_is_scalar(x_16)) { + x_68 = lean_alloc_ctor(0, 2, 0); +} else { + x_68 = x_16; +} +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_25); +lean_ctor_set(x_65, 0, x_68); +return x_65; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_69 = lean_ctor_get(x_65, 0); +x_70 = lean_ctor_get(x_65, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_65); +if (lean_is_scalar(x_16)) { + x_71 = lean_alloc_ctor(0, 2, 0); +} else { + x_71 = x_16; +} +lean_ctor_set(x_71, 0, x_69); +lean_ctor_set(x_71, 1, x_25); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set(x_72, 1, x_70); +return x_72; +} +} +else +{ +uint8_t x_73; +lean_dec(x_25); +lean_dec(x_16); +x_73 = !lean_is_exclusive(x_65); +if (x_73 == 0) +{ +return x_65; +} +else +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_65, 0); +x_75 = lean_ctor_get(x_65, 1); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_65); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +return x_76; +} +} +} +else +{ +lean_object* x_77; +lean_dec(x_63); +lean_dec(x_16); +x_77 = lean_box(0); +x_54 = x_77; +goto block_60; +} +} +block_60: +{ +lean_object* x_55; uint8_t x_56; +lean_dec(x_54); +x_55 = l_Lean_EqnCompiler_matchPatternAttr; +x_56 = l_Lean_TagAttribute_hasTag(x_55, x_7, x_53); +lean_dec(x_53); +lean_dec(x_7); +if (x_56 == 0) +{ +lean_object* x_57; +lean_dec(x_26); +lean_dec(x_9); +x_57 = lean_box(0); +x_27 = x_57; +goto block_46; +} +else +{ +lean_object* x_58; lean_object* x_59; +lean_dec(x_14); +lean_dec(x_4); +lean_dec(x_1); +if (lean_is_scalar(x_26)) { + x_58 = lean_alloc_ctor(0, 2, 0); +} else { + x_58 = x_26; +} +lean_ctor_set(x_58, 0, x_17); +lean_ctor_set(x_58, 1, x_25); +if (lean_is_scalar(x_9)) { + x_59 = lean_alloc_ctor(0, 2, 0); +} else { + x_59 = x_9; +} +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_23); +return x_59; +} +} +} +else +{ +lean_object* x_78; +lean_dec(x_52); +lean_dec(x_26); +lean_dec(x_16); +lean_dec(x_9); +lean_dec(x_7); +x_78 = lean_box(0); +x_27 = x_78; +goto block_46; +} +} +else +{ +lean_object* x_79; +lean_dec(x_51); +lean_dec(x_26); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_9); +lean_dec(x_7); +x_79 = l___private_Lean_Elab_Match_11__throwAmbiguous___rarg(x_1, x_49, x_25, x_4, x_23); +lean_dec(x_25); +lean_dec(x_1); +return x_79; +} +} +block_46: +{ +lean_object* x_28; lean_object* x_29; +lean_dec(x_27); +x_28 = l_Lean_Syntax_getId(x_14); +lean_dec(x_14); +x_29 = l___private_Lean_Elab_Match_12__processVar(x_1, x_28, x_2, x_25, x_4, x_23); +lean_dec(x_1); +if (lean_obj_tag(x_29) == 0) +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_29, 0); +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) +{ +lean_object* x_33; +x_33 = lean_ctor_get(x_31, 0); +lean_dec(x_33); +lean_ctor_set(x_31, 0, x_17); +return x_29; +} +else +{ +lean_object* x_34; lean_object* x_35; +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +lean_dec(x_31); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_17); +lean_ctor_set(x_35, 1, x_34); +lean_ctor_set(x_29, 0, x_35); +return x_29; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_36 = lean_ctor_get(x_29, 0); +x_37 = lean_ctor_get(x_29, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_29); +x_38 = lean_ctor_get(x_36, 1); +lean_inc(x_38); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + x_39 = x_36; +} else { + lean_dec_ref(x_36); + x_39 = lean_box(0); +} +if (lean_is_scalar(x_39)) { + x_40 = lean_alloc_ctor(0, 2, 0); +} else { + x_40 = x_39; +} +lean_ctor_set(x_40, 0, x_17); +lean_ctor_set(x_40, 1, x_38); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_37); +return x_41; +} +} +else +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_29); +if (x_42 == 0) +{ +return x_29; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_29, 0); +x_44 = lean_ctor_get(x_29, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_29); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; +} +} +} +} +block_106: +{ +if (lean_obj_tag(x_14) == 3) +{ +uint8_t x_83; +x_83 = !lean_is_exclusive(x_81); +if (x_83 == 0) +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_84 = lean_ctor_get(x_81, 0); +lean_dec(x_84); +x_85 = lean_ctor_get(x_14, 2); +lean_inc(x_85); +x_86 = lean_ctor_get(x_14, 3); +lean_inc(x_86); +x_87 = lean_box(0); +lean_inc(x_4); +x_88 = l_Lean_Elab_Term_resolveName(x_1, x_85, x_86, x_87, x_4, x_82); +if (lean_obj_tag(x_88) == 0) +{ +lean_object* x_89; lean_object* x_90; +x_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_88, 1); +lean_inc(x_90); +lean_dec(x_88); +lean_ctor_set(x_81, 0, x_89); +x_22 = x_81; +x_23 = x_90; +goto block_80; +} +else +{ +lean_object* x_91; +x_91 = lean_ctor_get(x_88, 1); +lean_inc(x_91); +lean_dec(x_88); +lean_ctor_set(x_81, 0, x_87); +x_22 = x_81; +x_23 = x_91; +goto block_80; +} +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_92 = lean_ctor_get(x_81, 1); +lean_inc(x_92); +lean_dec(x_81); +x_93 = lean_ctor_get(x_14, 2); +lean_inc(x_93); +x_94 = lean_ctor_get(x_14, 3); +lean_inc(x_94); +x_95 = lean_box(0); +lean_inc(x_4); +x_96 = l_Lean_Elab_Term_resolveName(x_1, x_93, x_94, x_95, x_4, x_82); +if (lean_obj_tag(x_96) == 0) +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +x_98 = lean_ctor_get(x_96, 1); +lean_inc(x_98); +lean_dec(x_96); +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_97); +lean_ctor_set(x_99, 1, x_92); +x_22 = x_99; +x_23 = x_98; +goto block_80; +} +else +{ +lean_object* x_100; lean_object* x_101; +x_100 = lean_ctor_get(x_96, 1); +lean_inc(x_100); +lean_dec(x_96); +x_101 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_101, 0, x_95); +lean_ctor_set(x_101, 1, x_92); +x_22 = x_101; +x_23 = x_100; +goto block_80; +} +} +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_1); +x_102 = lean_ctor_get(x_81, 1); +lean_inc(x_102); +lean_dec(x_81); +x_103 = l___private_Lean_Elab_Match_13__processIdAux___closed__1; +x_104 = l_unreachable_x21___rarg(x_103); +x_105 = lean_apply_3(x_104, x_102, x_4, x_82); +return x_105; +} +} +} +} +} +} +lean_object* l___private_Lean_Elab_Match_13__processIdAux___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_6; lean_object* x_7; +x_6 = lean_unbox(x_2); +lean_dec(x_2); +x_7 = l___private_Lean_Elab_Match_13__processIdAux(x_1, x_6, x_3, x_4, x_5); +return x_7; +} +} +lean_object* l___private_Lean_Elab_Match_14__processCtor(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; lean_object* x_6; +x_5 = 1; +x_6 = l___private_Lean_Elab_Match_13__processIdAux(x_1, x_5, x_2, x_3, x_4); +return x_6; +} +} +lean_object* l___private_Lean_Elab_Match_15__processId(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; lean_object* x_6; +x_5 = 0; +x_6 = l___private_Lean_Elab_Match_13__processIdAux(x_1, x_5, x_2, x_3, x_4); +if (lean_obj_tag(x_6) == 0) +{ +uint8_t x_7; +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_ctor_get(x_6, 0); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_dec(x_10); +x_11 = lean_box(0); +lean_ctor_set(x_8, 0, x_11); +return x_6; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_8, 1); +lean_inc(x_12); +lean_dec(x_8); +x_13 = lean_box(0); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +lean_ctor_set(x_6, 0, x_14); +return x_6; +} +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_15 = lean_ctor_get(x_6, 0); +x_16 = lean_ctor_get(x_6, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_6); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +if (lean_is_exclusive(x_15)) { + lean_ctor_release(x_15, 0); + lean_ctor_release(x_15, 1); + x_18 = x_15; +} else { + lean_dec_ref(x_15); + x_18 = lean_box(0); +} +x_19 = lean_box(0); +if (lean_is_scalar(x_18)) { + x_20 = lean_alloc_ctor(0, 2, 0); +} else { + x_20 = x_18; +} +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_17); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_16); +return x_21; +} +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_6); +if (x_22 == 0) +{ +return x_6; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_6, 0); +x_24 = lean_ctor_get(x_6, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_6); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +lean_object* _init_l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid pattern"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern___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; uint8_t x_7; +x_5 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__3; +x_6 = l_Lean_Elab_Term_throwError___rarg(x_1, x_5, x_3, x_4); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +return x_6; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_6, 0); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_9); +lean_inc(x_8); +lean_dec(x_6); +x_10 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_10, 0, x_8); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +} +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___boxed), 4, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_16__throwInvalidPattern___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___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_array_get_size(x_1); +x_9 = lean_nat_dec_lt(x_3, x_8); +lean_dec(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_4); +lean_ctor_set(x_10, 1, x_5); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_7); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_12 = lean_array_fget(x_1, x_3); +x_13 = lean_unsigned_to_nat(2u); +x_14 = lean_nat_mod(x_3, x_13); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_nat_dec_eq(x_14, x_15); +lean_dec(x_14); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_unsigned_to_nat(1u); +x_18 = lean_nat_add(x_3, x_17); +lean_dec(x_3); +x_19 = lean_array_push(x_4, x_12); +x_3 = x_18; +x_4 = x_19; +goto _start; +} +else +{ +lean_object* x_21; +lean_inc(x_2); +lean_inc(x_6); +x_21 = lean_apply_4(x_2, x_12, x_5, x_6, x_7); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec(x_21); +x_24 = lean_ctor_get(x_22, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_22, 1); +lean_inc(x_25); +lean_dec(x_22); +x_26 = lean_unsigned_to_nat(1u); +x_27 = lean_nat_add(x_3, x_26); +lean_dec(x_3); +x_28 = lean_array_push(x_4, x_24); +x_3 = x_27; +x_4 = x_28; +x_5 = x_25; +x_7 = x_23; +goto _start; +} +else +{ +uint8_t x_30; +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_30 = !lean_is_exclusive(x_21); +if (x_30 == 0) +{ +return x_21; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_21, 0); +x_32 = lean_ctor_get(x_21, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_21); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +} +} +} +lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__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; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Array_empty___closed__1; +x_8 = l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__2(x_1, x_2, x_6, x_7, x_3, x_4, x_5); +return x_8; +} +} +lean_object* _init_l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("named parameters are not allowed in patterns"); +return x_1; +} +} +lean_object* _init_l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_get_size(x_2); +x_8 = lean_nat_dec_lt(x_3, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_9 = lean_box(0); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_4); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_6); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_12 = lean_array_fget(x_2, x_3); +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_add(x_3, x_13); +lean_dec(x_3); +x_15 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; +lean_inc(x_1); +x_16 = lean_name_mk_string(x_1, x_15); +lean_inc(x_12); +x_17 = l_Lean_Syntax_isOfKind(x_12, x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_dec(x_12); +x_3 = x_14; +goto _start; +} +else +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +lean_dec(x_14); +lean_dec(x_4); +lean_dec(x_1); +x_19 = l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__3; +x_20 = l_Lean_Elab_Term_throwError___rarg(x_12, x_19, x_5, x_6); +lean_dec(x_12); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +return x_20; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_ctor_get(x_20, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_20); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} +} +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_get_size(x_3); +x_8 = lean_nat_dec_lt(x_2, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_5); +lean_dec(x_2); +x_9 = x_3; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_4); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_6); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_12 = lean_array_fget(x_3, x_2); +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_array_fset(x_3, x_2, x_13); +x_15 = x_12; +x_16 = lean_nat_dec_lt(x_2, x_1); +if (x_16 == 0) +{ +lean_object* x_17; +lean_inc(x_5); +x_17 = l___private_Lean_Elab_Match_17__collect___main(x_15, x_4, x_5, x_6); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec(x_17); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_dec(x_18); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_2, x_22); +x_24 = x_20; +x_25 = lean_array_fset(x_14, x_2, x_24); +lean_dec(x_2); +x_2 = x_23; +x_3 = x_25; +x_4 = x_21; +x_6 = x_19; +goto _start; +} +else +{ +uint8_t x_27; +lean_dec(x_14); +lean_dec(x_5); +lean_dec(x_2); +x_27 = !lean_is_exclusive(x_17); +if (x_27 == 0) +{ +return x_17; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_17, 0); +x_29 = lean_ctor_get(x_17, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_17); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_31 = lean_unsigned_to_nat(1u); +x_32 = lean_nat_add(x_2, x_31); +x_33 = x_15; +x_34 = lean_array_fset(x_14, x_2, x_33); +lean_dec(x_2); +x_2 = x_32; +x_3 = x_34; +goto _start; +} +} +} +} +lean_object* l___private_Lean_Elab_Match_17__collect___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_unsigned_to_nat(2u); +x_6 = l_Lean_Syntax_getArg(x_1, x_5); +x_7 = l___private_Lean_Elab_Match_17__collect___main(x_6, x_2, x_3, x_4); +if (lean_obj_tag(x_7) == 0) +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_ctor_get(x_7, 0); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_9, 0); +x_12 = l_Lean_Syntax_setArg(x_1, x_5, x_11); +lean_ctor_set(x_9, 0, x_12); +return x_7; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_ctor_get(x_9, 0); +x_14 = lean_ctor_get(x_9, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_9); +x_15 = l_Lean_Syntax_setArg(x_1, x_5, x_13); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +lean_ctor_set(x_7, 0, x_16); +return x_7; +} +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_17 = lean_ctor_get(x_7, 0); +x_18 = lean_ctor_get(x_7, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_7); +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +if (lean_is_exclusive(x_17)) { + lean_ctor_release(x_17, 0); + lean_ctor_release(x_17, 1); + x_21 = x_17; +} else { + lean_dec_ref(x_17); + x_21 = lean_box(0); +} +x_22 = l_Lean_Syntax_setArg(x_1, x_5, x_19); +if (lean_is_scalar(x_21)) { + x_23 = lean_alloc_ctor(0, 2, 0); +} else { + x_23 = x_21; +} +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_20); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_18); +return x_24; +} +} +else +{ +uint8_t x_25; +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_7); +if (x_25 == 0) +{ +return x_7; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_7, 0); +x_27 = lean_ctor_get(x_7, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_7); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid pattern, notation is ambiguous"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_17__collect___main___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_17__collect___main___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Match_17__collect___main___closed__4; +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_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Match_17__collect___main___closed__6; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Match_17__collect___main___closed__7; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_17__collect___main), 4, 0); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_SourceInfo_inhabited___closed__1; +x_2 = l_Lean_Parser_FirstTokens_toStr___closed__3; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l___private_Lean_Elab_Match_17__collect___main___closed__10; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Match_17__collect___main___closed__12; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid struct instance pattern, 'with' is not allowed in patterns"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_17__collect___main___closed__14; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_17__collect___main___closed__15; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_17__collect___main___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_17__collect___main___lambda__1), 4, 0); +return x_1; +} +} +lean_object* l___private_Lean_Elab_Match_17__collect___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 1: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; uint8_t x_9; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +x_7 = l_Lean_mkAppStx___closed__8; +x_8 = lean_name_eq(x_5, x_7); +x_9 = !lean_is_exclusive(x_4); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_4, 5); +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_add(x_10, x_11); +lean_ctor_set(x_4, 5, x_12); +x_13 = !lean_is_exclusive(x_3); +if (x_13 == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_3, 9); +lean_dec(x_14); +lean_ctor_set(x_3, 9, x_10); +if (x_8 == 0) +{ +lean_object* x_15; uint8_t x_16; +x_15 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; +x_16 = lean_name_eq(x_5, x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = l_Lean_Parser_Term_structInst___elambda__1___closed__2; +x_18 = lean_name_eq(x_5, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = l_Lean_mkHole___closed__2; +x_20 = lean_name_eq(x_5, x_19); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__2; +x_22 = lean_name_eq(x_5, x_21); +if (x_22 == 0) +{ +lean_object* x_23; uint8_t x_24; +x_23 = l_Lean_mkTermIdFromIdent___closed__2; +x_24 = lean_name_eq(x_5, x_23); +if (x_24 == 0) +{ +lean_object* x_25; uint8_t x_26; +lean_dec(x_6); +x_25 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; +x_26 = lean_name_eq(x_5, x_25); +if (x_26 == 0) +{ +lean_object* x_27; uint8_t x_28; +x_27 = l_Lean_String_HasQuote___closed__2; +x_28 = lean_name_eq(x_5, x_27); +if (x_28 == 0) +{ +lean_object* x_29; uint8_t x_30; +x_29 = l_Lean_Nat_HasQuote___closed__2; +x_30 = lean_name_eq(x_5, x_29); +if (x_30 == 0) +{ +lean_object* x_31; uint8_t x_32; +x_31 = l_Lean_Parser_Term_char___elambda__1___closed__2; +x_32 = lean_name_eq(x_5, x_31); +if (x_32 == 0) +{ +lean_object* x_33; uint8_t x_34; +x_33 = l_Lean_choiceKind; +x_34 = lean_name_eq(x_5, x_33); +lean_dec(x_5); +if (x_34 == 0) +{ +lean_object* x_35; +x_35 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; +lean_dec(x_2); +x_36 = l___private_Lean_Elab_Match_17__collect___main___closed__3; +x_37 = l_Lean_Elab_Term_throwError___rarg(x_1, x_36, x_3, x_4); +lean_dec(x_1); +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) +{ +return x_37; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} +} +else +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_3); +lean_dec(x_5); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_1); +lean_ctor_set(x_42, 1, x_2); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_4); +return x_43; +} +} +else +{ +lean_object* x_44; lean_object* x_45; +lean_dec(x_3); +lean_dec(x_5); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_1); +lean_ctor_set(x_44, 1, x_2); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_4); +return x_45; +} +} +else +{ +lean_object* x_46; lean_object* x_47; +lean_dec(x_3); +lean_dec(x_5); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_2); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_4); +return x_47; +} +} +else +{ +lean_object* x_48; lean_object* x_49; +lean_dec(x_3); +lean_dec(x_5); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_1); +lean_ctor_set(x_48, 1, x_2); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_4); +return x_49; +} +} +else +{ +lean_object* x_50; lean_object* x_51; uint8_t x_52; +lean_dec(x_5); +x_50 = l_Lean_Syntax_inhabited; +x_51 = lean_array_get(x_50, x_6, x_11); +lean_dec(x_6); +x_52 = l_Lean_Syntax_isNone(x_51); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; +x_53 = lean_unsigned_to_nat(0u); +x_54 = l_Lean_Syntax_getArg(x_51, x_53); +lean_dec(x_51); +x_55 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +lean_inc(x_54); +x_56 = l_Lean_Syntax_isOfKind(x_54, x_55); +if (x_56 == 0) +{ +lean_object* x_57; uint8_t x_58; +x_57 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +lean_inc(x_54); +x_58 = l_Lean_Syntax_isOfKind(x_54, x_57); +if (x_58 == 0) +{ +lean_object* x_59; +lean_dec(x_54); +x_59 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_59; +} +else +{ +lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; +x_60 = l_Lean_Syntax_getIdOfTermId(x_1); +x_61 = l_Lean_Syntax_getArg(x_54, x_11); +lean_dec(x_54); +x_62 = 0; +lean_inc(x_3); +lean_inc(x_60); +x_63 = l___private_Lean_Elab_Match_12__processVar(x_1, x_60, x_62, x_2, x_3, x_4); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_63, 1); +lean_inc(x_65); +lean_dec(x_63); +x_66 = lean_ctor_get(x_64, 1); +lean_inc(x_66); +lean_dec(x_64); +lean_inc(x_3); +x_67 = l___private_Lean_Elab_Match_17__collect___main(x_61, x_66, x_3, x_65); +if (lean_obj_tag(x_67) == 0) +{ +lean_object* x_68; lean_object* x_69; uint8_t x_70; +x_68 = lean_ctor_get(x_67, 0); +lean_inc(x_68); +x_69 = lean_ctor_get(x_67, 1); +lean_inc(x_69); +lean_dec(x_67); +x_70 = !lean_is_exclusive(x_68); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; +x_71 = lean_ctor_get(x_68, 0); +x_72 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_69); +lean_dec(x_3); +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +lean_dec(x_72); +x_75 = l_Lean_Elab_Term_getMainModule___rarg(x_74); +x_76 = !lean_is_exclusive(x_75); +if (x_76 == 0) +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; +x_77 = lean_ctor_get(x_75, 0); +x_78 = l___private_Lean_Elab_Match_17__collect___main___closed__6; +x_79 = l_Lean_addMacroScope(x_77, x_78, x_73); +x_80 = l_Lean_SourceInfo_inhabited___closed__1; +x_81 = l___private_Lean_Elab_Match_17__collect___main___closed__5; +x_82 = l___private_Lean_Elab_Match_17__collect___main___closed__8; +x_83 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_83, 0, x_80); +lean_ctor_set(x_83, 1, x_81); +lean_ctor_set(x_83, 2, x_79); +lean_ctor_set(x_83, 3, x_82); +x_84 = l_Array_empty___closed__1; +x_85 = lean_array_push(x_84, x_83); +x_86 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_87 = lean_array_push(x_85, x_86); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_23); +lean_ctor_set(x_88, 1, x_87); +x_89 = lean_array_push(x_84, x_88); +x_90 = l_Lean_mkTermIdFrom(x_1, x_60); +x_91 = !lean_is_exclusive(x_1); +if (x_91 == 0) +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_92 = lean_ctor_get(x_1, 1); +lean_dec(x_92); +x_93 = lean_ctor_get(x_1, 0); +lean_dec(x_93); +x_94 = lean_array_push(x_84, x_90); +x_95 = lean_array_push(x_94, x_71); +x_96 = l_Lean_nullKind___closed__2; +lean_ctor_set(x_1, 1, x_95); +lean_ctor_set(x_1, 0, x_96); +x_97 = lean_array_push(x_89, x_1); +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_7); +lean_ctor_set(x_98, 1, x_97); +lean_ctor_set(x_68, 0, x_98); +lean_ctor_set(x_75, 0, x_68); +return x_75; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +lean_dec(x_1); +x_99 = lean_array_push(x_84, x_90); +x_100 = lean_array_push(x_99, x_71); +x_101 = l_Lean_nullKind___closed__2; +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_100); +x_103 = lean_array_push(x_89, x_102); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_7); +lean_ctor_set(x_104, 1, x_103); +lean_ctor_set(x_68, 0, x_104); +lean_ctor_set(x_75, 0, x_68); +return x_75; +} +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_105 = lean_ctor_get(x_75, 0); +x_106 = lean_ctor_get(x_75, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_75); +x_107 = l___private_Lean_Elab_Match_17__collect___main___closed__6; +x_108 = l_Lean_addMacroScope(x_105, x_107, x_73); +x_109 = l_Lean_SourceInfo_inhabited___closed__1; +x_110 = l___private_Lean_Elab_Match_17__collect___main___closed__5; +x_111 = l___private_Lean_Elab_Match_17__collect___main___closed__8; +x_112 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_112, 0, x_109); +lean_ctor_set(x_112, 1, x_110); +lean_ctor_set(x_112, 2, x_108); +lean_ctor_set(x_112, 3, x_111); +x_113 = l_Array_empty___closed__1; +x_114 = lean_array_push(x_113, x_112); +x_115 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_116 = lean_array_push(x_114, x_115); +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_23); +lean_ctor_set(x_117, 1, x_116); +x_118 = lean_array_push(x_113, x_117); +x_119 = l_Lean_mkTermIdFrom(x_1, x_60); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_120 = x_1; +} else { + lean_dec_ref(x_1); + x_120 = lean_box(0); +} +x_121 = lean_array_push(x_113, x_119); +x_122 = lean_array_push(x_121, x_71); +x_123 = l_Lean_nullKind___closed__2; +if (lean_is_scalar(x_120)) { + x_124 = lean_alloc_ctor(1, 2, 0); +} else { + x_124 = x_120; +} +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_122); +x_125 = lean_array_push(x_118, x_124); +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_7); +lean_ctor_set(x_126, 1, x_125); +lean_ctor_set(x_68, 0, x_126); +x_127 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_127, 0, x_68); +lean_ctor_set(x_127, 1, x_106); +return x_127; +} +} +else +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; +x_128 = lean_ctor_get(x_68, 0); +x_129 = lean_ctor_get(x_68, 1); +lean_inc(x_129); +lean_inc(x_128); +lean_dec(x_68); +x_130 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_69); +lean_dec(x_3); +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +x_132 = lean_ctor_get(x_130, 1); +lean_inc(x_132); +lean_dec(x_130); +x_133 = l_Lean_Elab_Term_getMainModule___rarg(x_132); +x_134 = lean_ctor_get(x_133, 0); +lean_inc(x_134); +x_135 = lean_ctor_get(x_133, 1); +lean_inc(x_135); +if (lean_is_exclusive(x_133)) { + lean_ctor_release(x_133, 0); + lean_ctor_release(x_133, 1); + x_136 = x_133; +} else { + lean_dec_ref(x_133); + x_136 = lean_box(0); +} +x_137 = l___private_Lean_Elab_Match_17__collect___main___closed__6; +x_138 = l_Lean_addMacroScope(x_134, x_137, x_131); +x_139 = l_Lean_SourceInfo_inhabited___closed__1; +x_140 = l___private_Lean_Elab_Match_17__collect___main___closed__5; +x_141 = l___private_Lean_Elab_Match_17__collect___main___closed__8; +x_142 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_142, 0, x_139); +lean_ctor_set(x_142, 1, x_140); +lean_ctor_set(x_142, 2, x_138); +lean_ctor_set(x_142, 3, x_141); +x_143 = l_Array_empty___closed__1; +x_144 = lean_array_push(x_143, x_142); +x_145 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_146 = lean_array_push(x_144, x_145); +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_23); +lean_ctor_set(x_147, 1, x_146); +x_148 = lean_array_push(x_143, x_147); +x_149 = l_Lean_mkTermIdFrom(x_1, x_60); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_150 = x_1; +} else { + lean_dec_ref(x_1); + x_150 = lean_box(0); +} +x_151 = lean_array_push(x_143, x_149); +x_152 = lean_array_push(x_151, x_128); +x_153 = l_Lean_nullKind___closed__2; +if (lean_is_scalar(x_150)) { + x_154 = lean_alloc_ctor(1, 2, 0); +} else { + x_154 = x_150; +} +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_152); +x_155 = lean_array_push(x_148, x_154); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_7); +lean_ctor_set(x_156, 1, x_155); +x_157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_157, 0, x_156); +lean_ctor_set(x_157, 1, x_129); +if (lean_is_scalar(x_136)) { + x_158 = lean_alloc_ctor(0, 2, 0); +} else { + x_158 = x_136; +} +lean_ctor_set(x_158, 0, x_157); +lean_ctor_set(x_158, 1, x_135); +return x_158; +} +} +else +{ +uint8_t x_159; +lean_dec(x_60); +lean_dec(x_3); +lean_dec(x_1); +x_159 = !lean_is_exclusive(x_67); +if (x_159 == 0) +{ +return x_67; +} +else +{ +lean_object* x_160; lean_object* x_161; lean_object* x_162; +x_160 = lean_ctor_get(x_67, 0); +x_161 = lean_ctor_get(x_67, 1); +lean_inc(x_161); +lean_inc(x_160); +lean_dec(x_67); +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +return x_162; +} +} +} +else +{ +uint8_t x_163; +lean_dec(x_61); +lean_dec(x_60); +lean_dec(x_3); +lean_dec(x_1); +x_163 = !lean_is_exclusive(x_63); +if (x_163 == 0) +{ +return x_63; +} +else +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_164 = lean_ctor_get(x_63, 0); +x_165 = lean_ctor_get(x_63, 1); +lean_inc(x_165); +lean_inc(x_164); +lean_dec(x_63); +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_164); +lean_ctor_set(x_166, 1, x_165); +return x_166; +} +} +} +} +else +{ +uint8_t x_167; lean_object* x_168; +lean_dec(x_54); +x_167 = 1; +lean_inc(x_1); +x_168 = l___private_Lean_Elab_Match_13__processIdAux(x_1, x_167, x_2, x_3, x_4); +if (lean_obj_tag(x_168) == 0) +{ +uint8_t x_169; +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) +{ +lean_object* x_170; uint8_t x_171; +x_170 = lean_ctor_get(x_168, 0); +x_171 = !lean_is_exclusive(x_170); +if (x_171 == 0) +{ +lean_object* x_172; +x_172 = lean_ctor_get(x_170, 0); +lean_dec(x_172); +lean_ctor_set(x_170, 0, x_1); +return x_168; +} +else +{ +lean_object* x_173; lean_object* x_174; +x_173 = lean_ctor_get(x_170, 1); +lean_inc(x_173); +lean_dec(x_170); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_1); +lean_ctor_set(x_174, 1, x_173); +lean_ctor_set(x_168, 0, x_174); +return x_168; +} +} +else +{ +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; +x_175 = lean_ctor_get(x_168, 0); +x_176 = lean_ctor_get(x_168, 1); +lean_inc(x_176); +lean_inc(x_175); +lean_dec(x_168); +x_177 = lean_ctor_get(x_175, 1); +lean_inc(x_177); +if (lean_is_exclusive(x_175)) { + lean_ctor_release(x_175, 0); + lean_ctor_release(x_175, 1); + x_178 = x_175; +} else { + lean_dec_ref(x_175); + x_178 = lean_box(0); +} +if (lean_is_scalar(x_178)) { + x_179 = lean_alloc_ctor(0, 2, 0); +} else { + x_179 = x_178; +} +lean_ctor_set(x_179, 0, x_1); +lean_ctor_set(x_179, 1, x_177); +x_180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_180, 0, x_179); +lean_ctor_set(x_180, 1, x_176); +return x_180; +} +} +else +{ +uint8_t x_181; +lean_dec(x_1); +x_181 = !lean_is_exclusive(x_168); +if (x_181 == 0) +{ +return x_168; +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; +x_182 = lean_ctor_get(x_168, 0); +x_183 = lean_ctor_get(x_168, 1); +lean_inc(x_183); +lean_inc(x_182); +lean_dec(x_168); +x_184 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_184, 0, x_182); +lean_ctor_set(x_184, 1, x_183); +return x_184; +} +} +} +} +else +{ +lean_object* x_185; +lean_dec(x_51); +lean_inc(x_1); +x_185 = l___private_Lean_Elab_Match_15__processId(x_1, x_2, x_3, x_4); +if (lean_obj_tag(x_185) == 0) +{ +uint8_t x_186; +x_186 = !lean_is_exclusive(x_185); +if (x_186 == 0) +{ +lean_object* x_187; uint8_t x_188; +x_187 = lean_ctor_get(x_185, 0); +x_188 = !lean_is_exclusive(x_187); +if (x_188 == 0) +{ +lean_object* x_189; +x_189 = lean_ctor_get(x_187, 0); +lean_dec(x_189); +lean_ctor_set(x_187, 0, x_1); +return x_185; +} +else +{ +lean_object* x_190; lean_object* x_191; +x_190 = lean_ctor_get(x_187, 1); +lean_inc(x_190); +lean_dec(x_187); +x_191 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_191, 0, x_1); +lean_ctor_set(x_191, 1, x_190); +lean_ctor_set(x_185, 0, x_191); +return x_185; +} +} +else +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; +x_192 = lean_ctor_get(x_185, 0); +x_193 = lean_ctor_get(x_185, 1); +lean_inc(x_193); +lean_inc(x_192); +lean_dec(x_185); +x_194 = lean_ctor_get(x_192, 1); +lean_inc(x_194); +if (lean_is_exclusive(x_192)) { + lean_ctor_release(x_192, 0); + lean_ctor_release(x_192, 1); + x_195 = x_192; +} else { + lean_dec_ref(x_192); + x_195 = lean_box(0); +} +if (lean_is_scalar(x_195)) { + x_196 = lean_alloc_ctor(0, 2, 0); +} else { + x_196 = x_195; +} +lean_ctor_set(x_196, 0, x_1); +lean_ctor_set(x_196, 1, x_194); +x_197 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_197, 0, x_196); +lean_ctor_set(x_197, 1, x_193); +return x_197; +} +} +else +{ +uint8_t x_198; +lean_dec(x_1); +x_198 = !lean_is_exclusive(x_185); +if (x_198 == 0) +{ +return x_185; +} +else +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; +x_199 = lean_ctor_get(x_185, 0); +x_200 = lean_ctor_get(x_185, 1); +lean_inc(x_200); +lean_inc(x_199); +lean_dec(x_185); +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_199); +lean_ctor_set(x_201, 1, x_200); +return x_201; +} +} +} +} +} +else +{ +lean_object* x_202; lean_object* x_203; uint8_t x_204; +x_202 = l_Lean_Syntax_inhabited; +x_203 = lean_array_get(x_202, x_6, x_11); +x_204 = l_Lean_Syntax_isNone(x_203); +if (x_204 == 0) +{ +uint8_t x_205; +x_205 = !lean_is_exclusive(x_1); +if (x_205 == 0) +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; +x_206 = lean_ctor_get(x_1, 1); +lean_dec(x_206); +x_207 = lean_ctor_get(x_1, 0); +lean_dec(x_207); +x_208 = lean_unsigned_to_nat(0u); +x_209 = l_Lean_Syntax_getArg(x_203, x_208); +x_210 = l_Lean_Syntax_getArg(x_203, x_11); +x_211 = l_Lean_Syntax_isNone(x_210); +if (x_211 == 0) +{ +lean_object* x_212; lean_object* x_213; uint8_t x_214; +x_212 = l_Lean_Syntax_getArg(x_210, x_208); +x_213 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; +lean_inc(x_212); +x_214 = l_Lean_Syntax_isOfKind(x_212, x_213); +if (x_214 == 0) +{ +lean_object* x_215; +lean_inc(x_3); +x_215 = l___private_Lean_Elab_Match_17__collect___main(x_209, x_2, x_3, x_4); +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; +x_216 = lean_ctor_get(x_215, 0); +lean_inc(x_216); +x_217 = lean_ctor_get(x_215, 1); +lean_inc(x_217); +lean_dec(x_215); +x_218 = lean_ctor_get(x_216, 0); +lean_inc(x_218); +x_219 = lean_ctor_get(x_216, 1); +lean_inc(x_219); +lean_dec(x_216); +x_220 = l_Lean_Syntax_setArg(x_203, x_208, x_218); +x_221 = l_Lean_Syntax_getArg(x_212, x_11); +x_222 = l_Lean_Syntax_getArgs(x_221); +lean_dec(x_221); +x_223 = l___private_Lean_Elab_Match_17__collect___main___closed__9; +x_224 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_222, x_223, x_219, x_3, x_217); +lean_dec(x_222); +if (lean_obj_tag(x_224) == 0) +{ +uint8_t x_225; +x_225 = !lean_is_exclusive(x_224); +if (x_225 == 0) +{ +lean_object* x_226; uint8_t x_227; +x_226 = lean_ctor_get(x_224, 0); +x_227 = !lean_is_exclusive(x_226); +if (x_227 == 0) +{ +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; +x_228 = lean_ctor_get(x_226, 0); +x_229 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_228); +lean_ctor_set(x_1, 0, x_229); +x_230 = l_Lean_Syntax_setArg(x_212, x_11, x_1); +x_231 = l_Lean_Syntax_setArg(x_210, x_208, x_230); +x_232 = l_Lean_Syntax_setArg(x_220, x_11, x_231); +x_233 = lean_array_set(x_6, x_11, x_232); +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_5); +lean_ctor_set(x_234, 1, x_233); +lean_ctor_set(x_226, 0, x_234); +return x_224; +} +else +{ +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; +x_235 = lean_ctor_get(x_226, 0); +x_236 = lean_ctor_get(x_226, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_226); +x_237 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_235); +lean_ctor_set(x_1, 0, x_237); +x_238 = l_Lean_Syntax_setArg(x_212, x_11, x_1); +x_239 = l_Lean_Syntax_setArg(x_210, x_208, x_238); +x_240 = l_Lean_Syntax_setArg(x_220, x_11, x_239); +x_241 = lean_array_set(x_6, x_11, x_240); +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_5); +lean_ctor_set(x_242, 1, x_241); +x_243 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set(x_243, 1, x_236); +lean_ctor_set(x_224, 0, x_243); +return x_224; +} +} +else +{ +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; +x_244 = lean_ctor_get(x_224, 0); +x_245 = lean_ctor_get(x_224, 1); +lean_inc(x_245); +lean_inc(x_244); +lean_dec(x_224); +x_246 = lean_ctor_get(x_244, 0); +lean_inc(x_246); +x_247 = lean_ctor_get(x_244, 1); +lean_inc(x_247); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_248 = x_244; +} else { + lean_dec_ref(x_244); + x_248 = lean_box(0); +} +x_249 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_246); +lean_ctor_set(x_1, 0, x_249); +x_250 = l_Lean_Syntax_setArg(x_212, x_11, x_1); +x_251 = l_Lean_Syntax_setArg(x_210, x_208, x_250); +x_252 = l_Lean_Syntax_setArg(x_220, x_11, x_251); +x_253 = lean_array_set(x_6, x_11, x_252); +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_5); +lean_ctor_set(x_254, 1, x_253); +if (lean_is_scalar(x_248)) { + x_255 = lean_alloc_ctor(0, 2, 0); +} else { + x_255 = x_248; +} +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set(x_255, 1, x_247); +x_256 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_256, 0, x_255); +lean_ctor_set(x_256, 1, x_245); +return x_256; +} +} +else +{ +uint8_t x_257; +lean_dec(x_220); +lean_dec(x_212); +lean_dec(x_210); +lean_free_object(x_1); +lean_dec(x_6); +lean_dec(x_5); +x_257 = !lean_is_exclusive(x_224); +if (x_257 == 0) +{ +return x_224; +} +else +{ +lean_object* x_258; lean_object* x_259; lean_object* x_260; +x_258 = lean_ctor_get(x_224, 0); +x_259 = lean_ctor_get(x_224, 1); +lean_inc(x_259); +lean_inc(x_258); +lean_dec(x_224); +x_260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_260, 0, x_258); +lean_ctor_set(x_260, 1, x_259); +return x_260; +} +} +} +else +{ +uint8_t x_261; +lean_dec(x_212); +lean_dec(x_210); +lean_free_object(x_1); +lean_dec(x_203); +lean_dec(x_3); +lean_dec(x_6); +lean_dec(x_5); +x_261 = !lean_is_exclusive(x_215); +if (x_261 == 0) +{ +return x_215; +} +else +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; +x_262 = lean_ctor_get(x_215, 0); +x_263 = lean_ctor_get(x_215, 1); +lean_inc(x_263); +lean_inc(x_262); +lean_dec(x_215); +x_264 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_264, 0, x_262); +lean_ctor_set(x_264, 1, x_263); +return x_264; +} +} +} +else +{ +lean_object* x_265; +lean_dec(x_212); +lean_dec(x_210); +x_265 = l___private_Lean_Elab_Match_17__collect___main(x_209, x_2, x_3, x_4); +if (lean_obj_tag(x_265) == 0) +{ +uint8_t x_266; +x_266 = !lean_is_exclusive(x_265); +if (x_266 == 0) +{ +lean_object* x_267; uint8_t x_268; +x_267 = lean_ctor_get(x_265, 0); +x_268 = !lean_is_exclusive(x_267); +if (x_268 == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; +x_269 = lean_ctor_get(x_267, 0); +x_270 = l_Lean_Syntax_setArg(x_203, x_208, x_269); +x_271 = lean_array_set(x_6, x_11, x_270); +lean_ctor_set(x_1, 1, x_271); +lean_ctor_set(x_267, 0, x_1); +return x_265; +} +else +{ +lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_272 = lean_ctor_get(x_267, 0); +x_273 = lean_ctor_get(x_267, 1); +lean_inc(x_273); +lean_inc(x_272); +lean_dec(x_267); +x_274 = l_Lean_Syntax_setArg(x_203, x_208, x_272); +x_275 = lean_array_set(x_6, x_11, x_274); +lean_ctor_set(x_1, 1, x_275); +x_276 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_276, 0, x_1); +lean_ctor_set(x_276, 1, x_273); +lean_ctor_set(x_265, 0, x_276); +return x_265; +} +} +else +{ +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; +x_277 = lean_ctor_get(x_265, 0); +x_278 = lean_ctor_get(x_265, 1); +lean_inc(x_278); +lean_inc(x_277); +lean_dec(x_265); +x_279 = lean_ctor_get(x_277, 0); +lean_inc(x_279); +x_280 = lean_ctor_get(x_277, 1); +lean_inc(x_280); +if (lean_is_exclusive(x_277)) { + lean_ctor_release(x_277, 0); + lean_ctor_release(x_277, 1); + x_281 = x_277; +} else { + lean_dec_ref(x_277); + x_281 = lean_box(0); +} +x_282 = l_Lean_Syntax_setArg(x_203, x_208, x_279); +x_283 = lean_array_set(x_6, x_11, x_282); +lean_ctor_set(x_1, 1, x_283); +if (lean_is_scalar(x_281)) { + x_284 = lean_alloc_ctor(0, 2, 0); +} else { + x_284 = x_281; +} +lean_ctor_set(x_284, 0, x_1); +lean_ctor_set(x_284, 1, x_280); +x_285 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_285, 0, x_284); +lean_ctor_set(x_285, 1, x_278); +return x_285; +} +} +else +{ +uint8_t x_286; +lean_free_object(x_1); +lean_dec(x_203); +lean_dec(x_6); +lean_dec(x_5); +x_286 = !lean_is_exclusive(x_265); +if (x_286 == 0) +{ +return x_265; +} +else +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; +x_287 = lean_ctor_get(x_265, 0); +x_288 = lean_ctor_get(x_265, 1); +lean_inc(x_288); +lean_inc(x_287); +lean_dec(x_265); +x_289 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_289, 0, x_287); +lean_ctor_set(x_289, 1, x_288); +return x_289; +} +} +} +} +else +{ +lean_object* x_290; +lean_dec(x_210); +x_290 = l___private_Lean_Elab_Match_17__collect___main(x_209, x_2, x_3, x_4); +if (lean_obj_tag(x_290) == 0) +{ +uint8_t x_291; +x_291 = !lean_is_exclusive(x_290); +if (x_291 == 0) +{ +lean_object* x_292; uint8_t x_293; +x_292 = lean_ctor_get(x_290, 0); +x_293 = !lean_is_exclusive(x_292); +if (x_293 == 0) +{ +lean_object* x_294; lean_object* x_295; lean_object* x_296; +x_294 = lean_ctor_get(x_292, 0); +x_295 = l_Lean_Syntax_setArg(x_203, x_208, x_294); +x_296 = lean_array_set(x_6, x_11, x_295); +lean_ctor_set(x_1, 1, x_296); +lean_ctor_set(x_292, 0, x_1); +return x_290; +} +else +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; +x_297 = lean_ctor_get(x_292, 0); +x_298 = lean_ctor_get(x_292, 1); +lean_inc(x_298); +lean_inc(x_297); +lean_dec(x_292); +x_299 = l_Lean_Syntax_setArg(x_203, x_208, x_297); +x_300 = lean_array_set(x_6, x_11, x_299); +lean_ctor_set(x_1, 1, x_300); +x_301 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_301, 0, x_1); +lean_ctor_set(x_301, 1, x_298); +lean_ctor_set(x_290, 0, x_301); +return x_290; +} +} +else +{ +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; +x_302 = lean_ctor_get(x_290, 0); +x_303 = lean_ctor_get(x_290, 1); +lean_inc(x_303); +lean_inc(x_302); +lean_dec(x_290); +x_304 = lean_ctor_get(x_302, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_302, 1); +lean_inc(x_305); +if (lean_is_exclusive(x_302)) { + lean_ctor_release(x_302, 0); + lean_ctor_release(x_302, 1); + x_306 = x_302; +} else { + lean_dec_ref(x_302); + x_306 = lean_box(0); +} +x_307 = l_Lean_Syntax_setArg(x_203, x_208, x_304); +x_308 = lean_array_set(x_6, x_11, x_307); +lean_ctor_set(x_1, 1, x_308); +if (lean_is_scalar(x_306)) { + x_309 = lean_alloc_ctor(0, 2, 0); +} else { + x_309 = x_306; +} +lean_ctor_set(x_309, 0, x_1); +lean_ctor_set(x_309, 1, x_305); +x_310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_310, 0, x_309); +lean_ctor_set(x_310, 1, x_303); +return x_310; +} +} +else +{ +uint8_t x_311; +lean_free_object(x_1); +lean_dec(x_203); +lean_dec(x_6); +lean_dec(x_5); +x_311 = !lean_is_exclusive(x_290); +if (x_311 == 0) +{ +return x_290; +} +else +{ +lean_object* x_312; lean_object* x_313; lean_object* x_314; +x_312 = lean_ctor_get(x_290, 0); +x_313 = lean_ctor_get(x_290, 1); +lean_inc(x_313); +lean_inc(x_312); +lean_dec(x_290); +x_314 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_314, 0, x_312); +lean_ctor_set(x_314, 1, x_313); +return x_314; +} +} +} +} +else +{ +lean_object* x_315; lean_object* x_316; lean_object* x_317; uint8_t x_318; +lean_dec(x_1); +x_315 = lean_unsigned_to_nat(0u); +x_316 = l_Lean_Syntax_getArg(x_203, x_315); +x_317 = l_Lean_Syntax_getArg(x_203, x_11); +x_318 = l_Lean_Syntax_isNone(x_317); +if (x_318 == 0) +{ +lean_object* x_319; lean_object* x_320; uint8_t x_321; +x_319 = l_Lean_Syntax_getArg(x_317, x_315); +x_320 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; +lean_inc(x_319); +x_321 = l_Lean_Syntax_isOfKind(x_319, x_320); +if (x_321 == 0) +{ +lean_object* x_322; +lean_inc(x_3); +x_322 = l___private_Lean_Elab_Match_17__collect___main(x_316, x_2, x_3, x_4); +if (lean_obj_tag(x_322) == 0) +{ +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; +x_323 = lean_ctor_get(x_322, 0); +lean_inc(x_323); +x_324 = lean_ctor_get(x_322, 1); +lean_inc(x_324); +lean_dec(x_322); +x_325 = lean_ctor_get(x_323, 0); +lean_inc(x_325); +x_326 = lean_ctor_get(x_323, 1); +lean_inc(x_326); +lean_dec(x_323); +x_327 = l_Lean_Syntax_setArg(x_203, x_315, x_325); +x_328 = l_Lean_Syntax_getArg(x_319, x_11); +x_329 = l_Lean_Syntax_getArgs(x_328); +lean_dec(x_328); +x_330 = l___private_Lean_Elab_Match_17__collect___main___closed__9; +x_331 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_329, x_330, x_326, x_3, x_324); +lean_dec(x_329); +if (lean_obj_tag(x_331) == 0) +{ +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; +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = lean_ctor_get(x_332, 0); +lean_inc(x_335); +x_336 = lean_ctor_get(x_332, 1); +lean_inc(x_336); +if (lean_is_exclusive(x_332)) { + lean_ctor_release(x_332, 0); + lean_ctor_release(x_332, 1); + x_337 = x_332; +} else { + lean_dec_ref(x_332); + x_337 = lean_box(0); +} +x_338 = l_Lean_nullKind; +x_339 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_339, 0, x_338); +lean_ctor_set(x_339, 1, x_335); +x_340 = l_Lean_Syntax_setArg(x_319, x_11, x_339); +x_341 = l_Lean_Syntax_setArg(x_317, x_315, x_340); +x_342 = l_Lean_Syntax_setArg(x_327, x_11, x_341); +x_343 = lean_array_set(x_6, x_11, x_342); +x_344 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_344, 0, x_5); +lean_ctor_set(x_344, 1, x_343); +if (lean_is_scalar(x_337)) { + x_345 = lean_alloc_ctor(0, 2, 0); +} else { + x_345 = x_337; +} +lean_ctor_set(x_345, 0, x_344); +lean_ctor_set(x_345, 1, x_336); +if (lean_is_scalar(x_334)) { + x_346 = lean_alloc_ctor(0, 2, 0); +} else { + x_346 = x_334; +} +lean_ctor_set(x_346, 0, x_345); +lean_ctor_set(x_346, 1, x_333); +return x_346; +} +else +{ +lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; +lean_dec(x_327); +lean_dec(x_319); +lean_dec(x_317); +lean_dec(x_6); +lean_dec(x_5); +x_347 = lean_ctor_get(x_331, 0); +lean_inc(x_347); +x_348 = lean_ctor_get(x_331, 1); +lean_inc(x_348); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_349 = x_331; +} else { + lean_dec_ref(x_331); + x_349 = lean_box(0); +} +if (lean_is_scalar(x_349)) { + x_350 = lean_alloc_ctor(1, 2, 0); +} else { + x_350 = x_349; +} +lean_ctor_set(x_350, 0, x_347); +lean_ctor_set(x_350, 1, x_348); +return x_350; +} +} +else +{ +lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; +lean_dec(x_319); +lean_dec(x_317); +lean_dec(x_203); +lean_dec(x_3); +lean_dec(x_6); +lean_dec(x_5); +x_351 = lean_ctor_get(x_322, 0); +lean_inc(x_351); +x_352 = lean_ctor_get(x_322, 1); +lean_inc(x_352); +if (lean_is_exclusive(x_322)) { + lean_ctor_release(x_322, 0); + lean_ctor_release(x_322, 1); + x_353 = x_322; +} else { + lean_dec_ref(x_322); + x_353 = lean_box(0); +} +if (lean_is_scalar(x_353)) { + x_354 = lean_alloc_ctor(1, 2, 0); +} else { + x_354 = x_353; +} +lean_ctor_set(x_354, 0, x_351); +lean_ctor_set(x_354, 1, x_352); +return x_354; +} +} +else +{ +lean_object* x_355; +lean_dec(x_319); +lean_dec(x_317); +x_355 = l___private_Lean_Elab_Match_17__collect___main(x_316, x_2, x_3, x_4); +if (lean_obj_tag(x_355) == 0) +{ +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; +x_356 = lean_ctor_get(x_355, 0); +lean_inc(x_356); +x_357 = lean_ctor_get(x_355, 1); +lean_inc(x_357); +if (lean_is_exclusive(x_355)) { + lean_ctor_release(x_355, 0); + lean_ctor_release(x_355, 1); + x_358 = x_355; +} else { + lean_dec_ref(x_355); + x_358 = lean_box(0); +} +x_359 = lean_ctor_get(x_356, 0); +lean_inc(x_359); +x_360 = lean_ctor_get(x_356, 1); +lean_inc(x_360); +if (lean_is_exclusive(x_356)) { + lean_ctor_release(x_356, 0); + lean_ctor_release(x_356, 1); + x_361 = x_356; +} else { + lean_dec_ref(x_356); + x_361 = lean_box(0); +} +x_362 = l_Lean_Syntax_setArg(x_203, x_315, x_359); +x_363 = lean_array_set(x_6, x_11, x_362); +x_364 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_364, 0, x_5); +lean_ctor_set(x_364, 1, x_363); +if (lean_is_scalar(x_361)) { + x_365 = lean_alloc_ctor(0, 2, 0); +} else { + x_365 = x_361; +} +lean_ctor_set(x_365, 0, x_364); +lean_ctor_set(x_365, 1, x_360); +if (lean_is_scalar(x_358)) { + x_366 = lean_alloc_ctor(0, 2, 0); +} else { + x_366 = x_358; +} +lean_ctor_set(x_366, 0, x_365); +lean_ctor_set(x_366, 1, x_357); +return x_366; +} +else +{ +lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; +lean_dec(x_203); +lean_dec(x_6); +lean_dec(x_5); +x_367 = lean_ctor_get(x_355, 0); +lean_inc(x_367); +x_368 = lean_ctor_get(x_355, 1); +lean_inc(x_368); +if (lean_is_exclusive(x_355)) { + lean_ctor_release(x_355, 0); + lean_ctor_release(x_355, 1); + x_369 = x_355; +} else { + lean_dec_ref(x_355); + x_369 = lean_box(0); +} +if (lean_is_scalar(x_369)) { + x_370 = lean_alloc_ctor(1, 2, 0); +} else { + x_370 = x_369; +} +lean_ctor_set(x_370, 0, x_367); +lean_ctor_set(x_370, 1, x_368); +return x_370; +} +} +} +else +{ +lean_object* x_371; +lean_dec(x_317); +x_371 = l___private_Lean_Elab_Match_17__collect___main(x_316, x_2, x_3, x_4); +if (lean_obj_tag(x_371) == 0) +{ +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; +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); +} +x_375 = lean_ctor_get(x_372, 0); +lean_inc(x_375); +x_376 = lean_ctor_get(x_372, 1); +lean_inc(x_376); +if (lean_is_exclusive(x_372)) { + lean_ctor_release(x_372, 0); + lean_ctor_release(x_372, 1); + x_377 = x_372; +} else { + lean_dec_ref(x_372); + x_377 = lean_box(0); +} +x_378 = l_Lean_Syntax_setArg(x_203, x_315, x_375); +x_379 = lean_array_set(x_6, x_11, x_378); +x_380 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_380, 0, x_5); +lean_ctor_set(x_380, 1, x_379); +if (lean_is_scalar(x_377)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_377; +} +lean_ctor_set(x_381, 0, x_380); +lean_ctor_set(x_381, 1, x_376); +if (lean_is_scalar(x_374)) { + x_382 = lean_alloc_ctor(0, 2, 0); +} else { + x_382 = x_374; +} +lean_ctor_set(x_382, 0, x_381); +lean_ctor_set(x_382, 1, x_373); +return x_382; +} +else +{ +lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; +lean_dec(x_203); +lean_dec(x_6); +lean_dec(x_5); +x_383 = lean_ctor_get(x_371, 0); +lean_inc(x_383); +x_384 = lean_ctor_get(x_371, 1); +lean_inc(x_384); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_385 = x_371; +} else { + lean_dec_ref(x_371); + x_385 = lean_box(0); +} +if (lean_is_scalar(x_385)) { + x_386 = lean_alloc_ctor(1, 2, 0); +} else { + x_386 = x_385; +} +lean_ctor_set(x_386, 0, x_383); +lean_ctor_set(x_386, 1, x_384); +return x_386; +} +} +} +} +else +{ +lean_object* x_387; lean_object* x_388; +lean_dec(x_203); +lean_dec(x_3); +lean_dec(x_6); +lean_dec(x_5); +x_387 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_387, 0, x_1); +lean_ctor_set(x_387, 1, x_2); +x_388 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_388, 0, x_387); +lean_ctor_set(x_388, 1, x_4); +return x_388; +} +} +} +else +{ +uint8_t x_389; +lean_dec(x_6); +lean_dec(x_5); +x_389 = !lean_is_exclusive(x_1); +if (x_389 == 0) +{ +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_390 = lean_ctor_get(x_1, 1); +lean_dec(x_390); +x_391 = lean_ctor_get(x_1, 0); +lean_dec(x_391); +x_392 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +lean_dec(x_3); +x_393 = lean_ctor_get(x_392, 0); +lean_inc(x_393); +x_394 = lean_ctor_get(x_392, 1); +lean_inc(x_394); +lean_dec(x_392); +x_395 = l_Lean_Elab_Term_getMainModule___rarg(x_394); +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; uint8_t x_407; +x_397 = lean_ctor_get(x_395, 0); +x_398 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_399 = l_Lean_addMacroScope(x_397, x_398, x_393); +x_400 = lean_box(0); +x_401 = l_Lean_SourceInfo_inhabited___closed__1; +x_402 = l___private_Lean_Elab_Match_17__collect___main___closed__13; +x_403 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_403, 0, x_401); +lean_ctor_set(x_403, 1, x_402); +lean_ctor_set(x_403, 2, x_399); +lean_ctor_set(x_403, 3, x_400); +x_404 = l___private_Lean_Elab_Match_17__collect___main___closed__11; +x_405 = lean_array_push(x_404, x_403); +x_406 = l_Lean_Parser_Term_namedHole___elambda__1___closed__2; +lean_ctor_set(x_1, 1, x_405); +lean_ctor_set(x_1, 0, x_406); +x_407 = !lean_is_exclusive(x_2); +if (x_407 == 0) +{ +lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; +x_408 = lean_ctor_get(x_2, 1); +x_409 = l_Lean_Syntax_getArg(x_1, x_11); +x_410 = l_Lean_Syntax_getId(x_409); +lean_dec(x_409); +x_411 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_411, 0, x_410); +x_412 = lean_array_push(x_408, x_411); +lean_ctor_set(x_2, 1, x_412); +x_413 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_413, 0, x_1); +lean_ctor_set(x_413, 1, x_2); +lean_ctor_set(x_395, 0, x_413); +return x_395; +} +else +{ +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; +x_414 = lean_ctor_get(x_2, 0); +x_415 = lean_ctor_get(x_2, 1); +lean_inc(x_415); +lean_inc(x_414); +lean_dec(x_2); +x_416 = l_Lean_Syntax_getArg(x_1, x_11); +x_417 = l_Lean_Syntax_getId(x_416); +lean_dec(x_416); +x_418 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_418, 0, x_417); +x_419 = lean_array_push(x_415, x_418); +x_420 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_420, 0, x_414); +lean_ctor_set(x_420, 1, x_419); +x_421 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_421, 0, x_1); +lean_ctor_set(x_421, 1, x_420); +lean_ctor_set(x_395, 0, x_421); +return x_395; +} +} +else +{ +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; +x_422 = lean_ctor_get(x_395, 0); +x_423 = lean_ctor_get(x_395, 1); +lean_inc(x_423); +lean_inc(x_422); +lean_dec(x_395); +x_424 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_425 = l_Lean_addMacroScope(x_422, x_424, x_393); +x_426 = lean_box(0); +x_427 = l_Lean_SourceInfo_inhabited___closed__1; +x_428 = l___private_Lean_Elab_Match_17__collect___main___closed__13; +x_429 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_429, 0, x_427); +lean_ctor_set(x_429, 1, x_428); +lean_ctor_set(x_429, 2, x_425); +lean_ctor_set(x_429, 3, x_426); +x_430 = l___private_Lean_Elab_Match_17__collect___main___closed__11; +x_431 = lean_array_push(x_430, x_429); +x_432 = l_Lean_Parser_Term_namedHole___elambda__1___closed__2; +lean_ctor_set(x_1, 1, x_431); +lean_ctor_set(x_1, 0, x_432); +x_433 = lean_ctor_get(x_2, 0); +lean_inc(x_433); +x_434 = lean_ctor_get(x_2, 1); +lean_inc(x_434); +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + lean_ctor_release(x_2, 1); + x_435 = x_2; +} else { + lean_dec_ref(x_2); + x_435 = lean_box(0); +} +x_436 = l_Lean_Syntax_getArg(x_1, x_11); +x_437 = l_Lean_Syntax_getId(x_436); +lean_dec(x_436); +x_438 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_438, 0, x_437); +x_439 = lean_array_push(x_434, x_438); +if (lean_is_scalar(x_435)) { + x_440 = lean_alloc_ctor(0, 2, 0); +} else { + x_440 = x_435; +} +lean_ctor_set(x_440, 0, x_433); +lean_ctor_set(x_440, 1, x_439); +x_441 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_441, 0, x_1); +lean_ctor_set(x_441, 1, x_440); +x_442 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_442, 0, x_441); +lean_ctor_set(x_442, 1, x_423); +return x_442; +} +} +else +{ +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_dec(x_1); +x_443 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +lean_dec(x_3); +x_444 = lean_ctor_get(x_443, 0); +lean_inc(x_444); +x_445 = lean_ctor_get(x_443, 1); +lean_inc(x_445); +lean_dec(x_443); +x_446 = l_Lean_Elab_Term_getMainModule___rarg(x_445); +x_447 = lean_ctor_get(x_446, 0); +lean_inc(x_447); +x_448 = lean_ctor_get(x_446, 1); +lean_inc(x_448); +if (lean_is_exclusive(x_446)) { + lean_ctor_release(x_446, 0); + lean_ctor_release(x_446, 1); + x_449 = x_446; +} else { + lean_dec_ref(x_446); + x_449 = lean_box(0); +} +x_450 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_451 = l_Lean_addMacroScope(x_447, x_450, x_444); +x_452 = lean_box(0); +x_453 = l_Lean_SourceInfo_inhabited___closed__1; +x_454 = l___private_Lean_Elab_Match_17__collect___main___closed__13; +x_455 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_455, 0, x_453); +lean_ctor_set(x_455, 1, x_454); +lean_ctor_set(x_455, 2, x_451); +lean_ctor_set(x_455, 3, x_452); +x_456 = l___private_Lean_Elab_Match_17__collect___main___closed__11; +x_457 = lean_array_push(x_456, x_455); +x_458 = l_Lean_Parser_Term_namedHole___elambda__1___closed__2; +x_459 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_459, 0, x_458); +lean_ctor_set(x_459, 1, x_457); +x_460 = lean_ctor_get(x_2, 0); +lean_inc(x_460); +x_461 = lean_ctor_get(x_2, 1); +lean_inc(x_461); +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + lean_ctor_release(x_2, 1); + x_462 = x_2; +} else { + lean_dec_ref(x_2); + x_462 = lean_box(0); +} +x_463 = l_Lean_Syntax_getArg(x_459, x_11); +x_464 = l_Lean_Syntax_getId(x_463); +lean_dec(x_463); +x_465 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_465, 0, x_464); +x_466 = lean_array_push(x_461, x_465); +if (lean_is_scalar(x_462)) { + x_467 = lean_alloc_ctor(0, 2, 0); +} else { + x_467 = x_462; +} +lean_ctor_set(x_467, 0, x_460); +lean_ctor_set(x_467, 1, x_466); +x_468 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_468, 0, x_459); +lean_ctor_set(x_468, 1, x_467); +if (lean_is_scalar(x_449)) { + x_469 = lean_alloc_ctor(0, 2, 0); +} else { + x_469 = x_449; +} +lean_ctor_set(x_469, 0, x_468); +lean_ctor_set(x_469, 1, x_448); +return x_469; +} +} +} +else +{ +lean_object* x_470; lean_object* x_471; lean_object* x_472; uint8_t x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; uint8_t x_477; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_470 = x_1; +} else { + lean_dec_ref(x_1); + x_470 = lean_box(0); +} +x_471 = l_Lean_Syntax_inhabited; +x_472 = lean_array_get(x_471, x_6, x_11); +x_473 = l_Lean_Syntax_isNone(x_472); +x_474 = lean_unsigned_to_nat(2u); +x_475 = lean_array_get(x_471, x_6, x_474); +x_476 = l_Lean_Syntax_getArgs(x_475); +lean_dec(x_475); +if (x_473 == 0) +{ +uint8_t x_517; +x_517 = 0; +x_477 = x_517; +goto block_516; +} +else +{ +uint8_t x_518; +x_518 = 1; +x_477 = x_518; +goto block_516; +} +block_516: +{ +if (x_477 == 0) +{ +lean_object* x_478; lean_object* x_479; uint8_t x_480; +lean_dec(x_476); +lean_dec(x_470); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_478 = l___private_Lean_Elab_Match_17__collect___main___closed__16; +x_479 = l_Lean_Elab_Term_throwError___rarg(x_472, x_478, x_3, x_4); +lean_dec(x_472); +x_480 = !lean_is_exclusive(x_479); +if (x_480 == 0) +{ +return x_479; +} +else +{ +lean_object* x_481; lean_object* x_482; lean_object* x_483; +x_481 = lean_ctor_get(x_479, 0); +x_482 = lean_ctor_get(x_479, 1); +lean_inc(x_482); +lean_inc(x_481); +lean_dec(x_479); +x_483 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_483, 0, x_481); +lean_ctor_set(x_483, 1, x_482); +return x_483; +} +} +else +{ +lean_object* x_484; lean_object* x_485; +lean_dec(x_472); +x_484 = l___private_Lean_Elab_Match_17__collect___main___closed__17; +x_485 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_476, x_484, x_2, x_3, x_4); +lean_dec(x_476); +if (lean_obj_tag(x_485) == 0) +{ +uint8_t x_486; +x_486 = !lean_is_exclusive(x_485); +if (x_486 == 0) +{ +lean_object* x_487; uint8_t x_488; +x_487 = lean_ctor_get(x_485, 0); +x_488 = !lean_is_exclusive(x_487); +if (x_488 == 0) +{ +lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; +x_489 = lean_ctor_get(x_487, 0); +x_490 = l_Lean_nullKind; +if (lean_is_scalar(x_470)) { + x_491 = lean_alloc_ctor(1, 2, 0); +} else { + x_491 = x_470; +} +lean_ctor_set(x_491, 0, x_490); +lean_ctor_set(x_491, 1, x_489); +x_492 = lean_array_set(x_6, x_474, x_491); +x_493 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_493, 0, x_5); +lean_ctor_set(x_493, 1, x_492); +lean_ctor_set(x_487, 0, x_493); +return x_485; +} +else +{ +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; +x_494 = lean_ctor_get(x_487, 0); +x_495 = lean_ctor_get(x_487, 1); +lean_inc(x_495); +lean_inc(x_494); +lean_dec(x_487); +x_496 = l_Lean_nullKind; +if (lean_is_scalar(x_470)) { + x_497 = lean_alloc_ctor(1, 2, 0); +} else { + x_497 = x_470; +} +lean_ctor_set(x_497, 0, x_496); +lean_ctor_set(x_497, 1, x_494); +x_498 = lean_array_set(x_6, x_474, x_497); +x_499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_499, 0, x_5); +lean_ctor_set(x_499, 1, x_498); +x_500 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_500, 0, x_499); +lean_ctor_set(x_500, 1, x_495); +lean_ctor_set(x_485, 0, x_500); +return x_485; +} +} +else +{ +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; +x_501 = lean_ctor_get(x_485, 0); +x_502 = lean_ctor_get(x_485, 1); +lean_inc(x_502); +lean_inc(x_501); +lean_dec(x_485); +x_503 = lean_ctor_get(x_501, 0); +lean_inc(x_503); +x_504 = lean_ctor_get(x_501, 1); +lean_inc(x_504); +if (lean_is_exclusive(x_501)) { + lean_ctor_release(x_501, 0); + lean_ctor_release(x_501, 1); + x_505 = x_501; +} else { + lean_dec_ref(x_501); + x_505 = lean_box(0); +} +x_506 = l_Lean_nullKind; +if (lean_is_scalar(x_470)) { + x_507 = lean_alloc_ctor(1, 2, 0); +} else { + x_507 = x_470; +} +lean_ctor_set(x_507, 0, x_506); +lean_ctor_set(x_507, 1, x_503); +x_508 = lean_array_set(x_6, x_474, x_507); +x_509 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_509, 0, x_5); +lean_ctor_set(x_509, 1, x_508); +if (lean_is_scalar(x_505)) { + x_510 = lean_alloc_ctor(0, 2, 0); +} else { + x_510 = x_505; +} +lean_ctor_set(x_510, 0, x_509); +lean_ctor_set(x_510, 1, x_504); +x_511 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_511, 0, x_510); +lean_ctor_set(x_511, 1, x_502); +return x_511; +} +} +else +{ +uint8_t x_512; +lean_dec(x_470); +lean_dec(x_6); +lean_dec(x_5); +x_512 = !lean_is_exclusive(x_485); +if (x_512 == 0) +{ +return x_485; +} +else +{ +lean_object* x_513; lean_object* x_514; lean_object* x_515; +x_513 = lean_ctor_get(x_485, 0); +x_514 = lean_ctor_get(x_485, 1); +lean_inc(x_514); +lean_inc(x_513); +lean_dec(x_485); +x_515 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_515, 0, x_513); +lean_ctor_set(x_515, 1, x_514); +return x_515; +} +} +} +} +} +} +else +{ +uint8_t x_519; +x_519 = !lean_is_exclusive(x_1); +if (x_519 == 0) +{ +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; +x_520 = lean_ctor_get(x_1, 1); +lean_dec(x_520); +x_521 = lean_ctor_get(x_1, 0); +lean_dec(x_521); +x_522 = l_Lean_Syntax_inhabited; +x_523 = lean_array_get(x_522, x_6, x_11); +x_524 = l_Lean_Syntax_getArgs(x_523); +lean_dec(x_523); +x_525 = l___private_Lean_Elab_Match_17__collect___main___closed__9; +x_526 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_524, x_525, x_2, x_3, x_4); +lean_dec(x_524); +if (lean_obj_tag(x_526) == 0) +{ +uint8_t x_527; +x_527 = !lean_is_exclusive(x_526); +if (x_527 == 0) +{ +lean_object* x_528; uint8_t x_529; +x_528 = lean_ctor_get(x_526, 0); +x_529 = !lean_is_exclusive(x_528); +if (x_529 == 0) +{ +lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; +x_530 = lean_ctor_get(x_528, 0); +x_531 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_530); +lean_ctor_set(x_1, 0, x_531); +x_532 = lean_array_set(x_6, x_11, x_1); +x_533 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_533, 0, x_5); +lean_ctor_set(x_533, 1, x_532); +lean_ctor_set(x_528, 0, x_533); +return x_526; +} +else +{ +lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; +x_534 = lean_ctor_get(x_528, 0); +x_535 = lean_ctor_get(x_528, 1); +lean_inc(x_535); +lean_inc(x_534); +lean_dec(x_528); +x_536 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_534); +lean_ctor_set(x_1, 0, x_536); +x_537 = lean_array_set(x_6, x_11, x_1); +x_538 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_538, 0, x_5); +lean_ctor_set(x_538, 1, x_537); +x_539 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_539, 0, x_538); +lean_ctor_set(x_539, 1, x_535); +lean_ctor_set(x_526, 0, x_539); +return x_526; +} +} +else +{ +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; +x_540 = lean_ctor_get(x_526, 0); +x_541 = lean_ctor_get(x_526, 1); +lean_inc(x_541); +lean_inc(x_540); +lean_dec(x_526); +x_542 = lean_ctor_get(x_540, 0); +lean_inc(x_542); +x_543 = lean_ctor_get(x_540, 1); +lean_inc(x_543); +if (lean_is_exclusive(x_540)) { + lean_ctor_release(x_540, 0); + lean_ctor_release(x_540, 1); + x_544 = x_540; +} else { + lean_dec_ref(x_540); + x_544 = lean_box(0); +} +x_545 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_542); +lean_ctor_set(x_1, 0, x_545); +x_546 = lean_array_set(x_6, x_11, x_1); +x_547 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_547, 0, x_5); +lean_ctor_set(x_547, 1, x_546); +if (lean_is_scalar(x_544)) { + x_548 = lean_alloc_ctor(0, 2, 0); +} else { + x_548 = x_544; +} +lean_ctor_set(x_548, 0, x_547); +lean_ctor_set(x_548, 1, x_543); +x_549 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_549, 0, x_548); +lean_ctor_set(x_549, 1, x_541); +return x_549; +} +} +else +{ +uint8_t x_550; +lean_free_object(x_1); +lean_dec(x_6); +lean_dec(x_5); +x_550 = !lean_is_exclusive(x_526); +if (x_550 == 0) +{ +return x_526; +} +else +{ +lean_object* x_551; lean_object* x_552; lean_object* x_553; +x_551 = lean_ctor_get(x_526, 0); +x_552 = lean_ctor_get(x_526, 1); +lean_inc(x_552); +lean_inc(x_551); +lean_dec(x_526); +x_553 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_553, 0, x_551); +lean_ctor_set(x_553, 1, x_552); +return x_553; +} +} +} +else +{ +lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; +lean_dec(x_1); +x_554 = l_Lean_Syntax_inhabited; +x_555 = lean_array_get(x_554, x_6, x_11); +x_556 = l_Lean_Syntax_getArgs(x_555); +lean_dec(x_555); +x_557 = l___private_Lean_Elab_Match_17__collect___main___closed__9; +x_558 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_556, x_557, x_2, x_3, x_4); +lean_dec(x_556); +if (lean_obj_tag(x_558) == 0) +{ +lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; +x_559 = lean_ctor_get(x_558, 0); +lean_inc(x_559); +x_560 = lean_ctor_get(x_558, 1); +lean_inc(x_560); +if (lean_is_exclusive(x_558)) { + lean_ctor_release(x_558, 0); + lean_ctor_release(x_558, 1); + x_561 = x_558; +} else { + lean_dec_ref(x_558); + x_561 = lean_box(0); +} +x_562 = lean_ctor_get(x_559, 0); +lean_inc(x_562); +x_563 = lean_ctor_get(x_559, 1); +lean_inc(x_563); +if (lean_is_exclusive(x_559)) { + lean_ctor_release(x_559, 0); + lean_ctor_release(x_559, 1); + x_564 = x_559; +} else { + lean_dec_ref(x_559); + x_564 = lean_box(0); +} +x_565 = l_Lean_nullKind; +x_566 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_566, 0, x_565); +lean_ctor_set(x_566, 1, x_562); +x_567 = lean_array_set(x_6, x_11, x_566); +x_568 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_568, 0, x_5); +lean_ctor_set(x_568, 1, x_567); +if (lean_is_scalar(x_564)) { + x_569 = lean_alloc_ctor(0, 2, 0); +} else { + x_569 = x_564; +} +lean_ctor_set(x_569, 0, x_568); +lean_ctor_set(x_569, 1, x_563); +if (lean_is_scalar(x_561)) { + x_570 = lean_alloc_ctor(0, 2, 0); +} else { + x_570 = x_561; +} +lean_ctor_set(x_570, 0, x_569); +lean_ctor_set(x_570, 1, x_560); +return x_570; +} +else +{ +lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; +lean_dec(x_6); +lean_dec(x_5); +x_571 = lean_ctor_get(x_558, 0); +lean_inc(x_571); +x_572 = lean_ctor_get(x_558, 1); +lean_inc(x_572); +if (lean_is_exclusive(x_558)) { + lean_ctor_release(x_558, 0); + lean_ctor_release(x_558, 1); + x_573 = x_558; +} else { + lean_dec_ref(x_558); + x_573 = lean_box(0); +} +if (lean_is_scalar(x_573)) { + x_574 = lean_alloc_ctor(1, 2, 0); +} else { + x_574 = x_573; +} +lean_ctor_set(x_574, 0, x_571); +lean_ctor_set(x_574, 1, x_572); +return x_574; +} +} +} +} +else +{ +uint8_t x_575; +x_575 = !lean_is_exclusive(x_1); +if (x_575 == 0) +{ +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; +x_576 = lean_ctor_get(x_1, 1); +lean_dec(x_576); +x_577 = lean_ctor_get(x_1, 0); +lean_dec(x_577); +x_578 = l_Lean_Syntax_inhabited; +x_579 = lean_unsigned_to_nat(0u); +x_580 = lean_array_get(x_578, x_6, x_579); +x_581 = lean_array_get(x_578, x_6, x_11); +x_582 = l_Lean_Syntax_getArgs(x_581); +lean_dec(x_581); +x_583 = l_Lean_mkAppStx___closed__6; +lean_inc(x_3); +x_584 = l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3(x_583, x_582, x_579, x_2, x_3, x_4); +if (lean_obj_tag(x_584) == 0) +{ +lean_object* x_585; lean_object* x_586; lean_object* x_587; uint8_t x_588; lean_object* x_589; +x_585 = lean_ctor_get(x_584, 0); +lean_inc(x_585); +x_586 = lean_ctor_get(x_584, 1); +lean_inc(x_586); +lean_dec(x_584); +x_587 = lean_ctor_get(x_585, 1); +lean_inc(x_587); +lean_dec(x_585); +x_588 = 1; +lean_inc(x_3); +x_589 = l___private_Lean_Elab_Match_13__processIdAux(x_580, x_588, x_587, x_3, x_586); +if (lean_obj_tag(x_589) == 0) +{ +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; +x_590 = lean_ctor_get(x_589, 0); +lean_inc(x_590); +x_591 = lean_ctor_get(x_589, 1); +lean_inc(x_591); +lean_dec(x_589); +x_592 = lean_ctor_get(x_590, 0); +lean_inc(x_592); +x_593 = lean_ctor_get(x_590, 1); +lean_inc(x_593); +lean_dec(x_590); +x_594 = x_582; +x_595 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__4___boxed), 6, 3); +lean_closure_set(x_595, 0, x_592); +lean_closure_set(x_595, 1, x_579); +lean_closure_set(x_595, 2, x_594); +x_596 = x_595; +x_597 = lean_apply_3(x_596, x_593, x_3, x_591); +if (lean_obj_tag(x_597) == 0) +{ +uint8_t x_598; +x_598 = !lean_is_exclusive(x_597); +if (x_598 == 0) +{ +lean_object* x_599; uint8_t x_600; +x_599 = lean_ctor_get(x_597, 0); +x_600 = !lean_is_exclusive(x_599); +if (x_600 == 0) +{ +lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; +x_601 = lean_ctor_get(x_599, 0); +x_602 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_601); +lean_ctor_set(x_1, 0, x_602); +x_603 = lean_array_set(x_6, x_11, x_1); +x_604 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_604, 0, x_5); +lean_ctor_set(x_604, 1, x_603); +lean_ctor_set(x_599, 0, x_604); +return x_597; +} +else +{ +lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; +x_605 = lean_ctor_get(x_599, 0); +x_606 = lean_ctor_get(x_599, 1); +lean_inc(x_606); +lean_inc(x_605); +lean_dec(x_599); +x_607 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_605); +lean_ctor_set(x_1, 0, x_607); +x_608 = lean_array_set(x_6, x_11, x_1); +x_609 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_609, 0, x_5); +lean_ctor_set(x_609, 1, x_608); +x_610 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_610, 0, x_609); +lean_ctor_set(x_610, 1, x_606); +lean_ctor_set(x_597, 0, x_610); +return x_597; +} +} +else +{ +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; +x_611 = lean_ctor_get(x_597, 0); +x_612 = lean_ctor_get(x_597, 1); +lean_inc(x_612); +lean_inc(x_611); +lean_dec(x_597); +x_613 = lean_ctor_get(x_611, 0); +lean_inc(x_613); +x_614 = lean_ctor_get(x_611, 1); +lean_inc(x_614); +if (lean_is_exclusive(x_611)) { + lean_ctor_release(x_611, 0); + lean_ctor_release(x_611, 1); + x_615 = x_611; +} else { + lean_dec_ref(x_611); + x_615 = lean_box(0); +} +x_616 = l_Lean_nullKind; +lean_ctor_set(x_1, 1, x_613); +lean_ctor_set(x_1, 0, x_616); +x_617 = lean_array_set(x_6, x_11, x_1); +x_618 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_618, 0, x_5); +lean_ctor_set(x_618, 1, x_617); +if (lean_is_scalar(x_615)) { + x_619 = lean_alloc_ctor(0, 2, 0); +} else { + x_619 = x_615; +} +lean_ctor_set(x_619, 0, x_618); +lean_ctor_set(x_619, 1, x_614); +x_620 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_620, 0, x_619); +lean_ctor_set(x_620, 1, x_612); +return x_620; +} +} +else +{ +uint8_t x_621; +lean_free_object(x_1); +lean_dec(x_6); +lean_dec(x_5); +x_621 = !lean_is_exclusive(x_597); +if (x_621 == 0) +{ +return x_597; +} +else +{ +lean_object* x_622; lean_object* x_623; lean_object* x_624; +x_622 = lean_ctor_get(x_597, 0); +x_623 = lean_ctor_get(x_597, 1); +lean_inc(x_623); +lean_inc(x_622); +lean_dec(x_597); +x_624 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_624, 0, x_622); +lean_ctor_set(x_624, 1, x_623); +return x_624; +} +} +} +else +{ +uint8_t x_625; +lean_dec(x_582); +lean_free_object(x_1); +lean_dec(x_3); +lean_dec(x_6); +lean_dec(x_5); +x_625 = !lean_is_exclusive(x_589); +if (x_625 == 0) +{ +return x_589; +} +else +{ +lean_object* x_626; lean_object* x_627; lean_object* x_628; +x_626 = lean_ctor_get(x_589, 0); +x_627 = lean_ctor_get(x_589, 1); +lean_inc(x_627); +lean_inc(x_626); +lean_dec(x_589); +x_628 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_628, 0, x_626); +lean_ctor_set(x_628, 1, x_627); +return x_628; +} +} +} +else +{ +uint8_t x_629; +lean_dec(x_582); +lean_dec(x_580); +lean_free_object(x_1); +lean_dec(x_3); +lean_dec(x_6); +lean_dec(x_5); +x_629 = !lean_is_exclusive(x_584); +if (x_629 == 0) +{ +return x_584; +} +else +{ +lean_object* x_630; lean_object* x_631; lean_object* x_632; +x_630 = lean_ctor_get(x_584, 0); +x_631 = lean_ctor_get(x_584, 1); +lean_inc(x_631); +lean_inc(x_630); +lean_dec(x_584); +x_632 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_632, 0, x_630); +lean_ctor_set(x_632, 1, x_631); +return x_632; +} +} +} +else +{ +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_dec(x_1); +x_633 = l_Lean_Syntax_inhabited; +x_634 = lean_unsigned_to_nat(0u); +x_635 = lean_array_get(x_633, x_6, x_634); +x_636 = lean_array_get(x_633, x_6, x_11); +x_637 = l_Lean_Syntax_getArgs(x_636); +lean_dec(x_636); +x_638 = l_Lean_mkAppStx___closed__6; +lean_inc(x_3); +x_639 = l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3(x_638, x_637, x_634, x_2, x_3, x_4); +if (lean_obj_tag(x_639) == 0) +{ +lean_object* x_640; lean_object* x_641; lean_object* x_642; uint8_t x_643; lean_object* x_644; +x_640 = lean_ctor_get(x_639, 0); +lean_inc(x_640); +x_641 = lean_ctor_get(x_639, 1); +lean_inc(x_641); +lean_dec(x_639); +x_642 = lean_ctor_get(x_640, 1); +lean_inc(x_642); +lean_dec(x_640); +x_643 = 1; +lean_inc(x_3); +x_644 = l___private_Lean_Elab_Match_13__processIdAux(x_635, x_643, x_642, x_3, x_641); +if (lean_obj_tag(x_644) == 0) +{ +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; +x_645 = lean_ctor_get(x_644, 0); +lean_inc(x_645); +x_646 = lean_ctor_get(x_644, 1); +lean_inc(x_646); +lean_dec(x_644); +x_647 = lean_ctor_get(x_645, 0); +lean_inc(x_647); +x_648 = lean_ctor_get(x_645, 1); +lean_inc(x_648); +lean_dec(x_645); +x_649 = x_637; +x_650 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__4___boxed), 6, 3); +lean_closure_set(x_650, 0, x_647); +lean_closure_set(x_650, 1, x_634); +lean_closure_set(x_650, 2, x_649); +x_651 = x_650; +x_652 = lean_apply_3(x_651, x_648, x_3, x_646); +if (lean_obj_tag(x_652) == 0) +{ +lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; 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_653 = lean_ctor_get(x_652, 0); +lean_inc(x_653); +x_654 = lean_ctor_get(x_652, 1); +lean_inc(x_654); +if (lean_is_exclusive(x_652)) { + lean_ctor_release(x_652, 0); + lean_ctor_release(x_652, 1); + x_655 = x_652; +} else { + lean_dec_ref(x_652); + x_655 = lean_box(0); +} +x_656 = lean_ctor_get(x_653, 0); +lean_inc(x_656); +x_657 = lean_ctor_get(x_653, 1); +lean_inc(x_657); +if (lean_is_exclusive(x_653)) { + lean_ctor_release(x_653, 0); + lean_ctor_release(x_653, 1); + x_658 = x_653; +} else { + lean_dec_ref(x_653); + x_658 = lean_box(0); +} +x_659 = l_Lean_nullKind; +x_660 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_660, 0, x_659); +lean_ctor_set(x_660, 1, x_656); +x_661 = lean_array_set(x_6, x_11, x_660); +x_662 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_662, 0, x_5); +lean_ctor_set(x_662, 1, x_661); +if (lean_is_scalar(x_658)) { + x_663 = lean_alloc_ctor(0, 2, 0); +} else { + x_663 = x_658; +} +lean_ctor_set(x_663, 0, x_662); +lean_ctor_set(x_663, 1, x_657); +if (lean_is_scalar(x_655)) { + x_664 = lean_alloc_ctor(0, 2, 0); +} else { + x_664 = x_655; +} +lean_ctor_set(x_664, 0, x_663); +lean_ctor_set(x_664, 1, x_654); +return x_664; +} +else +{ +lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; +lean_dec(x_6); +lean_dec(x_5); +x_665 = lean_ctor_get(x_652, 0); +lean_inc(x_665); +x_666 = lean_ctor_get(x_652, 1); +lean_inc(x_666); +if (lean_is_exclusive(x_652)) { + lean_ctor_release(x_652, 0); + lean_ctor_release(x_652, 1); + x_667 = x_652; +} else { + lean_dec_ref(x_652); + x_667 = lean_box(0); +} +if (lean_is_scalar(x_667)) { + x_668 = lean_alloc_ctor(1, 2, 0); +} else { + x_668 = x_667; +} +lean_ctor_set(x_668, 0, x_665); +lean_ctor_set(x_668, 1, x_666); +return x_668; +} +} +else +{ +lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; +lean_dec(x_637); +lean_dec(x_3); +lean_dec(x_6); +lean_dec(x_5); +x_669 = lean_ctor_get(x_644, 0); +lean_inc(x_669); +x_670 = lean_ctor_get(x_644, 1); +lean_inc(x_670); +if (lean_is_exclusive(x_644)) { + lean_ctor_release(x_644, 0); + lean_ctor_release(x_644, 1); + x_671 = x_644; +} else { + lean_dec_ref(x_644); + x_671 = lean_box(0); +} +if (lean_is_scalar(x_671)) { + x_672 = lean_alloc_ctor(1, 2, 0); +} else { + x_672 = x_671; +} +lean_ctor_set(x_672, 0, x_669); +lean_ctor_set(x_672, 1, x_670); +return x_672; +} +} +else +{ +lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; +lean_dec(x_637); +lean_dec(x_635); +lean_dec(x_3); +lean_dec(x_6); +lean_dec(x_5); +x_673 = lean_ctor_get(x_639, 0); +lean_inc(x_673); +x_674 = lean_ctor_get(x_639, 1); +lean_inc(x_674); +if (lean_is_exclusive(x_639)) { + lean_ctor_release(x_639, 0); + lean_ctor_release(x_639, 1); + x_675 = x_639; +} else { + lean_dec_ref(x_639); + x_675 = lean_box(0); +} +if (lean_is_scalar(x_675)) { + x_676 = lean_alloc_ctor(1, 2, 0); +} else { + x_676 = x_675; +} +lean_ctor_set(x_676, 0, x_673); +lean_ctor_set(x_676, 1, x_674); +return x_676; +} +} +} +} +else +{ +lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; uint8_t x_686; uint8_t x_687; uint8_t x_688; lean_object* x_689; +x_677 = lean_ctor_get(x_3, 0); +x_678 = lean_ctor_get(x_3, 1); +x_679 = lean_ctor_get(x_3, 2); +x_680 = lean_ctor_get(x_3, 3); +x_681 = lean_ctor_get(x_3, 4); +x_682 = lean_ctor_get(x_3, 5); +x_683 = lean_ctor_get(x_3, 6); +x_684 = lean_ctor_get(x_3, 7); +x_685 = lean_ctor_get(x_3, 8); +x_686 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +x_687 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 1); +x_688 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 2); +lean_inc(x_685); +lean_inc(x_684); +lean_inc(x_683); +lean_inc(x_682); +lean_inc(x_681); +lean_inc(x_680); +lean_inc(x_679); +lean_inc(x_678); +lean_inc(x_677); +lean_dec(x_3); +x_689 = lean_alloc_ctor(0, 10, 3); +lean_ctor_set(x_689, 0, x_677); +lean_ctor_set(x_689, 1, x_678); +lean_ctor_set(x_689, 2, x_679); +lean_ctor_set(x_689, 3, x_680); +lean_ctor_set(x_689, 4, x_681); +lean_ctor_set(x_689, 5, x_682); +lean_ctor_set(x_689, 6, x_683); +lean_ctor_set(x_689, 7, x_684); +lean_ctor_set(x_689, 8, x_685); +lean_ctor_set(x_689, 9, x_10); +lean_ctor_set_uint8(x_689, sizeof(void*)*10, x_686); +lean_ctor_set_uint8(x_689, sizeof(void*)*10 + 1, x_687); +lean_ctor_set_uint8(x_689, sizeof(void*)*10 + 2, x_688); +if (x_8 == 0) +{ +lean_object* x_690; uint8_t x_691; +x_690 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; +x_691 = lean_name_eq(x_5, x_690); +if (x_691 == 0) +{ +lean_object* x_692; uint8_t x_693; +x_692 = l_Lean_Parser_Term_structInst___elambda__1___closed__2; +x_693 = lean_name_eq(x_5, x_692); +if (x_693 == 0) +{ +lean_object* x_694; uint8_t x_695; +x_694 = l_Lean_mkHole___closed__2; +x_695 = lean_name_eq(x_5, x_694); +if (x_695 == 0) +{ +lean_object* x_696; uint8_t x_697; +x_696 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__2; +x_697 = lean_name_eq(x_5, x_696); +if (x_697 == 0) +{ +lean_object* x_698; uint8_t x_699; +x_698 = l_Lean_mkTermIdFromIdent___closed__2; +x_699 = lean_name_eq(x_5, x_698); +if (x_699 == 0) +{ +lean_object* x_700; uint8_t x_701; +lean_dec(x_6); +x_700 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; +x_701 = lean_name_eq(x_5, x_700); +if (x_701 == 0) +{ +lean_object* x_702; uint8_t x_703; +x_702 = l_Lean_String_HasQuote___closed__2; +x_703 = lean_name_eq(x_5, x_702); +if (x_703 == 0) +{ +lean_object* x_704; uint8_t x_705; +x_704 = l_Lean_Nat_HasQuote___closed__2; +x_705 = lean_name_eq(x_5, x_704); +if (x_705 == 0) +{ +lean_object* x_706; uint8_t x_707; +x_706 = l_Lean_Parser_Term_char___elambda__1___closed__2; +x_707 = lean_name_eq(x_5, x_706); +if (x_707 == 0) +{ +lean_object* x_708; uint8_t x_709; +x_708 = l_Lean_choiceKind; +x_709 = lean_name_eq(x_5, x_708); +lean_dec(x_5); +if (x_709 == 0) +{ +lean_object* x_710; +x_710 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(x_1, x_2, x_689, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_710; +} +else +{ +lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; +lean_dec(x_2); +x_711 = l___private_Lean_Elab_Match_17__collect___main___closed__3; +x_712 = l_Lean_Elab_Term_throwError___rarg(x_1, x_711, x_689, x_4); +lean_dec(x_1); +x_713 = lean_ctor_get(x_712, 0); +lean_inc(x_713); +x_714 = lean_ctor_get(x_712, 1); +lean_inc(x_714); +if (lean_is_exclusive(x_712)) { + lean_ctor_release(x_712, 0); + lean_ctor_release(x_712, 1); + x_715 = x_712; +} else { + lean_dec_ref(x_712); + x_715 = lean_box(0); +} +if (lean_is_scalar(x_715)) { + x_716 = lean_alloc_ctor(1, 2, 0); +} else { + x_716 = x_715; +} +lean_ctor_set(x_716, 0, x_713); +lean_ctor_set(x_716, 1, x_714); +return x_716; +} +} +else +{ +lean_object* x_717; lean_object* x_718; +lean_dec(x_689); +lean_dec(x_5); +x_717 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_717, 0, x_1); +lean_ctor_set(x_717, 1, x_2); +x_718 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_718, 0, x_717); +lean_ctor_set(x_718, 1, x_4); +return x_718; +} +} +else +{ +lean_object* x_719; lean_object* x_720; +lean_dec(x_689); +lean_dec(x_5); +x_719 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_719, 0, x_1); +lean_ctor_set(x_719, 1, x_2); +x_720 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_720, 0, x_719); +lean_ctor_set(x_720, 1, x_4); +return x_720; +} +} +else +{ +lean_object* x_721; lean_object* x_722; +lean_dec(x_689); +lean_dec(x_5); +x_721 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_721, 0, x_1); +lean_ctor_set(x_721, 1, x_2); +x_722 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_722, 0, x_721); +lean_ctor_set(x_722, 1, x_4); +return x_722; +} +} +else +{ +lean_object* x_723; lean_object* x_724; +lean_dec(x_689); +lean_dec(x_5); +x_723 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_723, 0, x_1); +lean_ctor_set(x_723, 1, x_2); +x_724 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_724, 0, x_723); +lean_ctor_set(x_724, 1, x_4); +return x_724; +} +} +else +{ +lean_object* x_725; lean_object* x_726; uint8_t x_727; +lean_dec(x_5); +x_725 = l_Lean_Syntax_inhabited; +x_726 = lean_array_get(x_725, x_6, x_11); +lean_dec(x_6); +x_727 = l_Lean_Syntax_isNone(x_726); +if (x_727 == 0) +{ +lean_object* x_728; lean_object* x_729; lean_object* x_730; uint8_t x_731; +x_728 = lean_unsigned_to_nat(0u); +x_729 = l_Lean_Syntax_getArg(x_726, x_728); +lean_dec(x_726); +x_730 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +lean_inc(x_729); +x_731 = l_Lean_Syntax_isOfKind(x_729, x_730); +if (x_731 == 0) +{ +lean_object* x_732; uint8_t x_733; +x_732 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +lean_inc(x_729); +x_733 = l_Lean_Syntax_isOfKind(x_729, x_732); +if (x_733 == 0) +{ +lean_object* x_734; +lean_dec(x_729); +x_734 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(x_1, x_2, x_689, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_734; +} +else +{ +lean_object* x_735; lean_object* x_736; uint8_t x_737; lean_object* x_738; +x_735 = l_Lean_Syntax_getIdOfTermId(x_1); +x_736 = l_Lean_Syntax_getArg(x_729, x_11); +lean_dec(x_729); +x_737 = 0; +lean_inc(x_689); +lean_inc(x_735); +x_738 = l___private_Lean_Elab_Match_12__processVar(x_1, x_735, x_737, x_2, x_689, x_4); +if (lean_obj_tag(x_738) == 0) +{ +lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; +x_739 = lean_ctor_get(x_738, 0); +lean_inc(x_739); +x_740 = lean_ctor_get(x_738, 1); +lean_inc(x_740); +lean_dec(x_738); +x_741 = lean_ctor_get(x_739, 1); +lean_inc(x_741); +lean_dec(x_739); +lean_inc(x_689); +x_742 = l___private_Lean_Elab_Match_17__collect___main(x_736, x_741, x_689, x_740); +if (lean_obj_tag(x_742) == 0) +{ +lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; +x_743 = lean_ctor_get(x_742, 0); +lean_inc(x_743); +x_744 = lean_ctor_get(x_742, 1); +lean_inc(x_744); +lean_dec(x_742); +x_745 = lean_ctor_get(x_743, 0); +lean_inc(x_745); +x_746 = lean_ctor_get(x_743, 1); +lean_inc(x_746); +if (lean_is_exclusive(x_743)) { + lean_ctor_release(x_743, 0); + lean_ctor_release(x_743, 1); + x_747 = x_743; +} else { + lean_dec_ref(x_743); + x_747 = lean_box(0); +} +x_748 = l_Lean_Elab_Term_getCurrMacroScope(x_689, x_744); +lean_dec(x_689); +x_749 = lean_ctor_get(x_748, 0); +lean_inc(x_749); +x_750 = lean_ctor_get(x_748, 1); +lean_inc(x_750); +lean_dec(x_748); +x_751 = l_Lean_Elab_Term_getMainModule___rarg(x_750); +x_752 = lean_ctor_get(x_751, 0); +lean_inc(x_752); +x_753 = lean_ctor_get(x_751, 1); +lean_inc(x_753); +if (lean_is_exclusive(x_751)) { + lean_ctor_release(x_751, 0); + lean_ctor_release(x_751, 1); + x_754 = x_751; +} else { + lean_dec_ref(x_751); + x_754 = lean_box(0); +} +x_755 = l___private_Lean_Elab_Match_17__collect___main___closed__6; +x_756 = l_Lean_addMacroScope(x_752, x_755, x_749); +x_757 = l_Lean_SourceInfo_inhabited___closed__1; +x_758 = l___private_Lean_Elab_Match_17__collect___main___closed__5; +x_759 = l___private_Lean_Elab_Match_17__collect___main___closed__8; +x_760 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_760, 0, x_757); +lean_ctor_set(x_760, 1, x_758); +lean_ctor_set(x_760, 2, x_756); +lean_ctor_set(x_760, 3, x_759); +x_761 = l_Array_empty___closed__1; +x_762 = lean_array_push(x_761, x_760); +x_763 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_764 = lean_array_push(x_762, x_763); +x_765 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_765, 0, x_698); +lean_ctor_set(x_765, 1, x_764); +x_766 = lean_array_push(x_761, x_765); +x_767 = l_Lean_mkTermIdFrom(x_1, x_735); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_768 = x_1; +} else { + lean_dec_ref(x_1); + x_768 = lean_box(0); +} +x_769 = lean_array_push(x_761, x_767); +x_770 = lean_array_push(x_769, x_745); +x_771 = l_Lean_nullKind___closed__2; +if (lean_is_scalar(x_768)) { + x_772 = lean_alloc_ctor(1, 2, 0); +} else { + x_772 = x_768; +} +lean_ctor_set(x_772, 0, x_771); +lean_ctor_set(x_772, 1, x_770); +x_773 = lean_array_push(x_766, x_772); +x_774 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_774, 0, x_7); +lean_ctor_set(x_774, 1, x_773); +if (lean_is_scalar(x_747)) { + x_775 = lean_alloc_ctor(0, 2, 0); +} else { + x_775 = x_747; +} +lean_ctor_set(x_775, 0, x_774); +lean_ctor_set(x_775, 1, x_746); +if (lean_is_scalar(x_754)) { + x_776 = lean_alloc_ctor(0, 2, 0); +} else { + x_776 = x_754; +} +lean_ctor_set(x_776, 0, x_775); +lean_ctor_set(x_776, 1, x_753); +return x_776; +} +else +{ +lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; +lean_dec(x_735); +lean_dec(x_689); +lean_dec(x_1); +x_777 = lean_ctor_get(x_742, 0); +lean_inc(x_777); +x_778 = lean_ctor_get(x_742, 1); +lean_inc(x_778); +if (lean_is_exclusive(x_742)) { + lean_ctor_release(x_742, 0); + lean_ctor_release(x_742, 1); + x_779 = x_742; +} else { + lean_dec_ref(x_742); + x_779 = lean_box(0); +} +if (lean_is_scalar(x_779)) { + x_780 = lean_alloc_ctor(1, 2, 0); +} else { + x_780 = x_779; +} +lean_ctor_set(x_780, 0, x_777); +lean_ctor_set(x_780, 1, x_778); +return x_780; +} +} +else +{ +lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; +lean_dec(x_736); +lean_dec(x_735); +lean_dec(x_689); +lean_dec(x_1); +x_781 = lean_ctor_get(x_738, 0); +lean_inc(x_781); +x_782 = lean_ctor_get(x_738, 1); +lean_inc(x_782); +if (lean_is_exclusive(x_738)) { + lean_ctor_release(x_738, 0); + lean_ctor_release(x_738, 1); + x_783 = x_738; +} else { + lean_dec_ref(x_738); + x_783 = lean_box(0); +} +if (lean_is_scalar(x_783)) { + x_784 = lean_alloc_ctor(1, 2, 0); +} else { + x_784 = x_783; +} +lean_ctor_set(x_784, 0, x_781); +lean_ctor_set(x_784, 1, x_782); +return x_784; +} +} +} +else +{ +uint8_t x_785; lean_object* x_786; +lean_dec(x_729); +x_785 = 1; +lean_inc(x_1); +x_786 = l___private_Lean_Elab_Match_13__processIdAux(x_1, x_785, x_2, x_689, x_4); +if (lean_obj_tag(x_786) == 0) +{ +lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; +x_787 = lean_ctor_get(x_786, 0); +lean_inc(x_787); +x_788 = lean_ctor_get(x_786, 1); +lean_inc(x_788); +if (lean_is_exclusive(x_786)) { + lean_ctor_release(x_786, 0); + lean_ctor_release(x_786, 1); + x_789 = x_786; +} else { + lean_dec_ref(x_786); + x_789 = lean_box(0); +} +x_790 = lean_ctor_get(x_787, 1); +lean_inc(x_790); +if (lean_is_exclusive(x_787)) { + lean_ctor_release(x_787, 0); + lean_ctor_release(x_787, 1); + x_791 = x_787; +} else { + lean_dec_ref(x_787); + x_791 = lean_box(0); +} +if (lean_is_scalar(x_791)) { + x_792 = lean_alloc_ctor(0, 2, 0); +} else { + x_792 = x_791; +} +lean_ctor_set(x_792, 0, x_1); +lean_ctor_set(x_792, 1, x_790); +if (lean_is_scalar(x_789)) { + x_793 = lean_alloc_ctor(0, 2, 0); +} else { + x_793 = x_789; +} +lean_ctor_set(x_793, 0, x_792); +lean_ctor_set(x_793, 1, x_788); +return x_793; +} +else +{ +lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; +lean_dec(x_1); +x_794 = lean_ctor_get(x_786, 0); +lean_inc(x_794); +x_795 = lean_ctor_get(x_786, 1); +lean_inc(x_795); +if (lean_is_exclusive(x_786)) { + lean_ctor_release(x_786, 0); + lean_ctor_release(x_786, 1); + x_796 = x_786; +} else { + lean_dec_ref(x_786); + x_796 = lean_box(0); +} +if (lean_is_scalar(x_796)) { + x_797 = lean_alloc_ctor(1, 2, 0); +} else { + x_797 = x_796; +} +lean_ctor_set(x_797, 0, x_794); +lean_ctor_set(x_797, 1, x_795); +return x_797; +} +} +} +else +{ +lean_object* x_798; +lean_dec(x_726); +lean_inc(x_1); +x_798 = l___private_Lean_Elab_Match_15__processId(x_1, x_2, x_689, x_4); +if (lean_obj_tag(x_798) == 0) +{ +lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; +x_799 = lean_ctor_get(x_798, 0); +lean_inc(x_799); +x_800 = lean_ctor_get(x_798, 1); +lean_inc(x_800); +if (lean_is_exclusive(x_798)) { + lean_ctor_release(x_798, 0); + lean_ctor_release(x_798, 1); + x_801 = x_798; +} else { + lean_dec_ref(x_798); + x_801 = lean_box(0); +} +x_802 = lean_ctor_get(x_799, 1); +lean_inc(x_802); +if (lean_is_exclusive(x_799)) { + lean_ctor_release(x_799, 0); + lean_ctor_release(x_799, 1); + x_803 = x_799; +} else { + lean_dec_ref(x_799); + x_803 = lean_box(0); +} +if (lean_is_scalar(x_803)) { + x_804 = lean_alloc_ctor(0, 2, 0); +} else { + x_804 = x_803; +} +lean_ctor_set(x_804, 0, x_1); +lean_ctor_set(x_804, 1, x_802); +if (lean_is_scalar(x_801)) { + x_805 = lean_alloc_ctor(0, 2, 0); +} else { + x_805 = x_801; +} +lean_ctor_set(x_805, 0, x_804); +lean_ctor_set(x_805, 1, x_800); +return x_805; +} +else +{ +lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; +lean_dec(x_1); +x_806 = lean_ctor_get(x_798, 0); +lean_inc(x_806); +x_807 = lean_ctor_get(x_798, 1); +lean_inc(x_807); +if (lean_is_exclusive(x_798)) { + lean_ctor_release(x_798, 0); + lean_ctor_release(x_798, 1); + x_808 = x_798; +} else { + lean_dec_ref(x_798); + x_808 = lean_box(0); +} +if (lean_is_scalar(x_808)) { + x_809 = lean_alloc_ctor(1, 2, 0); +} else { + x_809 = x_808; +} +lean_ctor_set(x_809, 0, x_806); +lean_ctor_set(x_809, 1, x_807); +return x_809; +} +} +} +} +else +{ +lean_object* x_810; lean_object* x_811; uint8_t x_812; +x_810 = l_Lean_Syntax_inhabited; +x_811 = lean_array_get(x_810, x_6, x_11); +x_812 = l_Lean_Syntax_isNone(x_811); +if (x_812 == 0) +{ +lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; uint8_t x_817; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_813 = x_1; +} else { + lean_dec_ref(x_1); + x_813 = lean_box(0); +} +x_814 = lean_unsigned_to_nat(0u); +x_815 = l_Lean_Syntax_getArg(x_811, x_814); +x_816 = l_Lean_Syntax_getArg(x_811, x_11); +x_817 = l_Lean_Syntax_isNone(x_816); +if (x_817 == 0) +{ +lean_object* x_818; lean_object* x_819; uint8_t x_820; +x_818 = l_Lean_Syntax_getArg(x_816, x_814); +x_819 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; +lean_inc(x_818); +x_820 = l_Lean_Syntax_isOfKind(x_818, x_819); +if (x_820 == 0) +{ +lean_object* x_821; +lean_inc(x_689); +x_821 = l___private_Lean_Elab_Match_17__collect___main(x_815, x_2, x_689, x_4); +if (lean_obj_tag(x_821) == 0) +{ +lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; +x_822 = lean_ctor_get(x_821, 0); +lean_inc(x_822); +x_823 = lean_ctor_get(x_821, 1); +lean_inc(x_823); +lean_dec(x_821); +x_824 = lean_ctor_get(x_822, 0); +lean_inc(x_824); +x_825 = lean_ctor_get(x_822, 1); +lean_inc(x_825); +lean_dec(x_822); +x_826 = l_Lean_Syntax_setArg(x_811, x_814, x_824); +x_827 = l_Lean_Syntax_getArg(x_818, x_11); +x_828 = l_Lean_Syntax_getArgs(x_827); +lean_dec(x_827); +x_829 = l___private_Lean_Elab_Match_17__collect___main___closed__9; +x_830 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_828, x_829, x_825, x_689, x_823); +lean_dec(x_828); +if (lean_obj_tag(x_830) == 0) +{ +lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; +x_831 = lean_ctor_get(x_830, 0); +lean_inc(x_831); +x_832 = lean_ctor_get(x_830, 1); +lean_inc(x_832); +if (lean_is_exclusive(x_830)) { + lean_ctor_release(x_830, 0); + lean_ctor_release(x_830, 1); + x_833 = x_830; +} else { + lean_dec_ref(x_830); + x_833 = lean_box(0); +} +x_834 = lean_ctor_get(x_831, 0); +lean_inc(x_834); +x_835 = lean_ctor_get(x_831, 1); +lean_inc(x_835); +if (lean_is_exclusive(x_831)) { + lean_ctor_release(x_831, 0); + lean_ctor_release(x_831, 1); + x_836 = x_831; +} else { + lean_dec_ref(x_831); + x_836 = lean_box(0); +} +x_837 = l_Lean_nullKind; +if (lean_is_scalar(x_813)) { + x_838 = lean_alloc_ctor(1, 2, 0); +} else { + x_838 = x_813; +} +lean_ctor_set(x_838, 0, x_837); +lean_ctor_set(x_838, 1, x_834); +x_839 = l_Lean_Syntax_setArg(x_818, x_11, x_838); +x_840 = l_Lean_Syntax_setArg(x_816, x_814, x_839); +x_841 = l_Lean_Syntax_setArg(x_826, x_11, x_840); +x_842 = lean_array_set(x_6, x_11, x_841); +x_843 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_843, 0, x_5); +lean_ctor_set(x_843, 1, x_842); +if (lean_is_scalar(x_836)) { + x_844 = lean_alloc_ctor(0, 2, 0); +} else { + x_844 = x_836; +} +lean_ctor_set(x_844, 0, x_843); +lean_ctor_set(x_844, 1, x_835); +if (lean_is_scalar(x_833)) { + x_845 = lean_alloc_ctor(0, 2, 0); +} else { + x_845 = x_833; +} +lean_ctor_set(x_845, 0, x_844); +lean_ctor_set(x_845, 1, x_832); +return x_845; +} +else +{ +lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; +lean_dec(x_826); +lean_dec(x_818); +lean_dec(x_816); +lean_dec(x_813); +lean_dec(x_6); +lean_dec(x_5); +x_846 = lean_ctor_get(x_830, 0); +lean_inc(x_846); +x_847 = lean_ctor_get(x_830, 1); +lean_inc(x_847); +if (lean_is_exclusive(x_830)) { + lean_ctor_release(x_830, 0); + lean_ctor_release(x_830, 1); + x_848 = x_830; +} else { + lean_dec_ref(x_830); + x_848 = lean_box(0); +} +if (lean_is_scalar(x_848)) { + x_849 = lean_alloc_ctor(1, 2, 0); +} else { + x_849 = x_848; +} +lean_ctor_set(x_849, 0, x_846); +lean_ctor_set(x_849, 1, x_847); +return x_849; +} +} +else +{ +lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; +lean_dec(x_818); +lean_dec(x_816); +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_689); +lean_dec(x_6); +lean_dec(x_5); +x_850 = lean_ctor_get(x_821, 0); +lean_inc(x_850); +x_851 = lean_ctor_get(x_821, 1); +lean_inc(x_851); +if (lean_is_exclusive(x_821)) { + lean_ctor_release(x_821, 0); + lean_ctor_release(x_821, 1); + x_852 = x_821; +} else { + lean_dec_ref(x_821); + x_852 = lean_box(0); +} +if (lean_is_scalar(x_852)) { + x_853 = lean_alloc_ctor(1, 2, 0); +} else { + x_853 = x_852; +} +lean_ctor_set(x_853, 0, x_850); +lean_ctor_set(x_853, 1, x_851); +return x_853; +} +} +else +{ +lean_object* x_854; +lean_dec(x_818); +lean_dec(x_816); +x_854 = l___private_Lean_Elab_Match_17__collect___main(x_815, x_2, x_689, x_4); +if (lean_obj_tag(x_854) == 0) +{ +lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; +x_855 = lean_ctor_get(x_854, 0); +lean_inc(x_855); +x_856 = lean_ctor_get(x_854, 1); +lean_inc(x_856); +if (lean_is_exclusive(x_854)) { + lean_ctor_release(x_854, 0); + lean_ctor_release(x_854, 1); + x_857 = x_854; +} else { + lean_dec_ref(x_854); + x_857 = lean_box(0); +} +x_858 = lean_ctor_get(x_855, 0); +lean_inc(x_858); +x_859 = lean_ctor_get(x_855, 1); +lean_inc(x_859); +if (lean_is_exclusive(x_855)) { + lean_ctor_release(x_855, 0); + lean_ctor_release(x_855, 1); + x_860 = x_855; +} else { + lean_dec_ref(x_855); + x_860 = lean_box(0); +} +x_861 = l_Lean_Syntax_setArg(x_811, x_814, x_858); +x_862 = lean_array_set(x_6, x_11, x_861); +if (lean_is_scalar(x_813)) { + x_863 = lean_alloc_ctor(1, 2, 0); +} else { + x_863 = x_813; +} +lean_ctor_set(x_863, 0, x_5); +lean_ctor_set(x_863, 1, x_862); +if (lean_is_scalar(x_860)) { + x_864 = lean_alloc_ctor(0, 2, 0); +} else { + x_864 = x_860; +} +lean_ctor_set(x_864, 0, x_863); +lean_ctor_set(x_864, 1, x_859); +if (lean_is_scalar(x_857)) { + x_865 = lean_alloc_ctor(0, 2, 0); +} else { + x_865 = x_857; +} +lean_ctor_set(x_865, 0, x_864); +lean_ctor_set(x_865, 1, x_856); +return x_865; +} +else +{ +lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_6); +lean_dec(x_5); +x_866 = lean_ctor_get(x_854, 0); +lean_inc(x_866); +x_867 = lean_ctor_get(x_854, 1); +lean_inc(x_867); +if (lean_is_exclusive(x_854)) { + lean_ctor_release(x_854, 0); + lean_ctor_release(x_854, 1); + x_868 = x_854; +} else { + lean_dec_ref(x_854); + x_868 = lean_box(0); +} +if (lean_is_scalar(x_868)) { + x_869 = lean_alloc_ctor(1, 2, 0); +} else { + x_869 = x_868; +} +lean_ctor_set(x_869, 0, x_866); +lean_ctor_set(x_869, 1, x_867); +return x_869; +} +} +} +else +{ +lean_object* x_870; +lean_dec(x_816); +x_870 = l___private_Lean_Elab_Match_17__collect___main(x_815, x_2, x_689, x_4); +if (lean_obj_tag(x_870) == 0) +{ +lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; +x_871 = lean_ctor_get(x_870, 0); +lean_inc(x_871); +x_872 = lean_ctor_get(x_870, 1); +lean_inc(x_872); +if (lean_is_exclusive(x_870)) { + lean_ctor_release(x_870, 0); + lean_ctor_release(x_870, 1); + x_873 = x_870; +} else { + lean_dec_ref(x_870); + x_873 = lean_box(0); +} +x_874 = lean_ctor_get(x_871, 0); +lean_inc(x_874); +x_875 = lean_ctor_get(x_871, 1); +lean_inc(x_875); +if (lean_is_exclusive(x_871)) { + lean_ctor_release(x_871, 0); + lean_ctor_release(x_871, 1); + x_876 = x_871; +} else { + lean_dec_ref(x_871); + x_876 = lean_box(0); +} +x_877 = l_Lean_Syntax_setArg(x_811, x_814, x_874); +x_878 = lean_array_set(x_6, x_11, x_877); +if (lean_is_scalar(x_813)) { + x_879 = lean_alloc_ctor(1, 2, 0); +} else { + x_879 = x_813; +} +lean_ctor_set(x_879, 0, x_5); +lean_ctor_set(x_879, 1, x_878); +if (lean_is_scalar(x_876)) { + x_880 = lean_alloc_ctor(0, 2, 0); +} else { + x_880 = x_876; +} +lean_ctor_set(x_880, 0, x_879); +lean_ctor_set(x_880, 1, x_875); +if (lean_is_scalar(x_873)) { + x_881 = lean_alloc_ctor(0, 2, 0); +} else { + x_881 = x_873; +} +lean_ctor_set(x_881, 0, x_880); +lean_ctor_set(x_881, 1, x_872); +return x_881; +} +else +{ +lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; +lean_dec(x_813); +lean_dec(x_811); +lean_dec(x_6); +lean_dec(x_5); +x_882 = lean_ctor_get(x_870, 0); +lean_inc(x_882); +x_883 = lean_ctor_get(x_870, 1); +lean_inc(x_883); +if (lean_is_exclusive(x_870)) { + lean_ctor_release(x_870, 0); + lean_ctor_release(x_870, 1); + x_884 = x_870; +} else { + lean_dec_ref(x_870); + x_884 = lean_box(0); +} +if (lean_is_scalar(x_884)) { + x_885 = lean_alloc_ctor(1, 2, 0); +} else { + x_885 = x_884; +} +lean_ctor_set(x_885, 0, x_882); +lean_ctor_set(x_885, 1, x_883); +return x_885; +} +} +} +else +{ +lean_object* x_886; lean_object* x_887; +lean_dec(x_811); +lean_dec(x_689); +lean_dec(x_6); +lean_dec(x_5); +x_886 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_886, 0, x_1); +lean_ctor_set(x_886, 1, x_2); +x_887 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_887, 0, x_886); +lean_ctor_set(x_887, 1, x_4); +return x_887; +} +} +} +else +{ +lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; +lean_dec(x_6); +lean_dec(x_5); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_888 = x_1; +} else { + lean_dec_ref(x_1); + x_888 = lean_box(0); +} +x_889 = l_Lean_Elab_Term_getCurrMacroScope(x_689, x_4); +lean_dec(x_689); +x_890 = lean_ctor_get(x_889, 0); +lean_inc(x_890); +x_891 = lean_ctor_get(x_889, 1); +lean_inc(x_891); +lean_dec(x_889); +x_892 = l_Lean_Elab_Term_getMainModule___rarg(x_891); +x_893 = lean_ctor_get(x_892, 0); +lean_inc(x_893); +x_894 = lean_ctor_get(x_892, 1); +lean_inc(x_894); +if (lean_is_exclusive(x_892)) { + lean_ctor_release(x_892, 0); + lean_ctor_release(x_892, 1); + x_895 = x_892; +} else { + lean_dec_ref(x_892); + x_895 = lean_box(0); +} +x_896 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_897 = l_Lean_addMacroScope(x_893, x_896, x_890); +x_898 = lean_box(0); +x_899 = l_Lean_SourceInfo_inhabited___closed__1; +x_900 = l___private_Lean_Elab_Match_17__collect___main___closed__13; +x_901 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_901, 0, x_899); +lean_ctor_set(x_901, 1, x_900); +lean_ctor_set(x_901, 2, x_897); +lean_ctor_set(x_901, 3, x_898); +x_902 = l___private_Lean_Elab_Match_17__collect___main___closed__11; +x_903 = lean_array_push(x_902, x_901); +x_904 = l_Lean_Parser_Term_namedHole___elambda__1___closed__2; +if (lean_is_scalar(x_888)) { + x_905 = lean_alloc_ctor(1, 2, 0); +} else { + x_905 = x_888; +} +lean_ctor_set(x_905, 0, x_904); +lean_ctor_set(x_905, 1, x_903); +x_906 = lean_ctor_get(x_2, 0); +lean_inc(x_906); +x_907 = lean_ctor_get(x_2, 1); +lean_inc(x_907); +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + lean_ctor_release(x_2, 1); + x_908 = x_2; +} else { + lean_dec_ref(x_2); + x_908 = lean_box(0); +} +x_909 = l_Lean_Syntax_getArg(x_905, x_11); +x_910 = l_Lean_Syntax_getId(x_909); +lean_dec(x_909); +x_911 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_911, 0, x_910); +x_912 = lean_array_push(x_907, x_911); +if (lean_is_scalar(x_908)) { + x_913 = lean_alloc_ctor(0, 2, 0); +} else { + x_913 = x_908; +} +lean_ctor_set(x_913, 0, x_906); +lean_ctor_set(x_913, 1, x_912); +x_914 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_914, 0, x_905); +lean_ctor_set(x_914, 1, x_913); +if (lean_is_scalar(x_895)) { + x_915 = lean_alloc_ctor(0, 2, 0); +} else { + x_915 = x_895; +} +lean_ctor_set(x_915, 0, x_914); +lean_ctor_set(x_915, 1, x_894); +return x_915; +} +} +else +{ +lean_object* x_916; lean_object* x_917; lean_object* x_918; uint8_t x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; uint8_t x_923; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_916 = x_1; +} else { + lean_dec_ref(x_1); + x_916 = lean_box(0); +} +x_917 = l_Lean_Syntax_inhabited; +x_918 = lean_array_get(x_917, x_6, x_11); +x_919 = l_Lean_Syntax_isNone(x_918); +x_920 = lean_unsigned_to_nat(2u); +x_921 = lean_array_get(x_917, x_6, x_920); +x_922 = l_Lean_Syntax_getArgs(x_921); +lean_dec(x_921); +if (x_919 == 0) +{ +uint8_t x_949; +x_949 = 0; +x_923 = x_949; +goto block_948; +} +else +{ +uint8_t x_950; +x_950 = 1; +x_923 = x_950; +goto block_948; +} +block_948: +{ +if (x_923 == 0) +{ +lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; +lean_dec(x_922); +lean_dec(x_916); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_924 = l___private_Lean_Elab_Match_17__collect___main___closed__16; +x_925 = l_Lean_Elab_Term_throwError___rarg(x_918, x_924, x_689, x_4); +lean_dec(x_918); +x_926 = lean_ctor_get(x_925, 0); +lean_inc(x_926); +x_927 = lean_ctor_get(x_925, 1); +lean_inc(x_927); +if (lean_is_exclusive(x_925)) { + lean_ctor_release(x_925, 0); + lean_ctor_release(x_925, 1); + x_928 = x_925; +} else { + lean_dec_ref(x_925); + x_928 = lean_box(0); +} +if (lean_is_scalar(x_928)) { + x_929 = lean_alloc_ctor(1, 2, 0); +} else { + x_929 = x_928; +} +lean_ctor_set(x_929, 0, x_926); +lean_ctor_set(x_929, 1, x_927); +return x_929; +} +else +{ +lean_object* x_930; lean_object* x_931; +lean_dec(x_918); +x_930 = l___private_Lean_Elab_Match_17__collect___main___closed__17; +x_931 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_922, x_930, x_2, x_689, x_4); +lean_dec(x_922); +if (lean_obj_tag(x_931) == 0) +{ +lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; +x_932 = lean_ctor_get(x_931, 0); +lean_inc(x_932); +x_933 = lean_ctor_get(x_931, 1); +lean_inc(x_933); +if (lean_is_exclusive(x_931)) { + lean_ctor_release(x_931, 0); + lean_ctor_release(x_931, 1); + x_934 = x_931; +} else { + lean_dec_ref(x_931); + x_934 = lean_box(0); +} +x_935 = lean_ctor_get(x_932, 0); +lean_inc(x_935); +x_936 = lean_ctor_get(x_932, 1); +lean_inc(x_936); +if (lean_is_exclusive(x_932)) { + lean_ctor_release(x_932, 0); + lean_ctor_release(x_932, 1); + x_937 = x_932; +} else { + lean_dec_ref(x_932); + x_937 = lean_box(0); +} +x_938 = l_Lean_nullKind; +if (lean_is_scalar(x_916)) { + x_939 = lean_alloc_ctor(1, 2, 0); +} else { + x_939 = x_916; +} +lean_ctor_set(x_939, 0, x_938); +lean_ctor_set(x_939, 1, x_935); +x_940 = lean_array_set(x_6, x_920, x_939); +x_941 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_941, 0, x_5); +lean_ctor_set(x_941, 1, x_940); +if (lean_is_scalar(x_937)) { + x_942 = lean_alloc_ctor(0, 2, 0); +} else { + x_942 = x_937; +} +lean_ctor_set(x_942, 0, x_941); +lean_ctor_set(x_942, 1, x_936); +if (lean_is_scalar(x_934)) { + x_943 = lean_alloc_ctor(0, 2, 0); +} else { + x_943 = x_934; +} +lean_ctor_set(x_943, 0, x_942); +lean_ctor_set(x_943, 1, x_933); +return x_943; +} +else +{ +lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; +lean_dec(x_916); +lean_dec(x_6); +lean_dec(x_5); +x_944 = lean_ctor_get(x_931, 0); +lean_inc(x_944); +x_945 = lean_ctor_get(x_931, 1); +lean_inc(x_945); +if (lean_is_exclusive(x_931)) { + lean_ctor_release(x_931, 0); + lean_ctor_release(x_931, 1); + x_946 = x_931; +} else { + lean_dec_ref(x_931); + x_946 = lean_box(0); +} +if (lean_is_scalar(x_946)) { + x_947 = lean_alloc_ctor(1, 2, 0); +} else { + x_947 = x_946; +} +lean_ctor_set(x_947, 0, x_944); +lean_ctor_set(x_947, 1, x_945); +return x_947; +} +} +} +} +} +else +{ +lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_951 = x_1; +} else { + lean_dec_ref(x_1); + x_951 = lean_box(0); +} +x_952 = l_Lean_Syntax_inhabited; +x_953 = lean_array_get(x_952, x_6, x_11); +x_954 = l_Lean_Syntax_getArgs(x_953); +lean_dec(x_953); +x_955 = l___private_Lean_Elab_Match_17__collect___main___closed__9; +x_956 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_954, x_955, x_2, x_689, x_4); +lean_dec(x_954); +if (lean_obj_tag(x_956) == 0) +{ +lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; +x_957 = lean_ctor_get(x_956, 0); +lean_inc(x_957); +x_958 = lean_ctor_get(x_956, 1); +lean_inc(x_958); +if (lean_is_exclusive(x_956)) { + lean_ctor_release(x_956, 0); + lean_ctor_release(x_956, 1); + x_959 = x_956; +} else { + lean_dec_ref(x_956); + x_959 = lean_box(0); +} +x_960 = lean_ctor_get(x_957, 0); +lean_inc(x_960); +x_961 = lean_ctor_get(x_957, 1); +lean_inc(x_961); +if (lean_is_exclusive(x_957)) { + lean_ctor_release(x_957, 0); + lean_ctor_release(x_957, 1); + x_962 = x_957; +} else { + lean_dec_ref(x_957); + x_962 = lean_box(0); +} +x_963 = l_Lean_nullKind; +if (lean_is_scalar(x_951)) { + x_964 = lean_alloc_ctor(1, 2, 0); +} else { + x_964 = x_951; +} +lean_ctor_set(x_964, 0, x_963); +lean_ctor_set(x_964, 1, x_960); +x_965 = lean_array_set(x_6, x_11, x_964); +x_966 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_966, 0, x_5); +lean_ctor_set(x_966, 1, x_965); +if (lean_is_scalar(x_962)) { + x_967 = lean_alloc_ctor(0, 2, 0); +} else { + x_967 = x_962; +} +lean_ctor_set(x_967, 0, x_966); +lean_ctor_set(x_967, 1, x_961); +if (lean_is_scalar(x_959)) { + x_968 = lean_alloc_ctor(0, 2, 0); +} else { + x_968 = x_959; +} +lean_ctor_set(x_968, 0, x_967); +lean_ctor_set(x_968, 1, x_958); +return x_968; +} +else +{ +lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; +lean_dec(x_951); +lean_dec(x_6); +lean_dec(x_5); +x_969 = lean_ctor_get(x_956, 0); +lean_inc(x_969); +x_970 = lean_ctor_get(x_956, 1); +lean_inc(x_970); +if (lean_is_exclusive(x_956)) { + lean_ctor_release(x_956, 0); + lean_ctor_release(x_956, 1); + x_971 = x_956; +} else { + lean_dec_ref(x_956); + x_971 = lean_box(0); +} +if (lean_is_scalar(x_971)) { + x_972 = lean_alloc_ctor(1, 2, 0); +} else { + x_972 = x_971; +} +lean_ctor_set(x_972, 0, x_969); +lean_ctor_set(x_972, 1, x_970); +return x_972; +} +} +} +else +{ +lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_973 = x_1; +} else { + lean_dec_ref(x_1); + x_973 = lean_box(0); +} +x_974 = l_Lean_Syntax_inhabited; +x_975 = lean_unsigned_to_nat(0u); +x_976 = lean_array_get(x_974, x_6, x_975); +x_977 = lean_array_get(x_974, x_6, x_11); +x_978 = l_Lean_Syntax_getArgs(x_977); +lean_dec(x_977); +x_979 = l_Lean_mkAppStx___closed__6; +lean_inc(x_689); +x_980 = l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3(x_979, x_978, x_975, x_2, x_689, x_4); +if (lean_obj_tag(x_980) == 0) +{ +lean_object* x_981; lean_object* x_982; lean_object* x_983; uint8_t x_984; lean_object* x_985; +x_981 = lean_ctor_get(x_980, 0); +lean_inc(x_981); +x_982 = lean_ctor_get(x_980, 1); +lean_inc(x_982); +lean_dec(x_980); +x_983 = lean_ctor_get(x_981, 1); +lean_inc(x_983); +lean_dec(x_981); +x_984 = 1; +lean_inc(x_689); +x_985 = l___private_Lean_Elab_Match_13__processIdAux(x_976, x_984, x_983, x_689, x_982); +if (lean_obj_tag(x_985) == 0) +{ +lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; +x_986 = lean_ctor_get(x_985, 0); +lean_inc(x_986); +x_987 = lean_ctor_get(x_985, 1); +lean_inc(x_987); +lean_dec(x_985); +x_988 = lean_ctor_get(x_986, 0); +lean_inc(x_988); +x_989 = lean_ctor_get(x_986, 1); +lean_inc(x_989); +lean_dec(x_986); +x_990 = x_978; +x_991 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__4___boxed), 6, 3); +lean_closure_set(x_991, 0, x_988); +lean_closure_set(x_991, 1, x_975); +lean_closure_set(x_991, 2, x_990); +x_992 = x_991; +x_993 = lean_apply_3(x_992, x_989, x_689, x_987); +if (lean_obj_tag(x_993) == 0) +{ +lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; +x_994 = lean_ctor_get(x_993, 0); +lean_inc(x_994); +x_995 = lean_ctor_get(x_993, 1); +lean_inc(x_995); +if (lean_is_exclusive(x_993)) { + lean_ctor_release(x_993, 0); + lean_ctor_release(x_993, 1); + x_996 = x_993; +} else { + lean_dec_ref(x_993); + x_996 = lean_box(0); +} +x_997 = lean_ctor_get(x_994, 0); +lean_inc(x_997); +x_998 = lean_ctor_get(x_994, 1); +lean_inc(x_998); +if (lean_is_exclusive(x_994)) { + lean_ctor_release(x_994, 0); + lean_ctor_release(x_994, 1); + x_999 = x_994; +} else { + lean_dec_ref(x_994); + x_999 = lean_box(0); +} +x_1000 = l_Lean_nullKind; +if (lean_is_scalar(x_973)) { + x_1001 = lean_alloc_ctor(1, 2, 0); +} else { + x_1001 = x_973; +} +lean_ctor_set(x_1001, 0, x_1000); +lean_ctor_set(x_1001, 1, x_997); +x_1002 = lean_array_set(x_6, x_11, x_1001); +x_1003 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1003, 0, x_5); +lean_ctor_set(x_1003, 1, x_1002); +if (lean_is_scalar(x_999)) { + x_1004 = lean_alloc_ctor(0, 2, 0); +} else { + x_1004 = x_999; +} +lean_ctor_set(x_1004, 0, x_1003); +lean_ctor_set(x_1004, 1, x_998); +if (lean_is_scalar(x_996)) { + x_1005 = lean_alloc_ctor(0, 2, 0); +} else { + x_1005 = x_996; +} +lean_ctor_set(x_1005, 0, x_1004); +lean_ctor_set(x_1005, 1, x_995); +return x_1005; +} +else +{ +lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; +lean_dec(x_973); +lean_dec(x_6); +lean_dec(x_5); +x_1006 = lean_ctor_get(x_993, 0); +lean_inc(x_1006); +x_1007 = lean_ctor_get(x_993, 1); +lean_inc(x_1007); +if (lean_is_exclusive(x_993)) { + lean_ctor_release(x_993, 0); + lean_ctor_release(x_993, 1); + x_1008 = x_993; +} else { + lean_dec_ref(x_993); + x_1008 = lean_box(0); +} +if (lean_is_scalar(x_1008)) { + x_1009 = lean_alloc_ctor(1, 2, 0); +} else { + x_1009 = x_1008; +} +lean_ctor_set(x_1009, 0, x_1006); +lean_ctor_set(x_1009, 1, x_1007); +return x_1009; +} +} +else +{ +lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; +lean_dec(x_978); +lean_dec(x_973); +lean_dec(x_689); +lean_dec(x_6); +lean_dec(x_5); +x_1010 = lean_ctor_get(x_985, 0); +lean_inc(x_1010); +x_1011 = lean_ctor_get(x_985, 1); +lean_inc(x_1011); +if (lean_is_exclusive(x_985)) { + lean_ctor_release(x_985, 0); + lean_ctor_release(x_985, 1); + x_1012 = x_985; +} else { + lean_dec_ref(x_985); + x_1012 = lean_box(0); +} +if (lean_is_scalar(x_1012)) { + x_1013 = lean_alloc_ctor(1, 2, 0); +} else { + x_1013 = x_1012; +} +lean_ctor_set(x_1013, 0, x_1010); +lean_ctor_set(x_1013, 1, x_1011); +return x_1013; +} +} +else +{ +lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; +lean_dec(x_978); +lean_dec(x_976); +lean_dec(x_973); +lean_dec(x_689); +lean_dec(x_6); +lean_dec(x_5); +x_1014 = lean_ctor_get(x_980, 0); +lean_inc(x_1014); +x_1015 = lean_ctor_get(x_980, 1); +lean_inc(x_1015); +if (lean_is_exclusive(x_980)) { + lean_ctor_release(x_980, 0); + lean_ctor_release(x_980, 1); + x_1016 = x_980; +} else { + lean_dec_ref(x_980); + x_1016 = lean_box(0); +} +if (lean_is_scalar(x_1016)) { + x_1017 = lean_alloc_ctor(1, 2, 0); +} else { + x_1017 = x_1016; +} +lean_ctor_set(x_1017, 0, x_1014); +lean_ctor_set(x_1017, 1, x_1015); +return x_1017; +} +} +} +} +else +{ +lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; uint8_t x_1036; uint8_t x_1037; uint8_t x_1038; lean_object* x_1039; lean_object* x_1040; +x_1018 = lean_ctor_get(x_4, 0); +x_1019 = lean_ctor_get(x_4, 1); +x_1020 = lean_ctor_get(x_4, 2); +x_1021 = lean_ctor_get(x_4, 3); +x_1022 = lean_ctor_get(x_4, 4); +x_1023 = lean_ctor_get(x_4, 5); +lean_inc(x_1023); +lean_inc(x_1022); +lean_inc(x_1021); +lean_inc(x_1020); +lean_inc(x_1019); +lean_inc(x_1018); +lean_dec(x_4); +x_1024 = lean_unsigned_to_nat(1u); +x_1025 = lean_nat_add(x_1023, x_1024); +x_1026 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1026, 0, x_1018); +lean_ctor_set(x_1026, 1, x_1019); +lean_ctor_set(x_1026, 2, x_1020); +lean_ctor_set(x_1026, 3, x_1021); +lean_ctor_set(x_1026, 4, x_1022); +lean_ctor_set(x_1026, 5, x_1025); +x_1027 = lean_ctor_get(x_3, 0); +lean_inc(x_1027); +x_1028 = lean_ctor_get(x_3, 1); +lean_inc(x_1028); +x_1029 = lean_ctor_get(x_3, 2); +lean_inc(x_1029); +x_1030 = lean_ctor_get(x_3, 3); +lean_inc(x_1030); +x_1031 = lean_ctor_get(x_3, 4); +lean_inc(x_1031); +x_1032 = lean_ctor_get(x_3, 5); +lean_inc(x_1032); +x_1033 = lean_ctor_get(x_3, 6); +lean_inc(x_1033); +x_1034 = lean_ctor_get(x_3, 7); +lean_inc(x_1034); +x_1035 = lean_ctor_get(x_3, 8); +lean_inc(x_1035); +x_1036 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +x_1037 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 1); +x_1038 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 2); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + lean_ctor_release(x_3, 2); + lean_ctor_release(x_3, 3); + lean_ctor_release(x_3, 4); + lean_ctor_release(x_3, 5); + lean_ctor_release(x_3, 6); + lean_ctor_release(x_3, 7); + lean_ctor_release(x_3, 8); + lean_ctor_release(x_3, 9); + x_1039 = x_3; +} else { + lean_dec_ref(x_3); + x_1039 = lean_box(0); +} +if (lean_is_scalar(x_1039)) { + x_1040 = lean_alloc_ctor(0, 10, 3); +} else { + x_1040 = x_1039; +} +lean_ctor_set(x_1040, 0, x_1027); +lean_ctor_set(x_1040, 1, x_1028); +lean_ctor_set(x_1040, 2, x_1029); +lean_ctor_set(x_1040, 3, x_1030); +lean_ctor_set(x_1040, 4, x_1031); +lean_ctor_set(x_1040, 5, x_1032); +lean_ctor_set(x_1040, 6, x_1033); +lean_ctor_set(x_1040, 7, x_1034); +lean_ctor_set(x_1040, 8, x_1035); +lean_ctor_set(x_1040, 9, x_1023); +lean_ctor_set_uint8(x_1040, sizeof(void*)*10, x_1036); +lean_ctor_set_uint8(x_1040, sizeof(void*)*10 + 1, x_1037); +lean_ctor_set_uint8(x_1040, sizeof(void*)*10 + 2, x_1038); +if (x_8 == 0) +{ +lean_object* x_1041; uint8_t x_1042; +x_1041 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; +x_1042 = lean_name_eq(x_5, x_1041); +if (x_1042 == 0) +{ +lean_object* x_1043; uint8_t x_1044; +x_1043 = l_Lean_Parser_Term_structInst___elambda__1___closed__2; +x_1044 = lean_name_eq(x_5, x_1043); +if (x_1044 == 0) +{ +lean_object* x_1045; uint8_t x_1046; +x_1045 = l_Lean_mkHole___closed__2; +x_1046 = lean_name_eq(x_5, x_1045); +if (x_1046 == 0) +{ +lean_object* x_1047; uint8_t x_1048; +x_1047 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__2; +x_1048 = lean_name_eq(x_5, x_1047); +if (x_1048 == 0) +{ +lean_object* x_1049; uint8_t x_1050; +x_1049 = l_Lean_mkTermIdFromIdent___closed__2; +x_1050 = lean_name_eq(x_5, x_1049); +if (x_1050 == 0) +{ +lean_object* x_1051; uint8_t x_1052; +lean_dec(x_6); +x_1051 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; +x_1052 = lean_name_eq(x_5, x_1051); +if (x_1052 == 0) +{ +lean_object* x_1053; uint8_t x_1054; +x_1053 = l_Lean_String_HasQuote___closed__2; +x_1054 = lean_name_eq(x_5, x_1053); +if (x_1054 == 0) +{ +lean_object* x_1055; uint8_t x_1056; +x_1055 = l_Lean_Nat_HasQuote___closed__2; +x_1056 = lean_name_eq(x_5, x_1055); +if (x_1056 == 0) +{ +lean_object* x_1057; uint8_t x_1058; +x_1057 = l_Lean_Parser_Term_char___elambda__1___closed__2; +x_1058 = lean_name_eq(x_5, x_1057); +if (x_1058 == 0) +{ +lean_object* x_1059; uint8_t x_1060; +x_1059 = l_Lean_choiceKind; +x_1060 = lean_name_eq(x_5, x_1059); +lean_dec(x_5); +if (x_1060 == 0) +{ +lean_object* x_1061; +x_1061 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(x_1, x_2, x_1040, x_1026); +lean_dec(x_2); +lean_dec(x_1); +return x_1061; +} +else +{ +lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; +lean_dec(x_2); +x_1062 = l___private_Lean_Elab_Match_17__collect___main___closed__3; +x_1063 = l_Lean_Elab_Term_throwError___rarg(x_1, x_1062, x_1040, x_1026); +lean_dec(x_1); +x_1064 = lean_ctor_get(x_1063, 0); +lean_inc(x_1064); +x_1065 = lean_ctor_get(x_1063, 1); +lean_inc(x_1065); +if (lean_is_exclusive(x_1063)) { + lean_ctor_release(x_1063, 0); + lean_ctor_release(x_1063, 1); + x_1066 = x_1063; +} else { + lean_dec_ref(x_1063); + x_1066 = lean_box(0); +} +if (lean_is_scalar(x_1066)) { + x_1067 = lean_alloc_ctor(1, 2, 0); +} else { + x_1067 = x_1066; +} +lean_ctor_set(x_1067, 0, x_1064); +lean_ctor_set(x_1067, 1, x_1065); +return x_1067; +} +} +else +{ +lean_object* x_1068; lean_object* x_1069; +lean_dec(x_1040); +lean_dec(x_5); +x_1068 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1068, 0, x_1); +lean_ctor_set(x_1068, 1, x_2); +x_1069 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1069, 0, x_1068); +lean_ctor_set(x_1069, 1, x_1026); +return x_1069; +} +} +else +{ +lean_object* x_1070; lean_object* x_1071; +lean_dec(x_1040); +lean_dec(x_5); +x_1070 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1070, 0, x_1); +lean_ctor_set(x_1070, 1, x_2); +x_1071 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1071, 0, x_1070); +lean_ctor_set(x_1071, 1, x_1026); +return x_1071; +} +} +else +{ +lean_object* x_1072; lean_object* x_1073; +lean_dec(x_1040); +lean_dec(x_5); +x_1072 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1072, 0, x_1); +lean_ctor_set(x_1072, 1, x_2); +x_1073 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1073, 0, x_1072); +lean_ctor_set(x_1073, 1, x_1026); +return x_1073; +} +} +else +{ +lean_object* x_1074; lean_object* x_1075; +lean_dec(x_1040); +lean_dec(x_5); +x_1074 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1074, 0, x_1); +lean_ctor_set(x_1074, 1, x_2); +x_1075 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1075, 0, x_1074); +lean_ctor_set(x_1075, 1, x_1026); +return x_1075; +} +} +else +{ +lean_object* x_1076; lean_object* x_1077; uint8_t x_1078; +lean_dec(x_5); +x_1076 = l_Lean_Syntax_inhabited; +x_1077 = lean_array_get(x_1076, x_6, x_1024); +lean_dec(x_6); +x_1078 = l_Lean_Syntax_isNone(x_1077); +if (x_1078 == 0) +{ +lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; uint8_t x_1082; +x_1079 = lean_unsigned_to_nat(0u); +x_1080 = l_Lean_Syntax_getArg(x_1077, x_1079); +lean_dec(x_1077); +x_1081 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +lean_inc(x_1080); +x_1082 = l_Lean_Syntax_isOfKind(x_1080, x_1081); +if (x_1082 == 0) +{ +lean_object* x_1083; uint8_t x_1084; +x_1083 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +lean_inc(x_1080); +x_1084 = l_Lean_Syntax_isOfKind(x_1080, x_1083); +if (x_1084 == 0) +{ +lean_object* x_1085; +lean_dec(x_1080); +x_1085 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(x_1, x_2, x_1040, x_1026); +lean_dec(x_2); +lean_dec(x_1); +return x_1085; +} +else +{ +lean_object* x_1086; lean_object* x_1087; uint8_t x_1088; lean_object* x_1089; +x_1086 = l_Lean_Syntax_getIdOfTermId(x_1); +x_1087 = l_Lean_Syntax_getArg(x_1080, x_1024); +lean_dec(x_1080); +x_1088 = 0; +lean_inc(x_1040); +lean_inc(x_1086); +x_1089 = l___private_Lean_Elab_Match_12__processVar(x_1, x_1086, x_1088, x_2, x_1040, x_1026); +if (lean_obj_tag(x_1089) == 0) +{ +lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; +x_1090 = lean_ctor_get(x_1089, 0); +lean_inc(x_1090); +x_1091 = lean_ctor_get(x_1089, 1); +lean_inc(x_1091); +lean_dec(x_1089); +x_1092 = lean_ctor_get(x_1090, 1); +lean_inc(x_1092); +lean_dec(x_1090); +lean_inc(x_1040); +x_1093 = l___private_Lean_Elab_Match_17__collect___main(x_1087, x_1092, x_1040, x_1091); +if (lean_obj_tag(x_1093) == 0) +{ +lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; +x_1094 = lean_ctor_get(x_1093, 0); +lean_inc(x_1094); +x_1095 = lean_ctor_get(x_1093, 1); +lean_inc(x_1095); +lean_dec(x_1093); +x_1096 = lean_ctor_get(x_1094, 0); +lean_inc(x_1096); +x_1097 = lean_ctor_get(x_1094, 1); +lean_inc(x_1097); +if (lean_is_exclusive(x_1094)) { + lean_ctor_release(x_1094, 0); + lean_ctor_release(x_1094, 1); + x_1098 = x_1094; +} else { + lean_dec_ref(x_1094); + x_1098 = lean_box(0); +} +x_1099 = l_Lean_Elab_Term_getCurrMacroScope(x_1040, x_1095); +lean_dec(x_1040); +x_1100 = lean_ctor_get(x_1099, 0); +lean_inc(x_1100); +x_1101 = lean_ctor_get(x_1099, 1); +lean_inc(x_1101); +lean_dec(x_1099); +x_1102 = l_Lean_Elab_Term_getMainModule___rarg(x_1101); +x_1103 = lean_ctor_get(x_1102, 0); +lean_inc(x_1103); +x_1104 = lean_ctor_get(x_1102, 1); +lean_inc(x_1104); +if (lean_is_exclusive(x_1102)) { + lean_ctor_release(x_1102, 0); + lean_ctor_release(x_1102, 1); + x_1105 = x_1102; +} else { + lean_dec_ref(x_1102); + x_1105 = lean_box(0); +} +x_1106 = l___private_Lean_Elab_Match_17__collect___main___closed__6; +x_1107 = l_Lean_addMacroScope(x_1103, x_1106, x_1100); +x_1108 = l_Lean_SourceInfo_inhabited___closed__1; +x_1109 = l___private_Lean_Elab_Match_17__collect___main___closed__5; +x_1110 = l___private_Lean_Elab_Match_17__collect___main___closed__8; +x_1111 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1111, 0, x_1108); +lean_ctor_set(x_1111, 1, x_1109); +lean_ctor_set(x_1111, 2, x_1107); +lean_ctor_set(x_1111, 3, x_1110); +x_1112 = l_Array_empty___closed__1; +x_1113 = lean_array_push(x_1112, x_1111); +x_1114 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_1115 = lean_array_push(x_1113, x_1114); +x_1116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1116, 0, x_1049); +lean_ctor_set(x_1116, 1, x_1115); +x_1117 = lean_array_push(x_1112, x_1116); +x_1118 = l_Lean_mkTermIdFrom(x_1, x_1086); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_1119 = x_1; +} else { + lean_dec_ref(x_1); + x_1119 = lean_box(0); +} +x_1120 = lean_array_push(x_1112, x_1118); +x_1121 = lean_array_push(x_1120, x_1096); +x_1122 = l_Lean_nullKind___closed__2; +if (lean_is_scalar(x_1119)) { + x_1123 = lean_alloc_ctor(1, 2, 0); +} else { + x_1123 = x_1119; +} +lean_ctor_set(x_1123, 0, x_1122); +lean_ctor_set(x_1123, 1, x_1121); +x_1124 = lean_array_push(x_1117, x_1123); +x_1125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1125, 0, x_7); +lean_ctor_set(x_1125, 1, x_1124); +if (lean_is_scalar(x_1098)) { + x_1126 = lean_alloc_ctor(0, 2, 0); +} else { + x_1126 = x_1098; +} +lean_ctor_set(x_1126, 0, x_1125); +lean_ctor_set(x_1126, 1, x_1097); +if (lean_is_scalar(x_1105)) { + x_1127 = lean_alloc_ctor(0, 2, 0); +} else { + x_1127 = x_1105; +} +lean_ctor_set(x_1127, 0, x_1126); +lean_ctor_set(x_1127, 1, x_1104); +return x_1127; +} +else +{ +lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; +lean_dec(x_1086); +lean_dec(x_1040); +lean_dec(x_1); +x_1128 = lean_ctor_get(x_1093, 0); +lean_inc(x_1128); +x_1129 = lean_ctor_get(x_1093, 1); +lean_inc(x_1129); +if (lean_is_exclusive(x_1093)) { + lean_ctor_release(x_1093, 0); + lean_ctor_release(x_1093, 1); + x_1130 = x_1093; +} else { + lean_dec_ref(x_1093); + x_1130 = lean_box(0); +} +if (lean_is_scalar(x_1130)) { + x_1131 = lean_alloc_ctor(1, 2, 0); +} else { + x_1131 = x_1130; +} +lean_ctor_set(x_1131, 0, x_1128); +lean_ctor_set(x_1131, 1, x_1129); +return x_1131; +} +} +else +{ +lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; +lean_dec(x_1087); +lean_dec(x_1086); +lean_dec(x_1040); +lean_dec(x_1); +x_1132 = lean_ctor_get(x_1089, 0); +lean_inc(x_1132); +x_1133 = lean_ctor_get(x_1089, 1); +lean_inc(x_1133); +if (lean_is_exclusive(x_1089)) { + lean_ctor_release(x_1089, 0); + lean_ctor_release(x_1089, 1); + x_1134 = x_1089; +} else { + lean_dec_ref(x_1089); + x_1134 = lean_box(0); +} +if (lean_is_scalar(x_1134)) { + x_1135 = lean_alloc_ctor(1, 2, 0); +} else { + x_1135 = x_1134; +} +lean_ctor_set(x_1135, 0, x_1132); +lean_ctor_set(x_1135, 1, x_1133); +return x_1135; +} +} +} +else +{ +uint8_t x_1136; lean_object* x_1137; +lean_dec(x_1080); +x_1136 = 1; +lean_inc(x_1); +x_1137 = l___private_Lean_Elab_Match_13__processIdAux(x_1, x_1136, x_2, x_1040, x_1026); +if (lean_obj_tag(x_1137) == 0) +{ +lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; +x_1138 = lean_ctor_get(x_1137, 0); +lean_inc(x_1138); +x_1139 = lean_ctor_get(x_1137, 1); +lean_inc(x_1139); +if (lean_is_exclusive(x_1137)) { + lean_ctor_release(x_1137, 0); + lean_ctor_release(x_1137, 1); + x_1140 = x_1137; +} else { + lean_dec_ref(x_1137); + x_1140 = lean_box(0); +} +x_1141 = lean_ctor_get(x_1138, 1); +lean_inc(x_1141); +if (lean_is_exclusive(x_1138)) { + lean_ctor_release(x_1138, 0); + lean_ctor_release(x_1138, 1); + x_1142 = x_1138; +} else { + lean_dec_ref(x_1138); + x_1142 = lean_box(0); +} +if (lean_is_scalar(x_1142)) { + x_1143 = lean_alloc_ctor(0, 2, 0); +} else { + x_1143 = x_1142; +} +lean_ctor_set(x_1143, 0, x_1); +lean_ctor_set(x_1143, 1, x_1141); +if (lean_is_scalar(x_1140)) { + x_1144 = lean_alloc_ctor(0, 2, 0); +} else { + x_1144 = x_1140; +} +lean_ctor_set(x_1144, 0, x_1143); +lean_ctor_set(x_1144, 1, x_1139); +return x_1144; +} +else +{ +lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; +lean_dec(x_1); +x_1145 = lean_ctor_get(x_1137, 0); +lean_inc(x_1145); +x_1146 = lean_ctor_get(x_1137, 1); +lean_inc(x_1146); +if (lean_is_exclusive(x_1137)) { + lean_ctor_release(x_1137, 0); + lean_ctor_release(x_1137, 1); + x_1147 = x_1137; +} else { + lean_dec_ref(x_1137); + x_1147 = lean_box(0); +} +if (lean_is_scalar(x_1147)) { + x_1148 = lean_alloc_ctor(1, 2, 0); +} else { + x_1148 = x_1147; +} +lean_ctor_set(x_1148, 0, x_1145); +lean_ctor_set(x_1148, 1, x_1146); +return x_1148; +} +} +} +else +{ +lean_object* x_1149; +lean_dec(x_1077); +lean_inc(x_1); +x_1149 = l___private_Lean_Elab_Match_15__processId(x_1, x_2, x_1040, x_1026); +if (lean_obj_tag(x_1149) == 0) +{ +lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; +x_1150 = lean_ctor_get(x_1149, 0); +lean_inc(x_1150); +x_1151 = lean_ctor_get(x_1149, 1); +lean_inc(x_1151); +if (lean_is_exclusive(x_1149)) { + lean_ctor_release(x_1149, 0); + lean_ctor_release(x_1149, 1); + x_1152 = x_1149; +} else { + lean_dec_ref(x_1149); + x_1152 = lean_box(0); +} +x_1153 = lean_ctor_get(x_1150, 1); +lean_inc(x_1153); +if (lean_is_exclusive(x_1150)) { + lean_ctor_release(x_1150, 0); + lean_ctor_release(x_1150, 1); + x_1154 = x_1150; +} else { + lean_dec_ref(x_1150); + x_1154 = lean_box(0); +} +if (lean_is_scalar(x_1154)) { + x_1155 = lean_alloc_ctor(0, 2, 0); +} else { + x_1155 = x_1154; +} +lean_ctor_set(x_1155, 0, x_1); +lean_ctor_set(x_1155, 1, x_1153); +if (lean_is_scalar(x_1152)) { + x_1156 = lean_alloc_ctor(0, 2, 0); +} else { + x_1156 = x_1152; +} +lean_ctor_set(x_1156, 0, x_1155); +lean_ctor_set(x_1156, 1, x_1151); +return x_1156; +} +else +{ +lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; +lean_dec(x_1); +x_1157 = lean_ctor_get(x_1149, 0); +lean_inc(x_1157); +x_1158 = lean_ctor_get(x_1149, 1); +lean_inc(x_1158); +if (lean_is_exclusive(x_1149)) { + lean_ctor_release(x_1149, 0); + lean_ctor_release(x_1149, 1); + x_1159 = x_1149; +} else { + lean_dec_ref(x_1149); + x_1159 = lean_box(0); +} +if (lean_is_scalar(x_1159)) { + x_1160 = lean_alloc_ctor(1, 2, 0); +} else { + x_1160 = x_1159; +} +lean_ctor_set(x_1160, 0, x_1157); +lean_ctor_set(x_1160, 1, x_1158); +return x_1160; +} +} +} +} +else +{ +lean_object* x_1161; lean_object* x_1162; uint8_t x_1163; +x_1161 = l_Lean_Syntax_inhabited; +x_1162 = lean_array_get(x_1161, x_6, x_1024); +x_1163 = l_Lean_Syntax_isNone(x_1162); +if (x_1163 == 0) +{ +lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; uint8_t x_1168; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_1164 = x_1; +} else { + lean_dec_ref(x_1); + x_1164 = lean_box(0); +} +x_1165 = lean_unsigned_to_nat(0u); +x_1166 = l_Lean_Syntax_getArg(x_1162, x_1165); +x_1167 = l_Lean_Syntax_getArg(x_1162, x_1024); +x_1168 = l_Lean_Syntax_isNone(x_1167); +if (x_1168 == 0) +{ +lean_object* x_1169; lean_object* x_1170; uint8_t x_1171; +x_1169 = l_Lean_Syntax_getArg(x_1167, x_1165); +x_1170 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; +lean_inc(x_1169); +x_1171 = l_Lean_Syntax_isOfKind(x_1169, x_1170); +if (x_1171 == 0) +{ +lean_object* x_1172; +lean_inc(x_1040); +x_1172 = l___private_Lean_Elab_Match_17__collect___main(x_1166, x_2, x_1040, x_1026); +if (lean_obj_tag(x_1172) == 0) +{ +lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; +x_1173 = lean_ctor_get(x_1172, 0); +lean_inc(x_1173); +x_1174 = lean_ctor_get(x_1172, 1); +lean_inc(x_1174); +lean_dec(x_1172); +x_1175 = lean_ctor_get(x_1173, 0); +lean_inc(x_1175); +x_1176 = lean_ctor_get(x_1173, 1); +lean_inc(x_1176); +lean_dec(x_1173); +x_1177 = l_Lean_Syntax_setArg(x_1162, x_1165, x_1175); +x_1178 = l_Lean_Syntax_getArg(x_1169, x_1024); +x_1179 = l_Lean_Syntax_getArgs(x_1178); +lean_dec(x_1178); +x_1180 = l___private_Lean_Elab_Match_17__collect___main___closed__9; +x_1181 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_1179, x_1180, x_1176, x_1040, x_1174); +lean_dec(x_1179); +if (lean_obj_tag(x_1181) == 0) +{ +lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; +x_1182 = lean_ctor_get(x_1181, 0); +lean_inc(x_1182); +x_1183 = lean_ctor_get(x_1181, 1); +lean_inc(x_1183); +if (lean_is_exclusive(x_1181)) { + lean_ctor_release(x_1181, 0); + lean_ctor_release(x_1181, 1); + x_1184 = x_1181; +} else { + lean_dec_ref(x_1181); + x_1184 = lean_box(0); +} +x_1185 = lean_ctor_get(x_1182, 0); +lean_inc(x_1185); +x_1186 = lean_ctor_get(x_1182, 1); +lean_inc(x_1186); +if (lean_is_exclusive(x_1182)) { + lean_ctor_release(x_1182, 0); + lean_ctor_release(x_1182, 1); + x_1187 = x_1182; +} else { + lean_dec_ref(x_1182); + x_1187 = lean_box(0); +} +x_1188 = l_Lean_nullKind; +if (lean_is_scalar(x_1164)) { + x_1189 = lean_alloc_ctor(1, 2, 0); +} else { + x_1189 = x_1164; +} +lean_ctor_set(x_1189, 0, x_1188); +lean_ctor_set(x_1189, 1, x_1185); +x_1190 = l_Lean_Syntax_setArg(x_1169, x_1024, x_1189); +x_1191 = l_Lean_Syntax_setArg(x_1167, x_1165, x_1190); +x_1192 = l_Lean_Syntax_setArg(x_1177, x_1024, x_1191); +x_1193 = lean_array_set(x_6, x_1024, x_1192); +x_1194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1194, 0, x_5); +lean_ctor_set(x_1194, 1, x_1193); +if (lean_is_scalar(x_1187)) { + x_1195 = lean_alloc_ctor(0, 2, 0); +} else { + x_1195 = x_1187; +} +lean_ctor_set(x_1195, 0, x_1194); +lean_ctor_set(x_1195, 1, x_1186); +if (lean_is_scalar(x_1184)) { + x_1196 = lean_alloc_ctor(0, 2, 0); +} else { + x_1196 = x_1184; +} +lean_ctor_set(x_1196, 0, x_1195); +lean_ctor_set(x_1196, 1, x_1183); +return x_1196; +} +else +{ +lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; +lean_dec(x_1177); +lean_dec(x_1169); +lean_dec(x_1167); +lean_dec(x_1164); +lean_dec(x_6); +lean_dec(x_5); +x_1197 = lean_ctor_get(x_1181, 0); +lean_inc(x_1197); +x_1198 = lean_ctor_get(x_1181, 1); +lean_inc(x_1198); +if (lean_is_exclusive(x_1181)) { + lean_ctor_release(x_1181, 0); + lean_ctor_release(x_1181, 1); + x_1199 = x_1181; +} else { + lean_dec_ref(x_1181); + x_1199 = lean_box(0); +} +if (lean_is_scalar(x_1199)) { + x_1200 = lean_alloc_ctor(1, 2, 0); +} else { + x_1200 = x_1199; +} +lean_ctor_set(x_1200, 0, x_1197); +lean_ctor_set(x_1200, 1, x_1198); +return x_1200; +} +} +else +{ +lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; +lean_dec(x_1169); +lean_dec(x_1167); +lean_dec(x_1164); +lean_dec(x_1162); +lean_dec(x_1040); +lean_dec(x_6); +lean_dec(x_5); +x_1201 = lean_ctor_get(x_1172, 0); +lean_inc(x_1201); +x_1202 = lean_ctor_get(x_1172, 1); +lean_inc(x_1202); +if (lean_is_exclusive(x_1172)) { + lean_ctor_release(x_1172, 0); + lean_ctor_release(x_1172, 1); + x_1203 = x_1172; +} else { + lean_dec_ref(x_1172); + x_1203 = lean_box(0); +} +if (lean_is_scalar(x_1203)) { + x_1204 = lean_alloc_ctor(1, 2, 0); +} else { + x_1204 = x_1203; +} +lean_ctor_set(x_1204, 0, x_1201); +lean_ctor_set(x_1204, 1, x_1202); +return x_1204; +} +} +else +{ +lean_object* x_1205; +lean_dec(x_1169); +lean_dec(x_1167); +x_1205 = l___private_Lean_Elab_Match_17__collect___main(x_1166, x_2, x_1040, x_1026); +if (lean_obj_tag(x_1205) == 0) +{ +lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; +x_1206 = lean_ctor_get(x_1205, 0); +lean_inc(x_1206); +x_1207 = lean_ctor_get(x_1205, 1); +lean_inc(x_1207); +if (lean_is_exclusive(x_1205)) { + lean_ctor_release(x_1205, 0); + lean_ctor_release(x_1205, 1); + x_1208 = x_1205; +} else { + lean_dec_ref(x_1205); + x_1208 = lean_box(0); +} +x_1209 = lean_ctor_get(x_1206, 0); +lean_inc(x_1209); +x_1210 = lean_ctor_get(x_1206, 1); +lean_inc(x_1210); +if (lean_is_exclusive(x_1206)) { + lean_ctor_release(x_1206, 0); + lean_ctor_release(x_1206, 1); + x_1211 = x_1206; +} else { + lean_dec_ref(x_1206); + x_1211 = lean_box(0); +} +x_1212 = l_Lean_Syntax_setArg(x_1162, x_1165, x_1209); +x_1213 = lean_array_set(x_6, x_1024, x_1212); +if (lean_is_scalar(x_1164)) { + x_1214 = lean_alloc_ctor(1, 2, 0); +} else { + x_1214 = x_1164; +} +lean_ctor_set(x_1214, 0, x_5); +lean_ctor_set(x_1214, 1, x_1213); +if (lean_is_scalar(x_1211)) { + x_1215 = lean_alloc_ctor(0, 2, 0); +} else { + x_1215 = x_1211; +} +lean_ctor_set(x_1215, 0, x_1214); +lean_ctor_set(x_1215, 1, x_1210); +if (lean_is_scalar(x_1208)) { + x_1216 = lean_alloc_ctor(0, 2, 0); +} else { + x_1216 = x_1208; +} +lean_ctor_set(x_1216, 0, x_1215); +lean_ctor_set(x_1216, 1, x_1207); +return x_1216; +} +else +{ +lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; +lean_dec(x_1164); +lean_dec(x_1162); +lean_dec(x_6); +lean_dec(x_5); +x_1217 = lean_ctor_get(x_1205, 0); +lean_inc(x_1217); +x_1218 = lean_ctor_get(x_1205, 1); +lean_inc(x_1218); +if (lean_is_exclusive(x_1205)) { + lean_ctor_release(x_1205, 0); + lean_ctor_release(x_1205, 1); + x_1219 = x_1205; +} else { + lean_dec_ref(x_1205); + x_1219 = lean_box(0); +} +if (lean_is_scalar(x_1219)) { + x_1220 = lean_alloc_ctor(1, 2, 0); +} else { + x_1220 = x_1219; +} +lean_ctor_set(x_1220, 0, x_1217); +lean_ctor_set(x_1220, 1, x_1218); +return x_1220; +} +} +} +else +{ +lean_object* x_1221; +lean_dec(x_1167); +x_1221 = l___private_Lean_Elab_Match_17__collect___main(x_1166, x_2, x_1040, x_1026); +if (lean_obj_tag(x_1221) == 0) +{ +lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; +x_1222 = lean_ctor_get(x_1221, 0); +lean_inc(x_1222); +x_1223 = lean_ctor_get(x_1221, 1); +lean_inc(x_1223); +if (lean_is_exclusive(x_1221)) { + lean_ctor_release(x_1221, 0); + lean_ctor_release(x_1221, 1); + x_1224 = x_1221; +} else { + lean_dec_ref(x_1221); + x_1224 = lean_box(0); +} +x_1225 = lean_ctor_get(x_1222, 0); +lean_inc(x_1225); +x_1226 = lean_ctor_get(x_1222, 1); +lean_inc(x_1226); +if (lean_is_exclusive(x_1222)) { + lean_ctor_release(x_1222, 0); + lean_ctor_release(x_1222, 1); + x_1227 = x_1222; +} else { + lean_dec_ref(x_1222); + x_1227 = lean_box(0); +} +x_1228 = l_Lean_Syntax_setArg(x_1162, x_1165, x_1225); +x_1229 = lean_array_set(x_6, x_1024, x_1228); +if (lean_is_scalar(x_1164)) { + x_1230 = lean_alloc_ctor(1, 2, 0); +} else { + x_1230 = x_1164; +} +lean_ctor_set(x_1230, 0, x_5); +lean_ctor_set(x_1230, 1, x_1229); +if (lean_is_scalar(x_1227)) { + x_1231 = lean_alloc_ctor(0, 2, 0); +} else { + x_1231 = x_1227; +} +lean_ctor_set(x_1231, 0, x_1230); +lean_ctor_set(x_1231, 1, x_1226); +if (lean_is_scalar(x_1224)) { + x_1232 = lean_alloc_ctor(0, 2, 0); +} else { + x_1232 = x_1224; +} +lean_ctor_set(x_1232, 0, x_1231); +lean_ctor_set(x_1232, 1, x_1223); +return x_1232; +} +else +{ +lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; +lean_dec(x_1164); +lean_dec(x_1162); +lean_dec(x_6); +lean_dec(x_5); +x_1233 = lean_ctor_get(x_1221, 0); +lean_inc(x_1233); +x_1234 = lean_ctor_get(x_1221, 1); +lean_inc(x_1234); +if (lean_is_exclusive(x_1221)) { + lean_ctor_release(x_1221, 0); + lean_ctor_release(x_1221, 1); + x_1235 = x_1221; +} else { + lean_dec_ref(x_1221); + x_1235 = lean_box(0); +} +if (lean_is_scalar(x_1235)) { + x_1236 = lean_alloc_ctor(1, 2, 0); +} else { + x_1236 = x_1235; +} +lean_ctor_set(x_1236, 0, x_1233); +lean_ctor_set(x_1236, 1, x_1234); +return x_1236; +} +} +} +else +{ +lean_object* x_1237; lean_object* x_1238; +lean_dec(x_1162); +lean_dec(x_1040); +lean_dec(x_6); +lean_dec(x_5); +x_1237 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1237, 0, x_1); +lean_ctor_set(x_1237, 1, x_2); +x_1238 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1238, 0, x_1237); +lean_ctor_set(x_1238, 1, x_1026); +return x_1238; +} +} +} +else +{ +lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; +lean_dec(x_6); +lean_dec(x_5); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_1239 = x_1; +} else { + lean_dec_ref(x_1); + x_1239 = lean_box(0); +} +x_1240 = l_Lean_Elab_Term_getCurrMacroScope(x_1040, x_1026); +lean_dec(x_1040); +x_1241 = lean_ctor_get(x_1240, 0); +lean_inc(x_1241); +x_1242 = lean_ctor_get(x_1240, 1); +lean_inc(x_1242); +lean_dec(x_1240); +x_1243 = l_Lean_Elab_Term_getMainModule___rarg(x_1242); +x_1244 = lean_ctor_get(x_1243, 0); +lean_inc(x_1244); +x_1245 = lean_ctor_get(x_1243, 1); +lean_inc(x_1245); +if (lean_is_exclusive(x_1243)) { + lean_ctor_release(x_1243, 0); + lean_ctor_release(x_1243, 1); + x_1246 = x_1243; +} else { + lean_dec_ref(x_1243); + x_1246 = lean_box(0); +} +x_1247 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_1248 = l_Lean_addMacroScope(x_1244, x_1247, x_1241); +x_1249 = lean_box(0); +x_1250 = l_Lean_SourceInfo_inhabited___closed__1; +x_1251 = l___private_Lean_Elab_Match_17__collect___main___closed__13; +x_1252 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1252, 0, x_1250); +lean_ctor_set(x_1252, 1, x_1251); +lean_ctor_set(x_1252, 2, x_1248); +lean_ctor_set(x_1252, 3, x_1249); +x_1253 = l___private_Lean_Elab_Match_17__collect___main___closed__11; +x_1254 = lean_array_push(x_1253, x_1252); +x_1255 = l_Lean_Parser_Term_namedHole___elambda__1___closed__2; +if (lean_is_scalar(x_1239)) { + x_1256 = lean_alloc_ctor(1, 2, 0); +} else { + x_1256 = x_1239; +} +lean_ctor_set(x_1256, 0, x_1255); +lean_ctor_set(x_1256, 1, x_1254); +x_1257 = lean_ctor_get(x_2, 0); +lean_inc(x_1257); +x_1258 = lean_ctor_get(x_2, 1); +lean_inc(x_1258); +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + lean_ctor_release(x_2, 1); + x_1259 = x_2; +} else { + lean_dec_ref(x_2); + x_1259 = lean_box(0); +} +x_1260 = l_Lean_Syntax_getArg(x_1256, x_1024); +x_1261 = l_Lean_Syntax_getId(x_1260); +lean_dec(x_1260); +x_1262 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1262, 0, x_1261); +x_1263 = lean_array_push(x_1258, x_1262); +if (lean_is_scalar(x_1259)) { + x_1264 = lean_alloc_ctor(0, 2, 0); +} else { + x_1264 = x_1259; +} +lean_ctor_set(x_1264, 0, x_1257); +lean_ctor_set(x_1264, 1, x_1263); +x_1265 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1265, 0, x_1256); +lean_ctor_set(x_1265, 1, x_1264); +if (lean_is_scalar(x_1246)) { + x_1266 = lean_alloc_ctor(0, 2, 0); +} else { + x_1266 = x_1246; +} +lean_ctor_set(x_1266, 0, x_1265); +lean_ctor_set(x_1266, 1, x_1245); +return x_1266; +} +} +else +{ +lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; uint8_t x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; uint8_t x_1274; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_1267 = x_1; +} else { + lean_dec_ref(x_1); + x_1267 = lean_box(0); +} +x_1268 = l_Lean_Syntax_inhabited; +x_1269 = lean_array_get(x_1268, x_6, x_1024); +x_1270 = l_Lean_Syntax_isNone(x_1269); +x_1271 = lean_unsigned_to_nat(2u); +x_1272 = lean_array_get(x_1268, x_6, x_1271); +x_1273 = l_Lean_Syntax_getArgs(x_1272); +lean_dec(x_1272); +if (x_1270 == 0) +{ +uint8_t x_1300; +x_1300 = 0; +x_1274 = x_1300; +goto block_1299; +} +else +{ +uint8_t x_1301; +x_1301 = 1; +x_1274 = x_1301; +goto block_1299; +} +block_1299: +{ +if (x_1274 == 0) +{ +lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; +lean_dec(x_1273); +lean_dec(x_1267); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_1275 = l___private_Lean_Elab_Match_17__collect___main___closed__16; +x_1276 = l_Lean_Elab_Term_throwError___rarg(x_1269, x_1275, x_1040, x_1026); +lean_dec(x_1269); +x_1277 = lean_ctor_get(x_1276, 0); +lean_inc(x_1277); +x_1278 = lean_ctor_get(x_1276, 1); +lean_inc(x_1278); +if (lean_is_exclusive(x_1276)) { + lean_ctor_release(x_1276, 0); + lean_ctor_release(x_1276, 1); + x_1279 = x_1276; +} else { + lean_dec_ref(x_1276); + x_1279 = lean_box(0); +} +if (lean_is_scalar(x_1279)) { + x_1280 = lean_alloc_ctor(1, 2, 0); +} else { + x_1280 = x_1279; +} +lean_ctor_set(x_1280, 0, x_1277); +lean_ctor_set(x_1280, 1, x_1278); +return x_1280; +} +else +{ +lean_object* x_1281; lean_object* x_1282; +lean_dec(x_1269); +x_1281 = l___private_Lean_Elab_Match_17__collect___main___closed__17; +x_1282 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_1273, x_1281, x_2, x_1040, x_1026); +lean_dec(x_1273); +if (lean_obj_tag(x_1282) == 0) +{ +lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; +x_1283 = lean_ctor_get(x_1282, 0); +lean_inc(x_1283); +x_1284 = lean_ctor_get(x_1282, 1); +lean_inc(x_1284); +if (lean_is_exclusive(x_1282)) { + lean_ctor_release(x_1282, 0); + lean_ctor_release(x_1282, 1); + x_1285 = x_1282; +} else { + lean_dec_ref(x_1282); + x_1285 = lean_box(0); +} +x_1286 = lean_ctor_get(x_1283, 0); +lean_inc(x_1286); +x_1287 = lean_ctor_get(x_1283, 1); +lean_inc(x_1287); +if (lean_is_exclusive(x_1283)) { + lean_ctor_release(x_1283, 0); + lean_ctor_release(x_1283, 1); + x_1288 = x_1283; +} else { + lean_dec_ref(x_1283); + x_1288 = lean_box(0); +} +x_1289 = l_Lean_nullKind; +if (lean_is_scalar(x_1267)) { + x_1290 = lean_alloc_ctor(1, 2, 0); +} else { + x_1290 = x_1267; +} +lean_ctor_set(x_1290, 0, x_1289); +lean_ctor_set(x_1290, 1, x_1286); +x_1291 = lean_array_set(x_6, x_1271, x_1290); +x_1292 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1292, 0, x_5); +lean_ctor_set(x_1292, 1, x_1291); +if (lean_is_scalar(x_1288)) { + x_1293 = lean_alloc_ctor(0, 2, 0); +} else { + x_1293 = x_1288; +} +lean_ctor_set(x_1293, 0, x_1292); +lean_ctor_set(x_1293, 1, x_1287); +if (lean_is_scalar(x_1285)) { + x_1294 = lean_alloc_ctor(0, 2, 0); +} else { + x_1294 = x_1285; +} +lean_ctor_set(x_1294, 0, x_1293); +lean_ctor_set(x_1294, 1, x_1284); +return x_1294; +} +else +{ +lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; +lean_dec(x_1267); +lean_dec(x_6); +lean_dec(x_5); +x_1295 = lean_ctor_get(x_1282, 0); +lean_inc(x_1295); +x_1296 = lean_ctor_get(x_1282, 1); +lean_inc(x_1296); +if (lean_is_exclusive(x_1282)) { + lean_ctor_release(x_1282, 0); + lean_ctor_release(x_1282, 1); + x_1297 = x_1282; +} else { + lean_dec_ref(x_1282); + x_1297 = lean_box(0); +} +if (lean_is_scalar(x_1297)) { + x_1298 = lean_alloc_ctor(1, 2, 0); +} else { + x_1298 = x_1297; +} +lean_ctor_set(x_1298, 0, x_1295); +lean_ctor_set(x_1298, 1, x_1296); +return x_1298; +} +} +} +} +} +else +{ +lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_1302 = x_1; +} else { + lean_dec_ref(x_1); + x_1302 = lean_box(0); +} +x_1303 = l_Lean_Syntax_inhabited; +x_1304 = lean_array_get(x_1303, x_6, x_1024); +x_1305 = l_Lean_Syntax_getArgs(x_1304); +lean_dec(x_1304); +x_1306 = l___private_Lean_Elab_Match_17__collect___main___closed__9; +x_1307 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_1305, x_1306, x_2, x_1040, x_1026); +lean_dec(x_1305); +if (lean_obj_tag(x_1307) == 0) +{ +lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; +x_1308 = lean_ctor_get(x_1307, 0); +lean_inc(x_1308); +x_1309 = lean_ctor_get(x_1307, 1); +lean_inc(x_1309); +if (lean_is_exclusive(x_1307)) { + lean_ctor_release(x_1307, 0); + lean_ctor_release(x_1307, 1); + x_1310 = x_1307; +} else { + lean_dec_ref(x_1307); + x_1310 = lean_box(0); +} +x_1311 = lean_ctor_get(x_1308, 0); +lean_inc(x_1311); +x_1312 = lean_ctor_get(x_1308, 1); +lean_inc(x_1312); +if (lean_is_exclusive(x_1308)) { + lean_ctor_release(x_1308, 0); + lean_ctor_release(x_1308, 1); + x_1313 = x_1308; +} else { + lean_dec_ref(x_1308); + x_1313 = lean_box(0); +} +x_1314 = l_Lean_nullKind; +if (lean_is_scalar(x_1302)) { + x_1315 = lean_alloc_ctor(1, 2, 0); +} else { + x_1315 = x_1302; +} +lean_ctor_set(x_1315, 0, x_1314); +lean_ctor_set(x_1315, 1, x_1311); +x_1316 = lean_array_set(x_6, x_1024, x_1315); +x_1317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1317, 0, x_5); +lean_ctor_set(x_1317, 1, x_1316); +if (lean_is_scalar(x_1313)) { + x_1318 = lean_alloc_ctor(0, 2, 0); +} else { + x_1318 = x_1313; +} +lean_ctor_set(x_1318, 0, x_1317); +lean_ctor_set(x_1318, 1, x_1312); +if (lean_is_scalar(x_1310)) { + x_1319 = lean_alloc_ctor(0, 2, 0); +} else { + x_1319 = x_1310; +} +lean_ctor_set(x_1319, 0, x_1318); +lean_ctor_set(x_1319, 1, x_1309); +return x_1319; +} +else +{ +lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; +lean_dec(x_1302); +lean_dec(x_6); +lean_dec(x_5); +x_1320 = lean_ctor_get(x_1307, 0); +lean_inc(x_1320); +x_1321 = lean_ctor_get(x_1307, 1); +lean_inc(x_1321); +if (lean_is_exclusive(x_1307)) { + lean_ctor_release(x_1307, 0); + lean_ctor_release(x_1307, 1); + x_1322 = x_1307; +} else { + lean_dec_ref(x_1307); + x_1322 = lean_box(0); +} +if (lean_is_scalar(x_1322)) { + x_1323 = lean_alloc_ctor(1, 2, 0); +} else { + x_1323 = x_1322; +} +lean_ctor_set(x_1323, 0, x_1320); +lean_ctor_set(x_1323, 1, x_1321); +return x_1323; +} +} +} +else +{ +lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_1324 = x_1; +} else { + lean_dec_ref(x_1); + x_1324 = lean_box(0); +} +x_1325 = l_Lean_Syntax_inhabited; +x_1326 = lean_unsigned_to_nat(0u); +x_1327 = lean_array_get(x_1325, x_6, x_1326); +x_1328 = lean_array_get(x_1325, x_6, x_1024); +x_1329 = l_Lean_Syntax_getArgs(x_1328); +lean_dec(x_1328); +x_1330 = l_Lean_mkAppStx___closed__6; +lean_inc(x_1040); +x_1331 = l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3(x_1330, x_1329, x_1326, x_2, x_1040, x_1026); +if (lean_obj_tag(x_1331) == 0) +{ +lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; uint8_t x_1335; lean_object* x_1336; +x_1332 = lean_ctor_get(x_1331, 0); +lean_inc(x_1332); +x_1333 = lean_ctor_get(x_1331, 1); +lean_inc(x_1333); +lean_dec(x_1331); +x_1334 = lean_ctor_get(x_1332, 1); +lean_inc(x_1334); +lean_dec(x_1332); +x_1335 = 1; +lean_inc(x_1040); +x_1336 = l___private_Lean_Elab_Match_13__processIdAux(x_1327, x_1335, x_1334, x_1040, x_1333); +if (lean_obj_tag(x_1336) == 0) +{ +lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; +x_1337 = lean_ctor_get(x_1336, 0); +lean_inc(x_1337); +x_1338 = lean_ctor_get(x_1336, 1); +lean_inc(x_1338); +lean_dec(x_1336); +x_1339 = lean_ctor_get(x_1337, 0); +lean_inc(x_1339); +x_1340 = lean_ctor_get(x_1337, 1); +lean_inc(x_1340); +lean_dec(x_1337); +x_1341 = x_1329; +x_1342 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__4___boxed), 6, 3); +lean_closure_set(x_1342, 0, x_1339); +lean_closure_set(x_1342, 1, x_1326); +lean_closure_set(x_1342, 2, x_1341); +x_1343 = x_1342; +x_1344 = lean_apply_3(x_1343, x_1340, x_1040, x_1338); +if (lean_obj_tag(x_1344) == 0) +{ +lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; +x_1345 = lean_ctor_get(x_1344, 0); +lean_inc(x_1345); +x_1346 = lean_ctor_get(x_1344, 1); +lean_inc(x_1346); +if (lean_is_exclusive(x_1344)) { + lean_ctor_release(x_1344, 0); + lean_ctor_release(x_1344, 1); + x_1347 = x_1344; +} else { + lean_dec_ref(x_1344); + x_1347 = lean_box(0); +} +x_1348 = lean_ctor_get(x_1345, 0); +lean_inc(x_1348); +x_1349 = lean_ctor_get(x_1345, 1); +lean_inc(x_1349); +if (lean_is_exclusive(x_1345)) { + lean_ctor_release(x_1345, 0); + lean_ctor_release(x_1345, 1); + x_1350 = x_1345; +} else { + lean_dec_ref(x_1345); + x_1350 = lean_box(0); +} +x_1351 = l_Lean_nullKind; +if (lean_is_scalar(x_1324)) { + x_1352 = lean_alloc_ctor(1, 2, 0); +} else { + x_1352 = x_1324; +} +lean_ctor_set(x_1352, 0, x_1351); +lean_ctor_set(x_1352, 1, x_1348); +x_1353 = lean_array_set(x_6, x_1024, x_1352); +x_1354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1354, 0, x_5); +lean_ctor_set(x_1354, 1, x_1353); +if (lean_is_scalar(x_1350)) { + x_1355 = lean_alloc_ctor(0, 2, 0); +} else { + x_1355 = x_1350; +} +lean_ctor_set(x_1355, 0, x_1354); +lean_ctor_set(x_1355, 1, x_1349); +if (lean_is_scalar(x_1347)) { + x_1356 = lean_alloc_ctor(0, 2, 0); +} else { + x_1356 = x_1347; +} +lean_ctor_set(x_1356, 0, x_1355); +lean_ctor_set(x_1356, 1, x_1346); +return x_1356; +} +else +{ +lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; +lean_dec(x_1324); +lean_dec(x_6); +lean_dec(x_5); +x_1357 = lean_ctor_get(x_1344, 0); +lean_inc(x_1357); +x_1358 = lean_ctor_get(x_1344, 1); +lean_inc(x_1358); +if (lean_is_exclusive(x_1344)) { + lean_ctor_release(x_1344, 0); + lean_ctor_release(x_1344, 1); + x_1359 = x_1344; +} else { + lean_dec_ref(x_1344); + x_1359 = lean_box(0); +} +if (lean_is_scalar(x_1359)) { + x_1360 = lean_alloc_ctor(1, 2, 0); +} else { + x_1360 = x_1359; +} +lean_ctor_set(x_1360, 0, x_1357); +lean_ctor_set(x_1360, 1, x_1358); +return x_1360; +} +} +else +{ +lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; +lean_dec(x_1329); +lean_dec(x_1324); +lean_dec(x_1040); +lean_dec(x_6); +lean_dec(x_5); +x_1361 = lean_ctor_get(x_1336, 0); +lean_inc(x_1361); +x_1362 = lean_ctor_get(x_1336, 1); +lean_inc(x_1362); +if (lean_is_exclusive(x_1336)) { + lean_ctor_release(x_1336, 0); + lean_ctor_release(x_1336, 1); + x_1363 = x_1336; +} else { + lean_dec_ref(x_1336); + x_1363 = lean_box(0); +} +if (lean_is_scalar(x_1363)) { + x_1364 = lean_alloc_ctor(1, 2, 0); +} else { + x_1364 = x_1363; +} +lean_ctor_set(x_1364, 0, x_1361); +lean_ctor_set(x_1364, 1, x_1362); +return x_1364; +} +} +else +{ +lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; +lean_dec(x_1329); +lean_dec(x_1327); +lean_dec(x_1324); +lean_dec(x_1040); +lean_dec(x_6); +lean_dec(x_5); +x_1365 = lean_ctor_get(x_1331, 0); +lean_inc(x_1365); +x_1366 = lean_ctor_get(x_1331, 1); +lean_inc(x_1366); +if (lean_is_exclusive(x_1331)) { + lean_ctor_release(x_1331, 0); + lean_ctor_release(x_1331, 1); + x_1367 = x_1331; +} else { + lean_dec_ref(x_1331); + x_1367 = lean_box(0); +} +if (lean_is_scalar(x_1367)) { + x_1368 = lean_alloc_ctor(1, 2, 0); +} else { + x_1368 = x_1367; +} +lean_ctor_set(x_1368, 0, x_1365); +lean_ctor_set(x_1368, 1, x_1366); +return x_1368; +} +} +} +} +case 3: +{ +lean_object* x_1369; +lean_inc(x_1); +x_1369 = l___private_Lean_Elab_Match_15__processId(x_1, x_2, x_3, x_4); +if (lean_obj_tag(x_1369) == 0) +{ +uint8_t x_1370; +x_1370 = !lean_is_exclusive(x_1369); +if (x_1370 == 0) +{ +lean_object* x_1371; uint8_t x_1372; +x_1371 = lean_ctor_get(x_1369, 0); +x_1372 = !lean_is_exclusive(x_1371); +if (x_1372 == 0) +{ +lean_object* x_1373; +x_1373 = lean_ctor_get(x_1371, 0); +lean_dec(x_1373); +lean_ctor_set(x_1371, 0, x_1); +return x_1369; +} +else +{ +lean_object* x_1374; lean_object* x_1375; +x_1374 = lean_ctor_get(x_1371, 1); +lean_inc(x_1374); +lean_dec(x_1371); +x_1375 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1375, 0, x_1); +lean_ctor_set(x_1375, 1, x_1374); +lean_ctor_set(x_1369, 0, x_1375); +return x_1369; +} +} +else +{ +lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; +x_1376 = lean_ctor_get(x_1369, 0); +x_1377 = lean_ctor_get(x_1369, 1); +lean_inc(x_1377); +lean_inc(x_1376); +lean_dec(x_1369); +x_1378 = lean_ctor_get(x_1376, 1); +lean_inc(x_1378); +if (lean_is_exclusive(x_1376)) { + lean_ctor_release(x_1376, 0); + lean_ctor_release(x_1376, 1); + x_1379 = x_1376; +} else { + lean_dec_ref(x_1376); + x_1379 = lean_box(0); +} +if (lean_is_scalar(x_1379)) { + x_1380 = lean_alloc_ctor(0, 2, 0); +} else { + x_1380 = x_1379; +} +lean_ctor_set(x_1380, 0, x_1); +lean_ctor_set(x_1380, 1, x_1378); +x_1381 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1381, 0, x_1380); +lean_ctor_set(x_1381, 1, x_1377); +return x_1381; +} +} +else +{ +uint8_t x_1382; +lean_dec(x_1); +x_1382 = !lean_is_exclusive(x_1369); +if (x_1382 == 0) +{ +return x_1369; +} +else +{ +lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; +x_1383 = lean_ctor_get(x_1369, 0); +x_1384 = lean_ctor_get(x_1369, 1); +lean_inc(x_1384); +lean_inc(x_1383); +lean_dec(x_1369); +x_1385 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1385, 0, x_1383); +lean_ctor_set(x_1385, 1, x_1384); +return x_1385; +} +} +} +default: +{ +lean_object* x_1386; +x_1386 = l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_1386; +} +} +} +} +lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__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_Array_mapSepElemsM___at___private_Lean_Elab_Match_17__collect___main___spec__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__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: +{ +lean_object* x_7; +x_7 = l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_2); +return x_7; +} +} +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__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) { +_start: +{ +lean_object* x_7; +x_7 = l_Array_umapMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__4(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +lean_object* l___private_Lean_Elab_Match_17__collect(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_17__collect___main(x_1, x_2, x_3, x_4); +return x_5; +} +} +lean_object* _init_l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_2 = l___private_Lean_Meta_EqnCompiler_DepElim_20__processNonVariable___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("collecting variables at pattern: "); +return x_1; +} +} +lean_object* _init_l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__2; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__3; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_2); +x_7 = lean_nat_dec_lt(x_1, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_dec(x_4); +lean_dec(x_1); +x_8 = x_2; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_3); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_5); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_11 = lean_array_fget(x_2, x_1); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_fset(x_2, x_1, x_12); +x_14 = x_11; +x_15 = l_Lean_Elab_Term_getOptions(x_4, x_5); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1; +x_19 = l_Lean_checkTraceOption(x_16, x_18); +lean_dec(x_16); +if (x_19 == 0) +{ +lean_object* x_20; +lean_inc(x_4); +x_20 = l___private_Lean_Elab_Match_17__collect___main(x_14, x_3, x_4, x_17); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_dec(x_21); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_add(x_1, x_25); +x_27 = x_23; +x_28 = lean_array_fset(x_13, x_1, x_27); +lean_dec(x_1); +x_1 = x_26; +x_2 = x_28; +x_3 = x_24; +x_5 = x_22; +goto _start; +} +else +{ +uint8_t x_30; +lean_dec(x_13); +lean_dec(x_4); +lean_dec(x_1); +x_30 = !lean_is_exclusive(x_20); +if (x_30 == 0) +{ +return x_20; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_20, 0); +x_32 = lean_ctor_get(x_20, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_20); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +lean_inc(x_14); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_14); +x_35 = l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__4; +x_36 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +lean_inc(x_4); +x_37 = l_Lean_Elab_Term_logTrace(x_18, x_14, x_36, x_4, x_17); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +lean_inc(x_4); +x_39 = l___private_Lean_Elab_Match_17__collect___main(x_14, x_3, x_4, x_38); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_39, 1); +lean_inc(x_41); +lean_dec(x_39); +x_42 = lean_ctor_get(x_40, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_dec(x_40); +x_44 = lean_unsigned_to_nat(1u); +x_45 = lean_nat_add(x_1, x_44); +x_46 = x_42; +x_47 = lean_array_fset(x_13, x_1, x_46); +lean_dec(x_1); +x_1 = x_45; +x_2 = x_47; +x_3 = x_43; +x_5 = x_41; +goto _start; +} +else +{ +uint8_t x_49; +lean_dec(x_13); +lean_dec(x_4); +lean_dec(x_1); +x_49 = !lean_is_exclusive(x_39); +if (x_49 == 0) +{ +return x_39; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_39, 0); +x_51 = lean_ctor_get(x_39, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_39); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +} +} +} +} +lean_object* l_Lean_Elab_Term_CollectPatternVars_main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get(x_1, 2); +x_9 = x_7; +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1), 5, 2); +lean_closure_set(x_11, 0, x_10); +lean_closure_set(x_11, 1, x_9); +x_12 = x_11; +x_13 = lean_apply_3(x_12, x_2, x_3, x_4); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_ctor_get(x_13, 0); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_15, 0); +lean_ctor_set(x_1, 1, x_17); +lean_ctor_set(x_15, 0, x_1); +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_15, 0); +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_15); +lean_ctor_set(x_1, 1, x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_19); +lean_ctor_set(x_13, 0, x_20); +return x_13; +} +} +else +{ +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; +x_21 = lean_ctor_get(x_13, 0); +x_22 = lean_ctor_get(x_13, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_13); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + x_25 = x_21; +} else { + lean_dec_ref(x_21); + x_25 = lean_box(0); +} +lean_ctor_set(x_1, 1, x_23); +if (lean_is_scalar(x_25)) { + x_26 = lean_alloc_ctor(0, 2, 0); +} else { + x_26 = x_25; +} +lean_ctor_set(x_26, 0, x_1); +lean_ctor_set(x_26, 1, x_24); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_22); +return x_27; +} +} +else +{ +uint8_t x_28; +lean_free_object(x_1); +lean_dec(x_8); +lean_dec(x_6); +x_28 = !lean_is_exclusive(x_13); +if (x_28 == 0) +{ +return x_13; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_13, 0); +x_30 = lean_ctor_get(x_13, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_13); +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; +} +} +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_32 = lean_ctor_get(x_1, 0); +x_33 = lean_ctor_get(x_1, 1); +x_34 = lean_ctor_get(x_1, 2); +lean_inc(x_34); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_1); +x_35 = x_33; +x_36 = lean_unsigned_to_nat(0u); +x_37 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1), 5, 2); +lean_closure_set(x_37, 0, x_36); +lean_closure_set(x_37, 1, x_35); +x_38 = x_37; +x_39 = lean_apply_3(x_38, x_2, x_3, x_4); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_39, 1); +lean_inc(x_41); +if (lean_is_exclusive(x_39)) { + lean_ctor_release(x_39, 0); + lean_ctor_release(x_39, 1); + x_42 = x_39; +} else { + lean_dec_ref(x_39); + x_42 = lean_box(0); +} +x_43 = lean_ctor_get(x_40, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_40, 1); +lean_inc(x_44); +if (lean_is_exclusive(x_40)) { + lean_ctor_release(x_40, 0); + lean_ctor_release(x_40, 1); + x_45 = x_40; +} else { + lean_dec_ref(x_40); + x_45 = lean_box(0); +} +x_46 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_46, 0, x_32); +lean_ctor_set(x_46, 1, x_43); +lean_ctor_set(x_46, 2, x_34); +if (lean_is_scalar(x_45)) { + x_47 = lean_alloc_ctor(0, 2, 0); +} else { + x_47 = x_45; +} +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_44); +if (lean_is_scalar(x_42)) { + x_48 = lean_alloc_ctor(0, 2, 0); +} else { + x_48 = x_42; +} +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_41); +return x_48; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +lean_dec(x_34); +lean_dec(x_32); +x_49 = lean_ctor_get(x_39, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_39, 1); +lean_inc(x_50); +if (lean_is_exclusive(x_39)) { + lean_ctor_release(x_39, 0); + lean_ctor_release(x_39, 1); + x_51 = x_39; +} else { + lean_dec_ref(x_39); + x_51 = lean_box(0); +} +if (lean_is_scalar(x_51)) { + x_52 = lean_alloc_ctor(1, 2, 0); +} else { + x_52 = x_51; +} +lean_ctor_set(x_52, 0, x_49); +lean_ctor_set(x_52, 1, x_50); +return x_52; +} +} +} +} +lean_object* _init_l___private_Lean_Elab_Match_18__collectPatternVars___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_NameSet_empty; +x_2 = l_Array_empty___closed__1; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l___private_Lean_Elab_Match_18__collectPatternVars(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = l___private_Lean_Elab_Match_18__collectPatternVars___closed__1; +x_5 = l_Lean_Elab_Term_CollectPatternVars_main(x_1, x_4, x_2, x_3); +if (lean_obj_tag(x_5) == 0) +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_ctor_get(x_5, 0); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); +x_11 = lean_ctor_get(x_10, 1); +lean_inc(x_11); +lean_dec(x_10); +lean_ctor_set(x_7, 1, x_9); +lean_ctor_set(x_7, 0, x_11); +return x_5; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_7, 0); +x_13 = lean_ctor_get(x_7, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_7); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_12); +lean_ctor_set(x_5, 0, x_15); +return x_5; +} +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_16 = lean_ctor_get(x_5, 0); +x_17 = lean_ctor_get(x_5, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_5); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +if (lean_is_exclusive(x_16)) { + lean_ctor_release(x_16, 0); + lean_ctor_release(x_16, 1); + x_20 = x_16; +} else { + lean_dec_ref(x_16); + x_20 = lean_box(0); +} +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +if (lean_is_scalar(x_20)) { + x_22 = lean_alloc_ctor(0, 2, 0); +} else { + x_22 = x_20; +} +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_18); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_17); +return x_23; +} +} +else +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_5); +if (x_24 == 0) +{ +return x_5; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_5, 0); +x_26 = lean_ctor_get(x_5, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_5); +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_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_unsigned_to_nat(1u); +x_9 = lean_nat_add(x_1, x_8); +x_10 = l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg(x_2, x_3, x_4, x_9, x_6, x_7); +return x_10; +} +} +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_get_size(x_2); +x_8 = lean_nat_dec_lt(x_4, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_9 = lean_apply_2(x_3, x_5, x_6); +return x_9; +} +else +{ +lean_object* x_10; +x_10 = lean_array_fget(x_2, x_4); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = 0; +x_13 = lean_box(0); +lean_inc(x_5); +x_14 = l_Lean_Elab_Term_mkFreshTypeMVar(x_1, x_12, x_13, x_5, x_6); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +lean_inc(x_1); +x_17 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg___lambda__1___boxed), 7, 4); +lean_closure_set(x_17, 0, x_4); +lean_closure_set(x_17, 1, x_1); +lean_closure_set(x_17, 2, x_2); +lean_closure_set(x_17, 3, x_3); +x_18 = 0; +x_19 = l_Lean_Elab_Term_withLocalDecl___rarg(x_1, x_11, x_18, x_15, x_17, x_5, x_16); +lean_dec(x_1); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; +lean_dec(x_10); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_add(x_4, x_20); +lean_dec(x_4); +x_4 = x_21; +goto _start; +} +} +} +} +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___main(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg), 6, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_5); +lean_dec(x_1); +return x_8; +} +} +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6); +return x_7; +} +} +lean_object* l___private_Lean_Elab_Match_19__withPatternVarsAux(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_19__withPatternVarsAux___rarg), 6, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_20__withPatternVars___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; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg(x_1, x_2, x_3, x_6, x_4, x_5); +return x_7; +} +} +lean_object* l___private_Lean_Elab_Match_20__withPatternVars(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_20__withPatternVars___rarg), 5, 0); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("unexpected match type"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_array_get_size(x_2); +x_9 = lean_nat_dec_lt(x_3, x_8); +lean_dec(x_8); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_7); +return x_10; +} +else +{ +lean_object* x_11; +lean_inc(x_6); +x_11 = l_Lean_Elab_Term_whnf(x_1, x_4, x_6, x_7); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +if (lean_obj_tag(x_12) == 7) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +x_15 = lean_ctor_get(x_12, 2); +lean_inc(x_15); +lean_dec(x_12); +x_16 = lean_array_fget(x_2, x_3); +x_17 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_17, 0, x_14); +x_18 = 1; +lean_inc(x_6); +x_19 = l_Lean_Elab_Term_elabTermAux___main(x_17, x_18, x_18, x_16, x_6, x_13); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_3, x_22); +lean_dec(x_3); +x_24 = lean_expr_instantiate1(x_15, x_20); +lean_dec(x_15); +x_25 = lean_array_push(x_5, x_20); +x_3 = x_23; +x_4 = x_24; +x_5 = x_25; +x_7 = x_21; +goto _start; +} +else +{ +uint8_t x_27; +lean_dec(x_15); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_27 = !lean_is_exclusive(x_19); +if (x_27 == 0) +{ +return x_19; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_19, 0); +x_29 = lean_ctor_get(x_19, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_19); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_12); +lean_dec(x_5); +lean_dec(x_3); +x_31 = lean_ctor_get(x_11, 1); +lean_inc(x_31); +lean_dec(x_11); +x_32 = l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__3; +x_33 = l_Lean_Elab_Term_throwError___rarg(x_1, x_32, x_6, x_31); +return x_33; +} +} +else +{ +uint8_t x_34; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_34 = !lean_is_exclusive(x_11); +if (x_34 == 0) +{ +return x_11; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_11, 0); +x_36 = lean_ctor_get(x_11, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_11); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +} +} +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Elab_Match_21__elabPatternsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Elab_Match_21__elabPatternsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +lean_object* l___private_Lean_Elab_Match_21__elabPatternsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Elab_Match_21__elabPatternsAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +lean_object* _init_l___private_Lean_Elab_Match_22__elabPatterns___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("patterns: "); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_22__elabPatterns___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_22__elabPatterns___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_22__elabPatterns___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_22__elabPatterns___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Match_22__elabPatterns(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Array_empty___closed__1; +lean_inc(x_4); +x_8 = l___private_Lean_Elab_Match_21__elabPatternsAux___main(x_1, x_2, x_6, x_3, x_7, x_4, x_5); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = l_Lean_Elab_Term_getOptions(x_4, x_10); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +x_15 = l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1; +x_16 = l_Lean_checkTraceOption(x_13, x_15); +lean_dec(x_13); +if (x_16 == 0) +{ +lean_dec(x_4); +lean_ctor_set(x_11, 0, x_9); +return x_11; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +lean_free_object(x_11); +x_17 = l_Lean_MessageData_coeOfArrayExpr___closed__2; +x_18 = l_Lean_MessageData_arrayExpr_toMessageData___main(x_9, x_6, x_17); +x_19 = l___private_Lean_Elab_Match_22__elabPatterns___closed__3; +x_20 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +x_21 = l_Lean_Elab_Term_logTrace(x_15, x_1, x_20, x_4, x_14); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; +x_23 = lean_ctor_get(x_21, 0); +lean_dec(x_23); +lean_ctor_set(x_21, 0, x_9); +return x_21; +} +else +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_dec(x_21); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_9); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_26 = lean_ctor_get(x_11, 0); +x_27 = lean_ctor_get(x_11, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_11); +x_28 = l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1; +x_29 = l_Lean_checkTraceOption(x_26, x_28); +lean_dec(x_26); +if (x_29 == 0) +{ +lean_object* x_30; +lean_dec(x_4); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_9); +lean_ctor_set(x_30, 1, x_27); +return x_30; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_31 = l_Lean_MessageData_coeOfArrayExpr___closed__2; +x_32 = l_Lean_MessageData_arrayExpr_toMessageData___main(x_9, x_6, x_31); +x_33 = l___private_Lean_Elab_Match_22__elabPatterns___closed__3; +x_34 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_32); +x_35 = l_Lean_Elab_Term_logTrace(x_28, x_1, x_34, x_4, x_27); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + x_37 = x_35; +} else { + lean_dec_ref(x_35); + x_37 = lean_box(0); +} +if (lean_is_scalar(x_37)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_37; +} +lean_ctor_set(x_38, 0, x_9); +lean_ctor_set(x_38, 1, x_36); +return x_38; +} +} +} +else +{ +uint8_t x_39; +lean_dec(x_4); +x_39 = !lean_is_exclusive(x_8); +if (x_39 == 0) +{ +return x_8; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_8, 0); +x_41 = lean_ctor_get(x_8, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_8); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +lean_object* l___private_Lean_Elab_Match_22__elabPatterns___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Elab_Match_22__elabPatterns(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +lean_object* l_List_toStringAux___main___at_Lean_Elab_Term_elabMatchAltView___spec__2(uint8_t x_1, lean_object* x_2) { +_start: +{ +if (x_1 == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = l_String_splitAux___main___closed__1; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_2, 1); +lean_inc(x_5); +lean_dec(x_2); +x_6 = l_List_toStringAux___main___at_Lean_Elab_Term_elabMatchAltView___spec__2(x_1, x_5); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_7 = lean_ctor_get(x_4, 0); +lean_inc(x_7); +lean_dec(x_4); +x_8 = l_Lean_Name_toString___closed__1; +x_9 = l_Lean_Name_toStringWithSep___main(x_8, x_7); +x_10 = l_List_reprAux___main___rarg___closed__1; +x_11 = lean_string_append(x_10, x_9); +lean_dec(x_9); +x_12 = lean_string_append(x_11, x_6); +lean_dec(x_6); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_13 = lean_ctor_get(x_4, 0); +lean_inc(x_13); +lean_dec(x_4); +x_14 = l_Lean_Name_toString___closed__1; +x_15 = l_Lean_Name_toStringWithSep___main(x_14, x_13); +x_16 = l_Lean_Parser_FirstTokens_toStr___closed__3; +x_17 = lean_string_append(x_16, x_15); +lean_dec(x_15); +x_18 = l_List_reprAux___main___rarg___closed__1; +x_19 = lean_string_append(x_18, x_17); +lean_dec(x_17); +x_20 = lean_string_append(x_19, x_6); +lean_dec(x_6); +return x_20; +} +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_21; +x_21 = l_String_splitAux___main___closed__1; +return x_21; +} +else +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_2, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_2, 1); +lean_inc(x_23); +lean_dec(x_2); +x_24 = 0; +x_25 = l_List_toStringAux___main___at_Lean_Elab_Term_elabMatchAltView___spec__2(x_24, x_23); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_26 = lean_ctor_get(x_22, 0); +lean_inc(x_26); +lean_dec(x_22); +x_27 = l_Lean_Name_toString___closed__1; +x_28 = l_Lean_Name_toStringWithSep___main(x_27, x_26); +x_29 = lean_string_append(x_28, x_25); +lean_dec(x_25); +return x_29; +} +else +{ +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_30 = lean_ctor_get(x_22, 0); +lean_inc(x_30); +lean_dec(x_22); +x_31 = l_Lean_Name_toString___closed__1; +x_32 = l_Lean_Name_toStringWithSep___main(x_31, x_30); +x_33 = l_Lean_Parser_FirstTokens_toStr___closed__3; +x_34 = lean_string_append(x_33, x_32); +lean_dec(x_32); +x_35 = lean_string_append(x_34, x_25); +lean_dec(x_25); +return x_35; +} +} +} +} +} +lean_object* l_List_toString___at_Lean_Elab_Term_elabMatchAltView___spec__1(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_List_repr___rarg___closed__1; +return x_2; +} +else +{ +uint8_t x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_3 = 1; +x_4 = l_List_toStringAux___main___at_Lean_Elab_Term_elabMatchAltView___spec__2(x_3, x_1); +x_5 = l_List_repr___rarg___closed__2; +x_6 = lean_string_append(x_5, x_4); +lean_dec(x_4); +x_7 = l_List_repr___rarg___closed__3; +x_8 = lean_string_append(x_6, x_7); +return x_8; +} +} +} +lean_object* _init_l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +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_object* _init_l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__1; +x_2 = l_Lean_Expr_Inhabited___closed__1; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Elab_Term_elabMatchAltView___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__2; +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +} +lean_object* _init_l_Lean_Elab_Term_elabMatchAltView___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabMatchAltView___lambda__1___boxed), 3, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_elabMatchAltView___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("patternVars: "); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_elabMatchAltView___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_elabMatchAltView___closed__2; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_elabMatchAltView___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_elabMatchAltView___closed__3; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Elab_Term_elabMatchAltView(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +lean_inc(x_3); +x_5 = l___private_Lean_Elab_Match_18__collectPatternVars(x_1, x_3, x_4); +if (lean_obj_tag(x_5) == 0) +{ +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; uint8_t x_19; +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_6, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_9); +lean_dec(x_6); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +lean_inc(x_10); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_22__elabPatterns___boxed), 5, 3); +lean_closure_set(x_12, 0, x_10); +lean_closure_set(x_12, 1, x_11); +lean_closure_set(x_12, 2, x_2); +x_13 = l_Lean_Elab_Term_elabMatchAltView___closed__1; +x_14 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg), 4, 2); +lean_closure_set(x_14, 0, x_12); +lean_closure_set(x_14, 1, x_13); +x_15 = l_Lean_Elab_Term_getOptions(x_3, x_7); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1; +x_19 = l_Lean_checkTraceOption(x_16, x_18); +lean_dec(x_16); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_unsigned_to_nat(0u); +x_21 = l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg(x_10, x_8, x_14, x_20, x_3, x_17); +return x_21; +} +else +{ +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; +x_22 = l_Array_toList___rarg(x_8); +x_23 = l_List_toString___at_Lean_Elab_Term_elabMatchAltView___spec__1(x_22); +x_24 = l_Array_HasRepr___rarg___closed__1; +x_25 = lean_string_append(x_24, x_23); +lean_dec(x_23); +x_26 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = l_Lean_Elab_Term_elabMatchAltView___closed__4; +x_29 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +lean_inc(x_3); +x_30 = l_Lean_Elab_Term_logTrace(x_18, x_10, x_29, x_3, x_17); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +lean_dec(x_30); +x_32 = lean_unsigned_to_nat(0u); +x_33 = l___private_Lean_Elab_Match_19__withPatternVarsAux___main___rarg(x_10, x_8, x_14, x_32, x_3, x_31); +return x_33; +} +} +else +{ +uint8_t x_34; +lean_dec(x_3); +lean_dec(x_2); +x_34 = !lean_is_exclusive(x_5); +if (x_34 == 0) +{ +return x_5; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_5, 0); +x_36 = lean_ctor_get(x_5, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_5); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +} +lean_object* l_List_toStringAux___main___at_Lean_Elab_Term_elabMatchAltView___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = lean_unbox(x_1); +lean_dec(x_1); +x_4 = l_List_toStringAux___main___at_Lean_Elab_Term_elabMatchAltView___spec__2(x_3, x_2); +return x_4; +} +} +lean_object* l_Lean_Elab_Term_elabMatchAltView___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Term_elabMatchAltView___lambda__1(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -1393,94 +17789,83 @@ goto _start; } } } -lean_object* l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__3(uint8_t x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -if (x_1 == 0) +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_3); +x_7 = lean_nat_dec_lt(x_2, x_6); +lean_dec(x_6); +if (x_7 == 0) { -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_3; -x_3 = l_String_splitAux___main___closed__1; -return x_3; -} -else -{ -lean_object* x_4; lean_object* 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_object* x_14; lean_object* x_15; -x_4 = lean_ctor_get(x_2, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_2, 1); -lean_inc(x_5); -lean_dec(x_2); -x_6 = lean_box(0); -x_7 = 0; -x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Lean_Syntax_formatStxAux___main(x_6, x_7, x_8, x_4); -x_10 = l_Lean_Options_empty; -x_11 = l_Lean_Format_pretty(x_9, x_10); -x_12 = l_List_reprAux___main___rarg___closed__1; -x_13 = lean_string_append(x_12, x_11); -lean_dec(x_11); -x_14 = l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__3(x_1, x_5); -x_15 = lean_string_append(x_13, x_14); -lean_dec(x_14); -return x_15; -} -} -else -{ -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_16; -x_16 = l_String_splitAux___main___closed__1; -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_17 = lean_ctor_get(x_2, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_2, 1); -lean_inc(x_18); -lean_dec(x_2); -x_19 = lean_box(0); -x_20 = 0; -x_21 = lean_unsigned_to_nat(0u); -x_22 = l_Lean_Syntax_formatStxAux___main(x_19, x_20, x_21, x_17); -x_23 = l_Lean_Options_empty; -x_24 = l_Lean_Format_pretty(x_22, x_23); -x_25 = l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__3(x_20, x_18); -x_26 = lean_string_append(x_24, x_25); -lean_dec(x_25); -return x_26; -} -} -} -} -lean_object* l_List_toString___at___private_Lean_Elab_Match_6__elabMatchCore___spec__2(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_2; -x_2 = l_List_repr___rarg___closed__1; -return x_2; -} -else -{ -uint8_t x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_3 = 1; -x_4 = l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__3(x_3, x_1); -x_5 = l_List_repr___rarg___closed__2; -x_6 = lean_string_append(x_5, x_4); +lean_object* x_8; lean_object* x_9; lean_dec(x_4); -x_7 = l_List_repr___rarg___closed__3; -x_8 = lean_string_append(x_6, x_7); -return x_8; +lean_dec(x_2); +lean_dec(x_1); +x_8 = x_3; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_5); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_array_fget(x_3, x_2); +x_11 = lean_unsigned_to_nat(0u); +x_12 = lean_array_fset(x_3, x_2, x_11); +x_13 = x_10; +lean_inc(x_4); +lean_inc(x_1); +x_14 = l_Lean_Elab_Term_elabMatchAltView(x_13, x_1, x_4, x_5); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = lean_unsigned_to_nat(1u); +x_18 = lean_nat_add(x_2, x_17); +x_19 = x_15; +x_20 = lean_array_fset(x_12, x_2, x_19); +lean_dec(x_2); +x_2 = x_18; +x_3 = x_20; +x_5 = x_16; +goto _start; +} +else +{ +uint8_t x_22; +lean_dec(x_12); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_14); +if (x_22 == 0) +{ +return x_14; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_14, 0); +x_24 = lean_ctor_get(x_14, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_14); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; } } } -lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__4(lean_object* x_1, lean_object* x_2) { +} +} +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -1501,12 +17886,12 @@ x_6 = lean_array_fget(x_2, x_1); x_7 = lean_unsigned_to_nat(0u); x_8 = lean_array_fset(x_2, x_1, x_7); x_9 = x_6; -x_10 = lean_ctor_get(x_9, 0); +x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Array_toList___rarg(x_10); lean_dec(x_10); -x_12 = l_List_toString___at___private_Lean_Elab_Match_6__elabMatchCore___spec__2(x_11); +x_12 = l_List_toString___at___private_Lean_Elab_Match_6__elabDiscrsAux___main___spec__1(x_11); x_13 = l_Array_HasRepr___rarg___closed__1; x_14 = lean_string_append(x_13, x_12); lean_dec(x_12); @@ -1521,7 +17906,7 @@ goto _start; } } } -lean_object* _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__1() { +lean_object* _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__1() { _start: { lean_object* x_1; @@ -1529,27 +17914,27 @@ x_1 = lean_mk_string("WIP type: "); return x_1; } } -lean_object* _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__2() { +lean_object* _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Match_6__elabMatchCore___closed__1; +x_1 = l___private_Lean_Elab_Match_23__elabMatchCore___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__3() { +lean_object* _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Match_6__elabMatchCore___closed__2; +x_1 = l___private_Lean_Elab_Match_23__elabMatchCore___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__4() { +lean_object* _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -1559,248 +17944,1549 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__5() { +lean_object* _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Match_6__elabMatchCore___closed__4; +x_1 = l___private_Lean_Elab_Match_23__elabMatchCore___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore(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; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_5 = lean_unsigned_to_nat(1u); -x_6 = l_Lean_Syntax_getArg(x_1, x_5); -x_7 = l_Lean_Syntax_getArgs(x_6); -lean_dec(x_6); -x_8 = lean_unsigned_to_nat(2u); -x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_empty___closed__1; -x_11 = l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(x_8, x_7, x_9, x_10); -lean_dec(x_7); -x_12 = x_11; -x_13 = l_Array_umapMAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__1(x_9, x_12); -x_14 = x_13; -x_56 = l_Lean_Syntax_getArg(x_1, x_8); -x_57 = lean_array_get_size(x_14); -x_58 = l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(x_2, x_3, x_4); -if (lean_obj_tag(x_58) == 0) +lean_object* x_5; lean_object* x_6; lean_object* x_69; +x_69 = l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(x_2, x_3, x_4); +if (lean_obj_tag(x_69) == 0) { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; -x_59 = lean_ctor_get(x_58, 1); -lean_inc(x_59); -lean_dec(x_58); -x_60 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_59); -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_60, 1); -lean_inc(x_62); -lean_dec(x_60); -x_63 = l_Lean_Elab_Term_getEnv___rarg(x_62); -x_64 = lean_ctor_get(x_63, 1); -lean_inc(x_64); -x_65 = lean_ctor_get(x_63, 0); -lean_inc(x_65); -lean_dec(x_63); -x_66 = !lean_is_exclusive(x_64); -if (x_66 == 0) +if (lean_obj_tag(x_2) == 0) { -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_67 = lean_ctor_get(x_64, 5); -x_68 = lean_ctor_get(x_3, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_68, 3); -lean_inc(x_69); -x_70 = lean_ctor_get(x_68, 4); +lean_object* x_70; uint8_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_70 = lean_ctor_get(x_69, 1); lean_inc(x_70); -lean_dec(x_68); -x_71 = lean_environment_main_module(x_65); -x_72 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set(x_72, 1, x_61); -lean_ctor_set(x_72, 2, x_69); -lean_ctor_set(x_72, 3, x_70); -x_73 = l___private_Lean_Elab_Match_4__expandMatchOptType(x_1, x_56, x_57, x_72, x_67); -lean_dec(x_72); -lean_dec(x_57); -lean_dec(x_56); +lean_dec(x_69); +x_71 = 0; +x_72 = lean_box(0); +lean_inc(x_3); +x_73 = l_Lean_Elab_Term_mkFreshTypeMVar(x_1, x_71, x_72, x_3, x_70); x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); x_75 = lean_ctor_get(x_73, 1); lean_inc(x_75); lean_dec(x_73); -lean_ctor_set(x_64, 5, x_75); -x_15 = x_74; -x_16 = x_64; -goto block_55; +x_5 = x_74; +x_6 = x_75; +goto block_68; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_76 = lean_ctor_get(x_64, 0); -x_77 = lean_ctor_get(x_64, 1); -x_78 = lean_ctor_get(x_64, 2); -x_79 = lean_ctor_get(x_64, 3); -x_80 = lean_ctor_get(x_64, 4); -x_81 = lean_ctor_get(x_64, 5); -lean_inc(x_81); +lean_object* x_76; lean_object* x_77; +x_76 = lean_ctor_get(x_69, 1); +lean_inc(x_76); +lean_dec(x_69); +x_77 = lean_ctor_get(x_2, 0); +lean_inc(x_77); +lean_dec(x_2); +x_5 = x_77; +x_6 = x_76; +goto block_68; +} +} +else +{ +uint8_t x_78; +lean_dec(x_3); +lean_dec(x_2); +x_78 = !lean_is_exclusive(x_69); +if (x_78 == 0) +{ +return x_69; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_69, 0); +x_80 = lean_ctor_get(x_69, 1); lean_inc(x_80); lean_inc(x_79); -lean_inc(x_78); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_64); -x_82 = lean_ctor_get(x_3, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_82, 3); -lean_inc(x_83); -x_84 = lean_ctor_get(x_82, 4); -lean_inc(x_84); -lean_dec(x_82); -x_85 = lean_environment_main_module(x_65); -x_86 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_61); -lean_ctor_set(x_86, 2, x_83); -lean_ctor_set(x_86, 3, x_84); -x_87 = l___private_Lean_Elab_Match_4__expandMatchOptType(x_1, x_56, x_57, x_86, x_81); -lean_dec(x_86); -lean_dec(x_57); -lean_dec(x_56); -x_88 = lean_ctor_get(x_87, 0); -lean_inc(x_88); -x_89 = lean_ctor_get(x_87, 1); -lean_inc(x_89); -lean_dec(x_87); -x_90 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_90, 0, x_76); -lean_ctor_set(x_90, 1, x_77); -lean_ctor_set(x_90, 2, x_78); -lean_ctor_set(x_90, 3, x_79); -lean_ctor_set(x_90, 4, x_80); -lean_ctor_set(x_90, 5, x_89); -x_15 = x_88; -x_16 = x_90; -goto block_55; +lean_dec(x_69); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +return x_81; } } +block_68: +{ +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_7 = lean_unsigned_to_nat(1u); +x_8 = l_Lean_Syntax_getArg(x_1, x_7); +x_9 = l_Lean_Syntax_getArgs(x_8); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(2u); +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Array_empty___closed__1; +x_13 = l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(x_10, x_9, x_11, x_12); +lean_dec(x_9); +x_14 = x_13; +x_15 = l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__1(x_11, x_14); +x_16 = x_15; +x_17 = lean_array_get_size(x_16); +lean_inc(x_3); +x_18 = l___private_Lean_Elab_Match_5__elabMatchOptType(x_1, x_17, x_3, x_6); +lean_dec(x_17); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +x_21 = l___private_Lean_Elab_Match_8__getMatchAlts(x_1); +lean_inc(x_3); +x_22 = l_Lean_Elab_Term_expandMacrosInPatterns(x_21, x_3, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +lean_inc(x_3); +lean_inc(x_19); +x_25 = l___private_Lean_Elab_Match_7__elabDiscrs(x_1, x_16, x_19, x_5, x_3, x_24); +lean_dec(x_16); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec(x_25); +x_28 = x_23; +lean_inc(x_28); +lean_inc(x_19); +x_29 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__2), 5, 3); +lean_closure_set(x_29, 0, x_19); +lean_closure_set(x_29, 1, x_11); +lean_closure_set(x_29, 2, x_28); +x_30 = x_29; +lean_inc(x_3); +x_31 = lean_apply_2(x_30, x_3, x_27); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_32 = lean_ctor_get(x_31, 1); +lean_inc(x_32); +lean_dec(x_31); +x_33 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_33, 0, x_19); +x_34 = l___private_Lean_Elab_Match_23__elabMatchCore___closed__3; +x_35 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +x_36 = l___private_Lean_Elab_Match_23__elabMatchCore___closed__5; +x_37 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +x_38 = l_Lean_MessageData_coeOfArrayExpr___closed__2; +x_39 = l_Lean_MessageData_arrayExpr_toMessageData___main(x_26, x_11, x_38); +lean_dec(x_26); +x_40 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_40, 0, x_37); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_36); +x_42 = l_Array_umapMAux___main___at___private_Lean_Elab_Match_23__elabMatchCore___spec__3(x_11, x_28); +x_43 = x_42; +x_44 = l_Array_toList___rarg(x_43); +lean_dec(x_43); +x_45 = l_List_toString___at_Lean_MetavarContext_MkBinding_Exception_toString___spec__2(x_44); +x_46 = l_Array_HasRepr___rarg___closed__1; +x_47 = lean_string_append(x_46, x_45); +lean_dec(x_45); +x_48 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_48, 0, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +x_50 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_50, 0, x_41); +lean_ctor_set(x_50, 1, x_49); +x_51 = l_Lean_Elab_Term_throwError___rarg(x_1, x_50, x_3, x_32); +return x_51; +} else { -uint8_t x_91; -lean_dec(x_57); -lean_dec(x_56); -lean_dec(x_14); +uint8_t x_52; +lean_dec(x_28); +lean_dec(x_26); +lean_dec(x_19); lean_dec(x_3); -x_91 = !lean_is_exclusive(x_58); -if (x_91 == 0) +x_52 = !lean_is_exclusive(x_31); +if (x_52 == 0) { -return x_58; +return x_31; } else { -lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_92 = lean_ctor_get(x_58, 0); -x_93 = lean_ctor_get(x_58, 1); -lean_inc(x_93); -lean_inc(x_92); -lean_dec(x_58); -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_92); -lean_ctor_set(x_94, 1, x_93); -return x_94; +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_31, 0); +x_54 = lean_ctor_get(x_31, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_31); +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; } } -block_55: +} +else +{ +uint8_t x_56; +lean_dec(x_23); +lean_dec(x_19); +lean_dec(x_3); +x_56 = !lean_is_exclusive(x_25); +if (x_56 == 0) +{ +return x_25; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_25, 0); +x_58 = lean_ctor_get(x_25, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_25); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +return x_59; +} +} +} +else +{ +uint8_t x_60; +lean_dec(x_19); +lean_dec(x_16); +lean_dec(x_5); +lean_dec(x_3); +x_60 = !lean_is_exclusive(x_22); +if (x_60 == 0) +{ +return x_22; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_22, 0); +x_62 = lean_ctor_get(x_22, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_22); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +return x_63; +} +} +} +else +{ +uint8_t x_64; +lean_dec(x_16); +lean_dec(x_5); +lean_dec(x_3); +x_64 = !lean_is_exclusive(x_18); +if (x_64 == 0) +{ +return x_18; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_18, 0); +x_66 = lean_ctor_get(x_18, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_18); +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +return x_67; +} +} +} +} +} +lean_object* l___private_Lean_Elab_Match_23__elabMatchCore___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_23__elabMatchCore(x_1, x_2, x_3, x_4); +lean_dec(x_1); +return x_5; +} +} +lean_object* _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2; +x_2 = l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__5; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind___closed__2; +x_2 = l___private_Lean_Elab_Match_24__mkMatchType___main___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; +} +} +lean_object* _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_SourceInfo_inhabited___closed__1; +x_2 = l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__5; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_SourceInfo_inhabited___closed__1; +x_2 = l_Lean_setOptionFromString___closed__1; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__6; +x_2 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_array_get_size(x_1); +x_6 = lean_nat_dec_lt(x_2, x_5); +lean_dec(x_5); +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_add(x_4, x_7); +if (x_6 == 0) +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_9 = l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__5; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_3); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_12 = lean_ctor_get(x_3, 0); +x_13 = lean_ctor_get(x_3, 1); +lean_dec(x_13); +lean_inc(x_4); +lean_inc(x_12); +lean_ctor_set(x_3, 1, x_4); +x_14 = lean_array_fget(x_1, x_2); +x_15 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; +lean_inc(x_14); +x_16 = l_Lean_Syntax_isOfKind(x_14, x_15); +if (x_16 == 0) { lean_object* x_17; -lean_inc(x_3); -x_17 = l_Lean_Elab_Term_elabType(x_15, x_3, x_16); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); -lean_inc(x_19); -lean_dec(x_17); -x_20 = l___private_Lean_Elab_Match_5__getMatchAlts(x_1); -lean_inc(x_3); -x_21 = l_Lean_Elab_Term_expandMacrosInPatterns(x_20, x_3, x_19); -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec(x_21); -x_24 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_24, 0, x_18); -x_25 = l___private_Lean_Elab_Match_6__elabMatchCore___closed__3; -x_26 = lean_alloc_ctor(9, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_24); -x_27 = l___private_Lean_Elab_Match_6__elabMatchCore___closed__5; -x_28 = lean_alloc_ctor(9, 2, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -x_29 = l_Array_toList___rarg(x_14); lean_dec(x_14); -x_30 = l_List_toString___at___private_Lean_Elab_Match_6__elabMatchCore___spec__2(x_29); -x_31 = l_Array_HasRepr___rarg___closed__1; -x_32 = lean_string_append(x_31, x_30); -lean_dec(x_30); -x_33 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_33, 0, x_32); -x_34 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_34, 0, x_33); -x_35 = lean_alloc_ctor(9, 2, 0); -lean_ctor_set(x_35, 0, x_28); -lean_ctor_set(x_35, 1, x_34); -x_36 = lean_alloc_ctor(9, 2, 0); +lean_dec(x_12); +lean_dec(x_4); +x_17 = lean_nat_add(x_2, x_7); +lean_dec(x_2); +x_2 = x_17; +x_4 = x_8; +goto _start; +} +else +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_nat_add(x_2, x_7); +lean_dec(x_2); +x_20 = l___private_Lean_Elab_Match_24__mkMatchType___main(x_1, x_19, x_3, x_8); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_unsigned_to_nat(0u); +x_24 = l_Lean_Syntax_getArg(x_14, x_23); +x_25 = l_Lean_Syntax_isNone(x_24); +lean_dec(x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_26 = l_Lean_Syntax_getArg(x_14, x_7); +lean_dec(x_14); +x_27 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_28 = l_Lean_addMacroScope(x_12, x_27, x_4); +x_29 = lean_box(0); +x_30 = l_Lean_SourceInfo_inhabited___closed__1; +x_31 = l___private_Lean_Elab_Match_17__collect___main___closed__13; +x_32 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +lean_ctor_set(x_32, 2, x_28); +lean_ctor_set(x_32, 3, x_29); +x_33 = l_Array_empty___closed__1; +x_34 = lean_array_push(x_33, x_32); +x_35 = l_Lean_nullKind___closed__2; +lean_inc(x_34); +x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_27); -x_37 = x_22; -x_38 = l_Array_umapMAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__4(x_9, x_37); -x_39 = x_38; -x_40 = l_Array_toList___rarg(x_39); -lean_dec(x_39); -x_41 = l_List_toString___at_Lean_MetavarContext_MkBinding_Exception_toString___spec__2(x_40); -x_42 = lean_string_append(x_31, x_41); -lean_dec(x_41); -x_43 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_36, 1, x_34); +x_37 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__4; +x_38 = lean_array_push(x_37, x_36); +x_39 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__2; +x_40 = lean_array_push(x_38, x_39); +x_41 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_42 = lean_array_push(x_40, x_41); +x_43 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__6; +x_44 = lean_array_push(x_42, x_43); +x_45 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_44); +x_47 = lean_array_push(x_33, x_46); +x_48 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3; +x_49 = lean_array_push(x_47, x_48); +x_50 = lean_array_push(x_34, x_41); +x_51 = l_Lean_mkTermIdFromIdent___closed__2; +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +x_53 = lean_array_push(x_33, x_52); +x_54 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__4; +x_55 = lean_array_push(x_53, x_54); +x_56 = lean_array_push(x_55, x_26); +x_57 = l_Lean_Parser_Term_eq___elambda__1___closed__2; +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +x_59 = lean_array_push(x_33, x_58); +x_60 = lean_array_push(x_59, x_48); +x_61 = lean_array_push(x_60, x_22); +x_62 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_array_push(x_49, x_63); +x_65 = l_Lean_Parser_Term_depArrow___elambda__1___closed__2; +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_64); +lean_ctor_set(x_20, 0, x_66); +return x_20; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +lean_dec(x_14); +lean_dec(x_12); +lean_dec(x_4); +x_67 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__5; +x_68 = lean_array_push(x_67, x_22); +x_69 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_68); +lean_ctor_set(x_20, 0, x_70); +return x_20; +} +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; +x_71 = lean_ctor_get(x_20, 0); +x_72 = lean_ctor_get(x_20, 1); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_20); +x_73 = lean_unsigned_to_nat(0u); +x_74 = l_Lean_Syntax_getArg(x_14, x_73); +x_75 = l_Lean_Syntax_isNone(x_74); +lean_dec(x_74); +if (x_75 == 0) +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_76 = l_Lean_Syntax_getArg(x_14, x_7); +lean_dec(x_14); +x_77 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_78 = l_Lean_addMacroScope(x_12, x_77, x_4); +x_79 = lean_box(0); +x_80 = l_Lean_SourceInfo_inhabited___closed__1; +x_81 = l___private_Lean_Elab_Match_17__collect___main___closed__13; +x_82 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +lean_ctor_set(x_82, 2, x_78); +lean_ctor_set(x_82, 3, x_79); +x_83 = l_Array_empty___closed__1; +x_84 = lean_array_push(x_83, x_82); +x_85 = l_Lean_nullKind___closed__2; +lean_inc(x_84); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_84); +x_87 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__4; +x_88 = lean_array_push(x_87, x_86); +x_89 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__2; +x_90 = lean_array_push(x_88, x_89); +x_91 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_92 = lean_array_push(x_90, x_91); +x_93 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__6; +x_94 = lean_array_push(x_92, x_93); +x_95 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_94); +x_97 = lean_array_push(x_83, x_96); +x_98 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3; +x_99 = lean_array_push(x_97, x_98); +x_100 = lean_array_push(x_84, x_91); +x_101 = l_Lean_mkTermIdFromIdent___closed__2; +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_100); +x_103 = lean_array_push(x_83, x_102); +x_104 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__4; +x_105 = lean_array_push(x_103, x_104); +x_106 = lean_array_push(x_105, x_76); +x_107 = l_Lean_Parser_Term_eq___elambda__1___closed__2; +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_106); +x_109 = lean_array_push(x_83, x_108); +x_110 = lean_array_push(x_109, x_98); +x_111 = lean_array_push(x_110, x_71); +x_112 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_112); +lean_ctor_set(x_113, 1, x_111); +x_114 = lean_array_push(x_99, x_113); +x_115 = l_Lean_Parser_Term_depArrow___elambda__1___closed__2; +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_115); +lean_ctor_set(x_116, 1, x_114); +x_117 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_117, 0, x_116); +lean_ctor_set(x_117, 1, x_72); +return x_117; +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +lean_dec(x_14); +lean_dec(x_12); +lean_dec(x_4); +x_118 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__5; +x_119 = lean_array_push(x_118, x_71); +x_120 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_119); +x_122 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_122, 0, x_121); +lean_ctor_set(x_122, 1, x_72); +return x_122; +} +} +} +} +else +{ +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; +x_123 = lean_ctor_get(x_3, 0); +x_124 = lean_ctor_get(x_3, 2); +x_125 = lean_ctor_get(x_3, 3); +lean_inc(x_125); +lean_inc(x_124); +lean_inc(x_123); +lean_dec(x_3); +lean_inc(x_4); +lean_inc(x_123); +x_126 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_126, 0, x_123); +lean_ctor_set(x_126, 1, x_4); +lean_ctor_set(x_126, 2, x_124); +lean_ctor_set(x_126, 3, x_125); +x_127 = lean_array_fget(x_1, x_2); +x_128 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; +lean_inc(x_127); +x_129 = l_Lean_Syntax_isOfKind(x_127, x_128); +if (x_129 == 0) +{ +lean_object* x_130; +lean_dec(x_127); +lean_dec(x_123); +lean_dec(x_4); +x_130 = lean_nat_add(x_2, x_7); +lean_dec(x_2); +x_2 = x_130; +x_3 = x_126; +x_4 = x_8; +goto _start; +} +else +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; +x_132 = lean_nat_add(x_2, x_7); +lean_dec(x_2); +x_133 = l___private_Lean_Elab_Match_24__mkMatchType___main(x_1, x_132, x_126, x_8); +x_134 = lean_ctor_get(x_133, 0); +lean_inc(x_134); +x_135 = lean_ctor_get(x_133, 1); +lean_inc(x_135); +if (lean_is_exclusive(x_133)) { + lean_ctor_release(x_133, 0); + lean_ctor_release(x_133, 1); + x_136 = x_133; +} else { + lean_dec_ref(x_133); + x_136 = lean_box(0); +} +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Lean_Syntax_getArg(x_127, x_137); +x_139 = l_Lean_Syntax_isNone(x_138); +lean_dec(x_138); +if (x_139 == 0) +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_140 = l_Lean_Syntax_getArg(x_127, x_7); +lean_dec(x_127); +x_141 = l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; +x_142 = l_Lean_addMacroScope(x_123, x_141, x_4); +x_143 = lean_box(0); +x_144 = l_Lean_SourceInfo_inhabited___closed__1; +x_145 = l___private_Lean_Elab_Match_17__collect___main___closed__13; +x_146 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_146, 0, x_144); +lean_ctor_set(x_146, 1, x_145); +lean_ctor_set(x_146, 2, x_142); +lean_ctor_set(x_146, 3, x_143); +x_147 = l_Array_empty___closed__1; +x_148 = lean_array_push(x_147, x_146); +x_149 = l_Lean_nullKind___closed__2; +lean_inc(x_148); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_148); +x_151 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__4; +x_152 = lean_array_push(x_151, x_150); +x_153 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__2; +x_154 = lean_array_push(x_152, x_153); +x_155 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_156 = lean_array_push(x_154, x_155); +x_157 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__6; +x_158 = lean_array_push(x_156, x_157); +x_159 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_159); +lean_ctor_set(x_160, 1, x_158); +x_161 = lean_array_push(x_147, x_160); +x_162 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3; +x_163 = lean_array_push(x_161, x_162); +x_164 = lean_array_push(x_148, x_155); +x_165 = l_Lean_mkTermIdFromIdent___closed__2; +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_165); +lean_ctor_set(x_166, 1, x_164); +x_167 = lean_array_push(x_147, x_166); +x_168 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__4; +x_169 = lean_array_push(x_167, x_168); +x_170 = lean_array_push(x_169, x_140); +x_171 = l_Lean_Parser_Term_eq___elambda__1___closed__2; +x_172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_170); +x_173 = lean_array_push(x_147, x_172); +x_174 = lean_array_push(x_173, x_162); +x_175 = lean_array_push(x_174, x_134); +x_176 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_176); +lean_ctor_set(x_177, 1, x_175); +x_178 = lean_array_push(x_163, x_177); +x_179 = l_Lean_Parser_Term_depArrow___elambda__1___closed__2; +x_180 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_180, 0, x_179); +lean_ctor_set(x_180, 1, x_178); +if (lean_is_scalar(x_136)) { + x_181 = lean_alloc_ctor(0, 2, 0); +} else { + x_181 = x_136; +} +lean_ctor_set(x_181, 0, x_180); +lean_ctor_set(x_181, 1, x_135); +return x_181; +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +lean_dec(x_127); +lean_dec(x_123); +lean_dec(x_4); +x_182 = l___private_Lean_Elab_Match_24__mkMatchType___main___closed__5; +x_183 = lean_array_push(x_182, x_134); +x_184 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_184); +lean_ctor_set(x_185, 1, x_183); +if (lean_is_scalar(x_136)) { + x_186 = lean_alloc_ctor(0, 2, 0); +} else { + x_186 = x_136; +} +lean_ctor_set(x_186, 0, x_185); +lean_ctor_set(x_186, 1, x_135); +return x_186; +} +} +} +} +} +} +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_24__mkMatchType___main(x_1, x_2, x_3, x_4); +lean_dec(x_1); +return x_5; +} +} +lean_object* l___private_Lean_Elab_Match_24__mkMatchType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_24__mkMatchType___main(x_1, x_2, x_3, x_4); +return x_5; +} +} +lean_object* l___private_Lean_Elab_Match_24__mkMatchType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_24__mkMatchType(x_1, x_2, x_3, x_4); +lean_dec(x_1); +return x_5; +} +} +lean_object* l___private_Lean_Elab_Match_25__mkOptType(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_2 = l_List_reprAux___main___rarg___closed__1; +x_3 = l_Lean_mkAtomFrom(x_1, x_2); +x_4 = l_Lean_mkAppStx___closed__9; +x_5 = lean_array_push(x_4, x_3); +x_6 = lean_array_push(x_5, x_1); +x_7 = l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; +x_8 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +x_9 = l_Lean_mkOptionalNode___closed__2; +x_10 = lean_array_push(x_9, x_8); +x_11 = l_Lean_nullKind; +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +} +lean_object* _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Eq.refl"); +return x_1; +} +} +lean_object* _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_mkEqRefl___closed__2; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_mkAppStx___closed__9; +x_2 = l_Lean_mkOptionalNode___closed__1; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_1); +x_7 = lean_nat_dec_lt(x_2, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_4); +lean_dec(x_2); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_3); +lean_ctor_set(x_8, 1, x_5); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_array_fget(x_1, x_2); +x_10 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; +lean_inc(x_9); +x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_add(x_2, x_12); +lean_dec(x_2); +x_14 = lean_array_push(x_3, x_9); +x_2 = x_13; +x_3 = x_14; +goto _start; +} +else +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = lean_unsigned_to_nat(0u); +x_17 = l_Lean_Syntax_getArg(x_9, x_16); +x_18 = l_Lean_Syntax_isNone(x_17); +lean_dec(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_19 = l_Lean_mkOptionalNode___closed__1; +lean_inc(x_9); +x_20 = l_Lean_Syntax_setArg(x_9, x_16, x_19); +x_21 = lean_array_push(x_3, x_20); +x_22 = l_List_reprAux___main___rarg___closed__1; +x_23 = l_Lean_mkAtomFrom(x_9, x_22); +lean_dec(x_9); +x_24 = lean_array_push(x_21, x_23); +x_25 = lean_ctor_get(x_4, 1); +lean_inc(x_25); +x_26 = lean_ctor_get(x_4, 0); +lean_inc(x_26); +x_27 = l_Lean_Meta_mkEqRefl___closed__2; +x_28 = l_Lean_addMacroScope(x_26, x_27, x_25); +x_29 = l_Lean_SourceInfo_inhabited___closed__1; +x_30 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__3; +x_31 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__5; +x_32 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_32, 0, x_29); +lean_ctor_set(x_32, 1, x_30); +lean_ctor_set(x_32, 2, x_28); +lean_ctor_set(x_32, 3, x_31); +x_33 = l_Array_empty___closed__1; +x_34 = lean_array_push(x_33, x_32); +x_35 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_36 = lean_array_push(x_34, x_35); +x_37 = l_Lean_mkTermIdFromIdent___closed__2; +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_36); +x_39 = lean_array_push(x_33, x_38); +x_40 = l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__7; +x_41 = lean_array_push(x_39, x_40); +x_42 = l_Lean_mkAppStx___closed__8; +x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -x_45 = lean_alloc_ctor(9, 2, 0); -lean_ctor_set(x_45, 0, x_36); -lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_Elab_Term_throwError___rarg(x_1, x_45, x_3, x_23); +lean_ctor_set(x_43, 1, x_41); +x_44 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__6; +x_45 = lean_array_push(x_44, x_43); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_10); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_array_push(x_24, x_46); +x_48 = lean_unsigned_to_nat(1u); +x_49 = lean_nat_add(x_2, x_48); +lean_dec(x_2); +x_2 = x_49; +x_3 = x_47; +goto _start; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_unsigned_to_nat(1u); +x_52 = lean_nat_add(x_2, x_51); +lean_dec(x_2); +x_53 = lean_array_push(x_3, x_9); +x_2 = x_52; +x_3 = x_53; +goto _start; +} +} +} +} +} +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +lean_object* l___private_Lean_Elab_Match_26__mkNewDiscrs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Elab_Match_26__mkNewDiscrs(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +lean_object* _init_l___private_Lean_Elab_Match_27__mkNewPatterns___main___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid number of patterns, expected #"); +return x_1; +} +} +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_array_get_size(x_2); +x_9 = lean_nat_dec_lt(x_4, x_8); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_8); +lean_dec(x_4); +lean_dec(x_1); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_7); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_11 = lean_array_fget(x_2, x_4); +x_12 = lean_array_get_size(x_3); +x_13 = lean_nat_dec_lt(x_4, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +x_14 = l_Nat_repr(x_8); +x_15 = l___private_Lean_Elab_Match_27__mkNewPatterns___main___closed__1; +x_16 = lean_string_append(x_15, x_14); +lean_dec(x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_7); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +lean_dec(x_8); +x_19 = lean_array_fget(x_3, x_4); +x_20 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; +lean_inc(x_11); +x_21 = l_Lean_Syntax_isOfKind(x_11, x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +lean_dec(x_11); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_4, x_22); +lean_dec(x_4); +x_24 = lean_array_push(x_5, x_19); +x_4 = x_23; +x_5 = x_24; +goto _start; +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_unsigned_to_nat(0u); +x_27 = l_Lean_Syntax_getArg(x_11, x_26); +lean_dec(x_11); +x_28 = l_Lean_Syntax_isNone(x_27); +if (x_28 == 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; lean_object* x_36; lean_object* x_37; +lean_inc(x_19); +x_29 = lean_array_push(x_5, x_19); +x_30 = l_List_reprAux___main___rarg___closed__1; +x_31 = l_Lean_mkAtomFrom(x_19, x_30); +lean_dec(x_19); +x_32 = lean_array_push(x_29, x_31); +x_33 = l_Lean_Syntax_getArg(x_27, x_26); +lean_dec(x_27); +x_34 = l_Lean_mkTermIdFromIdent(x_33); +x_35 = lean_array_push(x_32, x_34); +x_36 = lean_unsigned_to_nat(1u); +x_37 = lean_nat_add(x_4, x_36); +lean_dec(x_4); +x_4 = x_37; +x_5 = x_35; +goto _start; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_27); +x_39 = lean_unsigned_to_nat(1u); +x_40 = lean_nat_add(x_4, x_39); +lean_dec(x_4); +x_41 = lean_array_push(x_5, x_19); +x_4 = x_40; +x_5 = x_41; +goto _start; +} +} +} +} +} +} +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Elab_Match_27__mkNewPatterns___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Elab_Match_27__mkNewPatterns___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +lean_object* l___private_Lean_Elab_Match_27__mkNewPatterns___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Elab_Match_27__mkNewPatterns(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +lean_object* l___private_Lean_Elab_Match_28__mkNewAlt(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; +x_5 = lean_unsigned_to_nat(0u); +x_6 = l_Lean_Syntax_getArg(x_2, x_5); +x_7 = l_Lean_Syntax_getArgs(x_6); +lean_dec(x_6); +x_8 = l_Array_empty___closed__1; +lean_inc(x_2); +x_9 = l___private_Lean_Elab_Match_27__mkNewPatterns___main(x_2, x_1, x_7, x_5, x_8, x_3, x_4); +lean_dec(x_7); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_9, 0); +x_12 = l_Lean_nullKind; +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_11); +x_14 = l_Lean_Syntax_setArg(x_2, x_5, x_13); +lean_ctor_set(x_9, 0, x_14); +return x_9; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_15 = lean_ctor_get(x_9, 0); +x_16 = lean_ctor_get(x_9, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_9); +x_17 = l_Lean_nullKind; +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_15); +x_19 = l_Lean_Syntax_setArg(x_2, x_5, x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_16); +return x_20; +} +} +else +{ +uint8_t x_21; +lean_dec(x_2); +x_21 = !lean_is_exclusive(x_9); +if (x_21 == 0) +{ +return x_9; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_9, 0); +x_23 = lean_ctor_get(x_9, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_9); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} +lean_object* l___private_Lean_Elab_Match_28__mkNewAlt___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_28__mkNewAlt(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_5; +} +} +lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_29__mkNewAlts___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_get_size(x_1); +x_8 = lean_nat_dec_lt(x_3, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_4); +lean_ctor_set(x_9, 1, x_6); +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_array_fget(x_1, x_3); +x_11 = lean_unsigned_to_nat(2u); +x_12 = lean_nat_mod(x_3, x_11); +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) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_add(x_3, x_15); +lean_dec(x_3); +x_17 = lean_array_push(x_4, x_10); +x_3 = x_16; +x_4 = x_17; +goto _start; +} +else +{ +lean_object* x_19; +lean_inc(x_2); +lean_inc(x_5); +x_19 = lean_apply_3(x_2, x_10, x_5, x_6); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_3, x_22); +lean_dec(x_3); +x_24 = lean_array_push(x_4, x_20); +x_3 = x_23; +x_4 = x_24; +x_6 = x_21; +goto _start; +} +else +{ +uint8_t x_26; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_26 = !lean_is_exclusive(x_19); +if (x_26 == 0) +{ +return x_19; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_19, 0); +x_28 = lean_ctor_get(x_19, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_19); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +} +} +} +} +lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Match_29__mkNewAlts___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_unsigned_to_nat(0u); +x_6 = l_Array_empty___closed__1; +x_7 = l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_29__mkNewAlts___spec__2(x_1, x_2, x_5, x_6, x_3, x_4); +return x_7; +} +} +lean_object* l___private_Lean_Elab_Match_29__mkNewAlts(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 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_28__mkNewAlt___boxed), 4, 1); +lean_closure_set(x_5, 0, x_1); +x_6 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_29__mkNewAlts___spec__1(x_2, x_5, x_3, x_4); +return x_6; +} +} +lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_29__mkNewAlts___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Init_LeanInit_14__mapSepElemsMAux___main___at___private_Lean_Elab_Match_29__mkNewAlts___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} +lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Match_29__mkNewAlts___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Array_mapSepElemsM___at___private_Lean_Elab_Match_29__mkNewAlts___spec__1(x_1, x_2, x_3, x_4); +lean_dec(x_1); +return x_5; +} +} +lean_object* l___private_Lean_Elab_Match_29__mkNewAlts___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Match_29__mkNewAlts(x_1, x_2, x_3, x_4); +lean_dec(x_2); +return x_5; +} +} +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_nat_dec_lt(x_4, x_3); +if (x_5 == 0) +{ +uint8_t x_6; +lean_dec(x_4); +x_6 = 0; +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_7 = lean_array_fget(x_2, x_4); +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_Syntax_isNone(x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +uint8_t x_11; +lean_dec(x_4); +x_11 = 1; +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_add(x_4, x_12); +lean_dec(x_4); +x_4 = x_13; +goto _start; +} +} +} +} +lean_object* _init_l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("match expected type should not be provided when discriminants with equality proofs are used"); +return x_1; +} +} +lean_object* l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(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; +x_4 = lean_unsigned_to_nat(1u); +x_5 = l_Lean_Syntax_getArg(x_1, x_4); +x_6 = l_Lean_Syntax_getArgs(x_5); +lean_dec(x_5); +x_7 = lean_unsigned_to_nat(2u); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Array_empty___closed__1; +x_10 = l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(x_7, x_6, x_8, x_9); +x_11 = lean_array_get_size(x_10); +x_12 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___spec__1(x_1, x_10, x_11, x_8); +lean_dec(x_11); +lean_dec(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_13 = lean_box(0); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_3); +return x_14; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = l_Lean_Syntax_getArg(x_1, x_7); +x_16 = l_Lean_Syntax_isNone(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_17 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___closed__1; +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_3); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_15); +lean_inc(x_2); +x_20 = l___private_Lean_Elab_Match_24__mkMatchType___main(x_6, x_8, x_2, x_3); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = l_Lean_Syntax_copyInfo(x_21, x_1); +x_24 = l___private_Lean_Elab_Match_25__mkOptType(x_23); +x_25 = l_Lean_Syntax_setArg(x_1, x_7, x_24); +lean_inc(x_2); +x_26 = l___private_Lean_Elab_Match_26__mkNewDiscrs___main(x_6, x_8, x_9, x_2, x_22); +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_nullKind; +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_27); +x_31 = l_Lean_Syntax_setArg(x_25, x_4, x_30); +x_32 = lean_unsigned_to_nat(5u); +x_33 = l_Lean_Syntax_getArg(x_31, x_32); +x_34 = l_Lean_Syntax_getArgs(x_33); +lean_dec(x_33); +x_35 = l___private_Lean_Elab_Match_29__mkNewAlts(x_6, x_34, x_2, x_28); +lean_dec(x_34); +if (lean_obj_tag(x_35) == 0) +{ +uint8_t x_36; +x_36 = !lean_is_exclusive(x_35); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_37 = lean_ctor_get(x_35, 0); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_29); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_Syntax_setArg(x_31, x_32, x_38); +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_35, 0, x_40); +return x_35; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_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_29); +lean_ctor_set(x_43, 1, x_41); +x_44 = l_Lean_Syntax_setArg(x_31, x_32, x_43); +x_45 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_45, 0, 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_42); return x_46; } +} else { uint8_t x_47; -lean_dec(x_18); -lean_dec(x_14); -lean_dec(x_3); -x_47 = !lean_is_exclusive(x_21); +lean_dec(x_31); +x_47 = !lean_is_exclusive(x_35); if (x_47 == 0) { -return x_21; +return x_35; } else { lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_21, 0); -x_49 = lean_ctor_get(x_21, 1); +x_48 = lean_ctor_get(x_35, 0); +x_49 = lean_ctor_get(x_35, 1); lean_inc(x_49); lean_inc(x_48); -lean_dec(x_21); +lean_dec(x_35); x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_48); lean_ctor_set(x_50, 1, x_49); @@ -1808,2522 +19494,2630 @@ return x_50; } } } -else +} +} +} +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: { -uint8_t x_51; -lean_dec(x_14); +uint8_t x_5; lean_object* x_6; +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); -x_51 = !lean_is_exclusive(x_17); -if (x_51 == 0) -{ -return x_17; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_17, 0); -x_53 = lean_ctor_get(x_17, 1); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_17); -x_54 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -return x_54; -} -} -} -} -} -lean_object* l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__3___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = lean_unbox(x_1); -lean_dec(x_1); -x_4 = l_List_toStringAux___main___at___private_Lean_Elab_Match_6__elabMatchCore___spec__3(x_3, x_2); -return x_4; -} -} -lean_object* l___private_Lean_Elab_Match_6__elabMatchCore___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l___private_Lean_Elab_Match_6__elabMatchCore(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); -return x_5; -} -} -lean_object* l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = lean_box(0); -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -lean_object* l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg), 1, 0); -return x_3; -} -} -lean_object* l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; +x_6 = lean_box(x_5); +return x_6; } } lean_object* l_Lean_Elab_Term_elabMatch(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; uint8_t x_9; lean_object* x_906; uint8_t x_907; -x_906 = l_Lean_Parser_Term_match___elambda__1___closed__1; +lean_object* x_5; lean_object* x_6; uint8_t x_34; lean_object* x_1763; uint8_t x_1764; +x_1763 = l_Lean_Parser_Term_match___elambda__1___closed__1; lean_inc(x_1); -x_907 = l_Lean_Syntax_isOfKind(x_1, x_906); -if (x_907 == 0) +x_1764 = l_Lean_Syntax_isOfKind(x_1, x_1763); +if (x_1764 == 0) { -uint8_t x_908; -x_908 = 0; -x_9 = x_908; -goto block_905; +uint8_t x_1765; +x_1765 = 0; +x_34 = x_1765; +goto block_1762; } else { -lean_object* x_909; lean_object* x_910; lean_object* x_911; uint8_t x_912; -x_909 = l_Lean_Syntax_getArgs(x_1); -x_910 = lean_array_get_size(x_909); -lean_dec(x_909); -x_911 = lean_unsigned_to_nat(6u); -x_912 = lean_nat_dec_eq(x_910, x_911); -lean_dec(x_910); -x_9 = x_912; -goto block_905; +lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; uint8_t x_1769; +x_1766 = l_Lean_Syntax_getArgs(x_1); +x_1767 = lean_array_get_size(x_1766); +lean_dec(x_1766); +x_1768 = lean_unsigned_to_nat(6u); +x_1769 = lean_nat_dec_eq(x_1767, x_1768); +lean_dec(x_1767); +x_34 = x_1769; +goto block_1762; } -block_8: +block_33: +{ +if (lean_obj_tag(x_5) == 0) { lean_object* x_7; -lean_dec(x_5); -x_7 = l___private_Lean_Elab_Match_6__elabMatchCore(x_1, x_2, x_3, x_6); -lean_dec(x_2); +x_7 = l___private_Lean_Elab_Match_23__elabMatchCore(x_1, x_2, x_3, x_6); lean_dec(x_1); return x_7; } -block_905: +else { +lean_object* x_8; uint8_t x_9; +x_8 = lean_ctor_get(x_5, 0); +lean_inc(x_8); +lean_dec(x_5); +x_9 = !lean_is_exclusive(x_3); if (x_9 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_10 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_11 = lean_ctor_get(x_10, 1); -lean_inc(x_11); -lean_dec(x_10); -x_12 = l_Lean_Elab_Term_getEnv___rarg(x_11); -x_13 = lean_ctor_get(x_12, 1); -lean_inc(x_13); -lean_dec(x_12); -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = lean_ctor_get(x_13, 5); -x_16 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_15); -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -lean_ctor_set(x_13, 5, x_18); -x_5 = x_17; -x_6 = x_13; -goto block_8; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_3, 8); +lean_inc(x_8); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_8); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +lean_ctor_set(x_3, 8, x_12); +x_13 = 1; +x_14 = l_Lean_Elab_Term_elabTermAux___main(x_2, x_13, x_13, x_8, x_3, x_6); +return x_14; } else { -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; -x_19 = lean_ctor_get(x_13, 0); -x_20 = lean_ctor_get(x_13, 1); -x_21 = lean_ctor_get(x_13, 2); -x_22 = lean_ctor_get(x_13, 3); -x_23 = lean_ctor_get(x_13, 4); -x_24 = lean_ctor_get(x_13, 5); +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; uint8_t x_25; uint8_t x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_32; +x_15 = lean_ctor_get(x_3, 0); +x_16 = lean_ctor_get(x_3, 1); +x_17 = lean_ctor_get(x_3, 2); +x_18 = lean_ctor_get(x_3, 3); +x_19 = lean_ctor_get(x_3, 4); +x_20 = lean_ctor_get(x_3, 5); +x_21 = lean_ctor_get(x_3, 6); +x_22 = lean_ctor_get(x_3, 7); +x_23 = lean_ctor_get(x_3, 8); +x_24 = lean_ctor_get(x_3, 9); +x_25 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +x_26 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 1); +x_27 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 2); lean_inc(x_24); lean_inc(x_23); lean_inc(x_22); lean_inc(x_21); lean_inc(x_20); lean_inc(x_19); -lean_dec(x_13); -x_25 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_24); -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_25, 1); -lean_inc(x_27); -lean_dec(x_25); -x_28 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_28, 0, x_19); -lean_ctor_set(x_28, 1, x_20); -lean_ctor_set(x_28, 2, x_21); -lean_ctor_set(x_28, 3, x_22); -lean_ctor_set(x_28, 4, x_23); -lean_ctor_set(x_28, 5, x_27); -x_5 = x_26; -x_6 = x_28; -goto block_8; +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_3); +lean_inc(x_8); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_1); +lean_ctor_set(x_28, 1, x_8); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_23); +x_30 = lean_alloc_ctor(0, 10, 3); +lean_ctor_set(x_30, 0, x_15); +lean_ctor_set(x_30, 1, x_16); +lean_ctor_set(x_30, 2, x_17); +lean_ctor_set(x_30, 3, x_18); +lean_ctor_set(x_30, 4, x_19); +lean_ctor_set(x_30, 5, x_20); +lean_ctor_set(x_30, 6, x_21); +lean_ctor_set(x_30, 7, x_22); +lean_ctor_set(x_30, 8, x_29); +lean_ctor_set(x_30, 9, x_24); +lean_ctor_set_uint8(x_30, sizeof(void*)*10, x_25); +lean_ctor_set_uint8(x_30, sizeof(void*)*10 + 1, x_26); +lean_ctor_set_uint8(x_30, sizeof(void*)*10 + 2, x_27); +x_31 = 1; +x_32 = l_Lean_Elab_Term_elabTermAux___main(x_2, x_31, x_31, x_8, x_30, x_6); +return x_32; } } -else -{ -lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_899; uint8_t x_900; -x_29 = lean_unsigned_to_nat(1u); -x_30 = l_Lean_Syntax_getArg(x_1, x_29); -x_899 = l_Lean_nullKind___closed__2; -lean_inc(x_30); -x_900 = l_Lean_Syntax_isOfKind(x_30, x_899); -if (x_900 == 0) -{ -uint8_t x_901; -x_901 = 0; -x_31 = x_901; -goto block_898; } -else +block_1762: { -lean_object* x_902; lean_object* x_903; uint8_t x_904; -x_902 = l_Lean_Syntax_getArgs(x_30); -x_903 = lean_array_get_size(x_902); -lean_dec(x_902); -x_904 = lean_nat_dec_eq(x_903, x_29); -lean_dec(x_903); -x_31 = x_904; -goto block_898; -} -block_898: +if (x_34 == 0) { -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; -lean_dec(x_30); -x_32 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_33 = lean_ctor_get(x_32, 1); -lean_inc(x_33); -lean_dec(x_32); -x_34 = l_Lean_Elab_Term_getEnv___rarg(x_33); -x_35 = lean_ctor_get(x_34, 1); -lean_inc(x_35); -lean_dec(x_34); -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_37 = lean_ctor_get(x_35, 5); -x_38 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_37); -x_39 = lean_ctor_get(x_38, 0); +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_35 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_35, 1); +lean_inc(x_37); +lean_dec(x_35); +x_38 = l_Lean_Elab_Term_getEnv___rarg(x_37); +x_39 = lean_ctor_get(x_38, 1); lean_inc(x_39); -x_40 = lean_ctor_get(x_38, 1); +x_40 = lean_ctor_get(x_38, 0); lean_inc(x_40); lean_dec(x_38); -lean_ctor_set(x_35, 5, x_40); -x_5 = x_39; -x_6 = x_35; -goto block_8; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -x_43 = lean_ctor_get(x_35, 2); -x_44 = lean_ctor_get(x_35, 3); -x_45 = lean_ctor_get(x_35, 4); -x_46 = lean_ctor_get(x_35, 5); -lean_inc(x_46); -lean_inc(x_45); -lean_inc(x_44); -lean_inc(x_43); -lean_inc(x_42); +x_41 = lean_ctor_get(x_39, 0); lean_inc(x_41); -lean_dec(x_35); -x_47 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_46); -x_48 = lean_ctor_get(x_47, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +x_43 = lean_ctor_get(x_39, 2); +lean_inc(x_43); +x_44 = lean_ctor_get(x_39, 3); +lean_inc(x_44); +x_45 = lean_ctor_get(x_39, 4); +lean_inc(x_45); +x_46 = lean_ctor_get(x_39, 5); +lean_inc(x_46); +x_47 = lean_ctor_get(x_3, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_47, 3); lean_inc(x_48); -x_49 = lean_ctor_get(x_47, 1); +x_49 = lean_ctor_get(x_47, 4); lean_inc(x_49); lean_dec(x_47); -x_50 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_50, 0, x_41); -lean_ctor_set(x_50, 1, x_42); -lean_ctor_set(x_50, 2, x_43); -lean_ctor_set(x_50, 3, x_44); -lean_ctor_set(x_50, 4, x_45); -lean_ctor_set(x_50, 5, x_49); -x_5 = x_48; -x_6 = x_50; -goto block_8; -} -} -else -{ -lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_891; uint8_t x_892; -x_51 = lean_unsigned_to_nat(0u); -x_52 = l_Lean_Syntax_getArg(x_30, x_51); -lean_dec(x_30); -x_891 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; -lean_inc(x_52); -x_892 = l_Lean_Syntax_isOfKind(x_52, x_891); -if (x_892 == 0) -{ -uint8_t x_893; -x_893 = 0; -x_53 = x_893; -goto block_890; -} -else -{ -lean_object* x_894; lean_object* x_895; lean_object* x_896; uint8_t x_897; -x_894 = l_Lean_Syntax_getArgs(x_52); -x_895 = lean_array_get_size(x_894); -lean_dec(x_894); -x_896 = lean_unsigned_to_nat(2u); -x_897 = lean_nat_dec_eq(x_895, x_896); -lean_dec(x_895); -x_53 = x_897; -goto block_890; -} -block_890: +x_50 = lean_environment_main_module(x_40); +x_51 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_36); +lean_ctor_set(x_51, 2, x_48); +lean_ctor_set(x_51, 3, x_49); +lean_inc(x_1); +x_52 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_51, x_46); +if (lean_obj_tag(x_52) == 0) { +uint8_t x_53; +x_53 = !lean_is_exclusive(x_39); if (x_53 == 0) { -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; -lean_dec(x_52); -x_54 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_55 = lean_ctor_get(x_54, 1); -lean_inc(x_55); +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_54 = lean_ctor_get(x_39, 5); lean_dec(x_54); -x_56 = l_Lean_Elab_Term_getEnv___rarg(x_55); -x_57 = lean_ctor_get(x_56, 1); -lean_inc(x_57); +x_55 = lean_ctor_get(x_39, 4); +lean_dec(x_55); +x_56 = lean_ctor_get(x_39, 3); lean_dec(x_56); -x_58 = !lean_is_exclusive(x_57); -if (x_58 == 0) -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_57, 5); -x_60 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_59); -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_60, 1); -lean_inc(x_62); -lean_dec(x_60); -lean_ctor_set(x_57, 5, x_62); -x_5 = x_61; -x_6 = x_57; -goto block_8; -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; -x_63 = lean_ctor_get(x_57, 0); -x_64 = lean_ctor_get(x_57, 1); -x_65 = lean_ctor_get(x_57, 2); -x_66 = lean_ctor_get(x_57, 3); -x_67 = lean_ctor_get(x_57, 4); -x_68 = lean_ctor_get(x_57, 5); -lean_inc(x_68); -lean_inc(x_67); -lean_inc(x_66); -lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); +x_57 = lean_ctor_get(x_39, 2); lean_dec(x_57); -x_69 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_68); -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_69, 1); -lean_inc(x_71); -lean_dec(x_69); -x_72 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_72, 0, x_63); -lean_ctor_set(x_72, 1, x_64); -lean_ctor_set(x_72, 2, x_65); -lean_ctor_set(x_72, 3, x_66); -lean_ctor_set(x_72, 4, x_67); -lean_ctor_set(x_72, 5, x_71); -x_5 = x_70; -x_6 = x_72; -goto block_8; +x_58 = lean_ctor_get(x_39, 1); +lean_dec(x_58); +x_59 = lean_ctor_get(x_39, 0); +lean_dec(x_59); +x_60 = lean_ctor_get(x_52, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_52, 1); +lean_inc(x_61); +lean_dec(x_52); +lean_ctor_set(x_39, 5, x_61); +x_5 = x_60; +x_6 = x_39; +goto block_33; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_dec(x_39); +x_62 = lean_ctor_get(x_52, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_52, 1); +lean_inc(x_63); +lean_dec(x_52); +x_64 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_64, 0, x_41); +lean_ctor_set(x_64, 1, x_42); +lean_ctor_set(x_64, 2, x_43); +lean_ctor_set(x_64, 3, x_44); +lean_ctor_set(x_64, 4, x_45); +lean_ctor_set(x_64, 5, x_63); +x_5 = x_62; +x_6 = x_64; +goto block_33; } } else { -lean_object* x_73; uint8_t x_74; lean_object* x_884; uint8_t x_885; -x_73 = l_Lean_Syntax_getArg(x_52, x_51); -x_884 = l_Lean_nullKind___closed__2; +lean_object* x_65; +lean_dec(x_45); +lean_dec(x_44); +lean_dec(x_43); +lean_dec(x_42); +lean_dec(x_41); +lean_dec(x_2); +lean_dec(x_1); +x_65 = lean_ctor_get(x_52, 0); +lean_inc(x_65); +lean_dec(x_52); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_65, 1); +lean_inc(x_67); +lean_dec(x_65); +x_68 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_68, 0, x_67); +x_69 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_69, 0, x_68); +x_70 = l_Lean_Elab_Term_throwError___rarg(x_66, x_69, x_3, x_39); +lean_dec(x_66); +x_71 = !lean_is_exclusive(x_70); +if (x_71 == 0) +{ +return x_70; +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_70, 0); +x_73 = lean_ctor_get(x_70, 1); lean_inc(x_73); -x_885 = l_Lean_Syntax_isOfKind(x_73, x_884); -if (x_885 == 0) -{ -uint8_t x_886; -lean_dec(x_73); -x_886 = 0; -x_74 = x_886; -goto block_883; +lean_inc(x_72); +lean_dec(x_70); +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; +} } else { -lean_object* x_887; lean_object* x_888; uint8_t x_889; -x_887 = l_Lean_Syntax_getArgs(x_73); -lean_dec(x_73); -x_888 = lean_array_get_size(x_887); -lean_dec(x_887); -x_889 = lean_nat_dec_eq(x_888, x_51); -lean_dec(x_888); -x_74 = x_889; -goto block_883; +lean_object* x_75; uint8_t x_76; +lean_dec(x_3); +x_75 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_39); +x_76 = !lean_is_exclusive(x_75); +if (x_76 == 0) +{ +return x_75; } -block_883: +else { -if (x_74 == 0) -{ -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; -lean_dec(x_52); -x_75 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_76 = lean_ctor_get(x_75, 1); -lean_inc(x_76); -lean_dec(x_75); -x_77 = l_Lean_Elab_Term_getEnv___rarg(x_76); -x_78 = lean_ctor_get(x_77, 1); +lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_77 = lean_ctor_get(x_75, 0); +x_78 = lean_ctor_get(x_75, 1); lean_inc(x_78); -lean_dec(x_77); -x_79 = !lean_is_exclusive(x_78); -if (x_79 == 0) +lean_inc(x_77); +lean_dec(x_75); +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_77); +lean_ctor_set(x_79, 1, x_78); +return x_79; +} +} +} +} +else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get(x_78, 5); -x_81 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_80); -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_81, 1); -lean_inc(x_83); +lean_object* x_80; lean_object* x_81; uint8_t x_82; lean_object* x_1756; uint8_t x_1757; +x_80 = lean_unsigned_to_nat(1u); +x_81 = l_Lean_Syntax_getArg(x_1, x_80); +x_1756 = l_Lean_nullKind___closed__2; +lean_inc(x_81); +x_1757 = l_Lean_Syntax_isOfKind(x_81, x_1756); +if (x_1757 == 0) +{ +uint8_t x_1758; +x_1758 = 0; +x_82 = x_1758; +goto block_1755; +} +else +{ +lean_object* x_1759; lean_object* x_1760; uint8_t x_1761; +x_1759 = l_Lean_Syntax_getArgs(x_81); +x_1760 = lean_array_get_size(x_1759); +lean_dec(x_1759); +x_1761 = lean_nat_dec_eq(x_1760, x_80); +lean_dec(x_1760); +x_82 = x_1761; +goto block_1755; +} +block_1755: +{ +if (x_82 == 0) +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_dec(x_81); -lean_ctor_set(x_78, 5, x_83); -x_5 = x_82; -x_6 = x_78; -goto block_8; -} -else -{ -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_84 = lean_ctor_get(x_78, 0); -x_85 = lean_ctor_get(x_78, 1); -x_86 = lean_ctor_get(x_78, 2); -x_87 = lean_ctor_get(x_78, 3); -x_88 = lean_ctor_get(x_78, 4); -x_89 = lean_ctor_get(x_78, 5); -lean_inc(x_89); -lean_inc(x_88); -lean_inc(x_87); -lean_inc(x_86); -lean_inc(x_85); +x_83 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_84 = lean_ctor_get(x_83, 0); lean_inc(x_84); -lean_dec(x_78); -x_90 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_89); -x_91 = lean_ctor_get(x_90, 0); +x_85 = lean_ctor_get(x_83, 1); +lean_inc(x_85); +lean_dec(x_83); +x_86 = l_Lean_Elab_Term_getEnv___rarg(x_85); +x_87 = lean_ctor_get(x_86, 1); +lean_inc(x_87); +x_88 = lean_ctor_get(x_86, 0); +lean_inc(x_88); +lean_dec(x_86); +x_89 = lean_ctor_get(x_87, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_87, 1); +lean_inc(x_90); +x_91 = lean_ctor_get(x_87, 2); lean_inc(x_91); -x_92 = lean_ctor_get(x_90, 1); +x_92 = lean_ctor_get(x_87, 3); lean_inc(x_92); -lean_dec(x_90); -x_93 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_93, 0, x_84); -lean_ctor_set(x_93, 1, x_85); -lean_ctor_set(x_93, 2, x_86); -lean_ctor_set(x_93, 3, x_87); -lean_ctor_set(x_93, 4, x_88); -lean_ctor_set(x_93, 5, x_92); -x_5 = x_91; -x_6 = x_93; -goto block_8; -} -} -else -{ -lean_object* x_94; lean_object* x_95; lean_object* x_96; uint8_t x_97; lean_object* x_511; uint8_t x_512; uint8_t x_513; -x_94 = l_Lean_Syntax_getArg(x_52, x_29); -lean_dec(x_52); -x_95 = lean_unsigned_to_nat(2u); -x_96 = l_Lean_Syntax_getArg(x_1, x_95); -x_511 = l_Lean_nullKind___closed__2; +x_93 = lean_ctor_get(x_87, 4); +lean_inc(x_93); +x_94 = lean_ctor_get(x_87, 5); +lean_inc(x_94); +x_95 = lean_ctor_get(x_3, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_95, 3); lean_inc(x_96); -x_512 = l_Lean_Syntax_isOfKind(x_96, x_511); -if (x_512 == 0) +x_97 = lean_ctor_get(x_95, 4); +lean_inc(x_97); +lean_dec(x_95); +x_98 = lean_environment_main_module(x_88); +x_99 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_84); +lean_ctor_set(x_99, 2, x_96); +lean_ctor_set(x_99, 3, x_97); +lean_inc(x_1); +x_100 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_99, x_94); +if (lean_obj_tag(x_100) == 0) { -uint8_t x_879; -x_879 = 0; -x_513 = x_879; -goto block_878; -} -else +uint8_t x_101; +x_101 = !lean_is_exclusive(x_87); +if (x_101 == 0) { -lean_object* x_880; lean_object* x_881; uint8_t x_882; -x_880 = l_Lean_Syntax_getArgs(x_96); -x_881 = lean_array_get_size(x_880); -lean_dec(x_880); -x_882 = lean_nat_dec_eq(x_881, x_51); -lean_dec(x_881); -x_513 = x_882; -goto block_878; -} -block_510: -{ -if (x_97 == 0) -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; -lean_dec(x_96); -lean_dec(x_94); -x_98 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_99 = lean_ctor_get(x_98, 1); -lean_inc(x_99); -lean_dec(x_98); -x_100 = l_Lean_Elab_Term_getEnv___rarg(x_99); -x_101 = lean_ctor_get(x_100, 1); -lean_inc(x_101); -lean_dec(x_100); -x_102 = !lean_is_exclusive(x_101); -if (x_102 == 0) -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; -x_103 = lean_ctor_get(x_101, 5); -x_104 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_103); -x_105 = lean_ctor_get(x_104, 0); -lean_inc(x_105); -x_106 = lean_ctor_get(x_104, 1); -lean_inc(x_106); +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_102 = lean_ctor_get(x_87, 5); +lean_dec(x_102); +x_103 = lean_ctor_get(x_87, 4); +lean_dec(x_103); +x_104 = lean_ctor_get(x_87, 3); lean_dec(x_104); -lean_ctor_set(x_101, 5, x_106); -x_5 = x_105; -x_6 = x_101; -goto block_8; +x_105 = lean_ctor_get(x_87, 2); +lean_dec(x_105); +x_106 = lean_ctor_get(x_87, 1); +lean_dec(x_106); +x_107 = lean_ctor_get(x_87, 0); +lean_dec(x_107); +x_108 = lean_ctor_get(x_100, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_100, 1); +lean_inc(x_109); +lean_dec(x_100); +lean_ctor_set(x_87, 5, x_109); +x_5 = x_108; +x_6 = x_87; +goto block_33; } else { -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_107 = lean_ctor_get(x_101, 0); -x_108 = lean_ctor_get(x_101, 1); -x_109 = lean_ctor_get(x_101, 2); -x_110 = lean_ctor_get(x_101, 3); -x_111 = lean_ctor_get(x_101, 4); -x_112 = lean_ctor_get(x_101, 5); -lean_inc(x_112); -lean_inc(x_111); +lean_object* x_110; lean_object* x_111; lean_object* x_112; +lean_dec(x_87); +x_110 = lean_ctor_get(x_100, 0); lean_inc(x_110); -lean_inc(x_109); -lean_inc(x_108); -lean_inc(x_107); -lean_dec(x_101); -x_113 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_112); +x_111 = lean_ctor_get(x_100, 1); +lean_inc(x_111); +lean_dec(x_100); +x_112 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_112, 0, x_89); +lean_ctor_set(x_112, 1, x_90); +lean_ctor_set(x_112, 2, x_91); +lean_ctor_set(x_112, 3, x_92); +lean_ctor_set(x_112, 4, x_93); +lean_ctor_set(x_112, 5, x_111); +x_5 = x_110; +x_6 = x_112; +goto block_33; +} +} +else +{ +lean_object* x_113; +lean_dec(x_93); +lean_dec(x_92); +lean_dec(x_91); +lean_dec(x_90); +lean_dec(x_89); +lean_dec(x_2); +lean_dec(x_1); +x_113 = lean_ctor_get(x_100, 0); +lean_inc(x_113); +lean_dec(x_100); +if (lean_obj_tag(x_113) == 0) +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_ctor_get(x_113, 1); lean_inc(x_115); lean_dec(x_113); -x_116 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_116, 0, x_107); -lean_ctor_set(x_116, 1, x_108); -lean_ctor_set(x_116, 2, x_109); -lean_ctor_set(x_116, 3, x_110); -lean_ctor_set(x_116, 4, x_111); -lean_ctor_set(x_116, 5, x_115); -x_5 = x_114; -x_6 = x_116; -goto block_8; -} +x_116 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_116, 0, x_115); +x_117 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_117, 0, x_116); +x_118 = l_Lean_Elab_Term_throwError___rarg(x_114, x_117, x_3, x_87); +lean_dec(x_114); +x_119 = !lean_is_exclusive(x_118); +if (x_119 == 0) +{ +return x_118; } else { -lean_object* x_117; uint8_t x_118; lean_object* x_504; uint8_t x_505; -x_117 = l_Lean_Syntax_getArg(x_96, x_51); -lean_dec(x_96); -x_504 = l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; -lean_inc(x_117); -x_505 = l_Lean_Syntax_isOfKind(x_117, x_504); -if (x_505 == 0) -{ -uint8_t x_506; -x_506 = 0; -x_118 = x_506; -goto block_503; -} -else -{ -lean_object* x_507; lean_object* x_508; uint8_t x_509; -x_507 = l_Lean_Syntax_getArgs(x_117); -x_508 = lean_array_get_size(x_507); -lean_dec(x_507); -x_509 = lean_nat_dec_eq(x_508, x_95); -lean_dec(x_508); -x_118 = x_509; -goto block_503; -} -block_503: -{ -if (x_118 == 0) -{ -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; uint8_t x_123; -lean_dec(x_117); -lean_dec(x_94); -x_119 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_120 = lean_ctor_get(x_119, 1); +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_118, 0); +x_121 = lean_ctor_get(x_118, 1); +lean_inc(x_121); lean_inc(x_120); -lean_dec(x_119); -x_121 = l_Lean_Elab_Term_getEnv___rarg(x_120); -x_122 = lean_ctor_get(x_121, 1); -lean_inc(x_122); -lean_dec(x_121); -x_123 = !lean_is_exclusive(x_122); -if (x_123 == 0) -{ -lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; -x_124 = lean_ctor_get(x_122, 5); -x_125 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_124); -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -lean_dec(x_125); -lean_ctor_set(x_122, 5, x_127); -x_5 = x_126; -x_6 = x_122; -goto block_8; +lean_dec(x_118); +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_120); +lean_ctor_set(x_122, 1, x_121); +return x_122; +} } else { -lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; -x_128 = lean_ctor_get(x_122, 0); -x_129 = lean_ctor_get(x_122, 1); -x_130 = lean_ctor_get(x_122, 2); -x_131 = lean_ctor_get(x_122, 3); -x_132 = lean_ctor_get(x_122, 4); -x_133 = lean_ctor_get(x_122, 5); -lean_inc(x_133); -lean_inc(x_132); -lean_inc(x_131); -lean_inc(x_130); +lean_object* x_123; uint8_t x_124; +lean_dec(x_3); +x_123 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_87); +x_124 = !lean_is_exclusive(x_123); +if (x_124 == 0) +{ +return x_123; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_125 = lean_ctor_get(x_123, 0); +x_126 = lean_ctor_get(x_123, 1); +lean_inc(x_126); +lean_inc(x_125); +lean_dec(x_123); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_125); +lean_ctor_set(x_127, 1, x_126); +return x_127; +} +} +} +} +else +{ +lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_1748; uint8_t x_1749; +x_128 = lean_unsigned_to_nat(0u); +x_129 = l_Lean_Syntax_getArg(x_81, x_128); +lean_dec(x_81); +x_1748 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_122); -x_134 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_133); -x_135 = lean_ctor_get(x_134, 0); +x_1749 = l_Lean_Syntax_isOfKind(x_129, x_1748); +if (x_1749 == 0) +{ +uint8_t x_1750; +x_1750 = 0; +x_130 = x_1750; +goto block_1747; +} +else +{ +lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; uint8_t x_1754; +x_1751 = l_Lean_Syntax_getArgs(x_129); +x_1752 = lean_array_get_size(x_1751); +lean_dec(x_1751); +x_1753 = lean_unsigned_to_nat(2u); +x_1754 = lean_nat_dec_eq(x_1752, x_1753); +lean_dec(x_1752); +x_130 = x_1754; +goto block_1747; +} +block_1747: +{ +if (x_130 == 0) +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +lean_dec(x_129); +x_131 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_132 = lean_ctor_get(x_131, 0); +lean_inc(x_132); +x_133 = lean_ctor_get(x_131, 1); +lean_inc(x_133); +lean_dec(x_131); +x_134 = l_Lean_Elab_Term_getEnv___rarg(x_133); +x_135 = lean_ctor_get(x_134, 1); lean_inc(x_135); -x_136 = lean_ctor_get(x_134, 1); +x_136 = lean_ctor_get(x_134, 0); lean_inc(x_136); lean_dec(x_134); -x_137 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_137, 0, x_128); -lean_ctor_set(x_137, 1, x_129); -lean_ctor_set(x_137, 2, x_130); -lean_ctor_set(x_137, 3, x_131); -lean_ctor_set(x_137, 4, x_132); -lean_ctor_set(x_137, 5, x_136); -x_5 = x_135; -x_6 = x_137; -goto block_8; -} -} -else -{ -lean_object* x_138; lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_328; uint8_t x_329; uint8_t x_330; -x_138 = l_Lean_Syntax_getArg(x_117, x_29); -lean_dec(x_117); -x_139 = lean_unsigned_to_nat(4u); -x_140 = l_Lean_Syntax_getArg(x_1, x_139); -x_328 = l_Lean_nullKind___closed__2; +x_137 = lean_ctor_get(x_135, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_135, 1); +lean_inc(x_138); +x_139 = lean_ctor_get(x_135, 2); +lean_inc(x_139); +x_140 = lean_ctor_get(x_135, 3); lean_inc(x_140); -x_329 = l_Lean_Syntax_isOfKind(x_140, x_328); -if (x_329 == 0) -{ -uint8_t x_499; -x_499 = 0; -x_330 = x_499; -goto block_498; -} -else -{ -lean_object* x_500; lean_object* x_501; uint8_t x_502; -x_500 = l_Lean_Syntax_getArgs(x_140); -x_501 = lean_array_get_size(x_500); -lean_dec(x_500); -x_502 = lean_nat_dec_eq(x_501, x_51); -lean_dec(x_501); -x_330 = x_502; -goto block_498; -} -block_327: -{ -if (x_141 == 0) -{ -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; -lean_dec(x_138); -lean_dec(x_94); -x_142 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_143 = lean_ctor_get(x_142, 1); +x_141 = lean_ctor_get(x_135, 4); +lean_inc(x_141); +x_142 = lean_ctor_get(x_135, 5); +lean_inc(x_142); +x_143 = lean_ctor_get(x_3, 0); lean_inc(x_143); -lean_dec(x_142); -x_144 = l_Lean_Elab_Term_getEnv___rarg(x_143); -x_145 = lean_ctor_get(x_144, 1); +x_144 = lean_ctor_get(x_143, 3); +lean_inc(x_144); +x_145 = lean_ctor_get(x_143, 4); lean_inc(x_145); -lean_dec(x_144); -x_146 = !lean_is_exclusive(x_145); -if (x_146 == 0) +lean_dec(x_143); +x_146 = lean_environment_main_module(x_136); +x_147 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_132); +lean_ctor_set(x_147, 2, x_144); +lean_ctor_set(x_147, 3, x_145); +lean_inc(x_1); +x_148 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_147, x_142); +if (lean_obj_tag(x_148) == 0) { -lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_147 = lean_ctor_get(x_145, 5); -x_148 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_147); -x_149 = lean_ctor_get(x_148, 0); -lean_inc(x_149); -x_150 = lean_ctor_get(x_148, 1); -lean_inc(x_150); +uint8_t x_149; +x_149 = !lean_is_exclusive(x_135); +if (x_149 == 0) +{ +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; +x_150 = lean_ctor_get(x_135, 5); +lean_dec(x_150); +x_151 = lean_ctor_get(x_135, 4); +lean_dec(x_151); +x_152 = lean_ctor_get(x_135, 3); +lean_dec(x_152); +x_153 = lean_ctor_get(x_135, 2); +lean_dec(x_153); +x_154 = lean_ctor_get(x_135, 1); +lean_dec(x_154); +x_155 = lean_ctor_get(x_135, 0); +lean_dec(x_155); +x_156 = lean_ctor_get(x_148, 0); +lean_inc(x_156); +x_157 = lean_ctor_get(x_148, 1); +lean_inc(x_157); lean_dec(x_148); -lean_ctor_set(x_145, 5, x_150); -x_5 = x_149; -x_6 = x_145; -goto block_8; +lean_ctor_set(x_135, 5, x_157); +x_5 = x_156; +x_6 = x_135; +goto block_33; } else { -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; -x_151 = lean_ctor_get(x_145, 0); -x_152 = lean_ctor_get(x_145, 1); -x_153 = lean_ctor_get(x_145, 2); -x_154 = lean_ctor_get(x_145, 3); -x_155 = lean_ctor_get(x_145, 4); -x_156 = lean_ctor_get(x_145, 5); -lean_inc(x_156); -lean_inc(x_155); -lean_inc(x_154); -lean_inc(x_153); -lean_inc(x_152); -lean_inc(x_151); -lean_dec(x_145); -x_157 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_156); -x_158 = lean_ctor_get(x_157, 0); +lean_object* x_158; lean_object* x_159; lean_object* x_160; +lean_dec(x_135); +x_158 = lean_ctor_get(x_148, 0); lean_inc(x_158); -x_159 = lean_ctor_get(x_157, 1); +x_159 = lean_ctor_get(x_148, 1); lean_inc(x_159); -lean_dec(x_157); +lean_dec(x_148); x_160 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_160, 0, x_151); -lean_ctor_set(x_160, 1, x_152); -lean_ctor_set(x_160, 2, x_153); -lean_ctor_set(x_160, 3, x_154); -lean_ctor_set(x_160, 4, x_155); +lean_ctor_set(x_160, 0, x_137); +lean_ctor_set(x_160, 1, x_138); +lean_ctor_set(x_160, 2, x_139); +lean_ctor_set(x_160, 3, x_140); +lean_ctor_set(x_160, 4, x_141); lean_ctor_set(x_160, 5, x_159); x_5 = x_158; x_6 = x_160; -goto block_8; +goto block_33; } } else { -lean_object* x_161; lean_object* x_162; uint8_t x_163; lean_object* x_321; uint8_t x_322; -x_161 = lean_unsigned_to_nat(5u); -x_162 = l_Lean_Syntax_getArg(x_1, x_161); -x_321 = l_Lean_nullKind___closed__2; -lean_inc(x_162); -x_322 = l_Lean_Syntax_isOfKind(x_162, x_321); -if (x_322 == 0) -{ -uint8_t x_323; -x_323 = 0; -x_163 = x_323; -goto block_320; -} -else -{ -lean_object* x_324; lean_object* x_325; uint8_t x_326; -x_324 = l_Lean_Syntax_getArgs(x_162); -x_325 = lean_array_get_size(x_324); -lean_dec(x_324); -x_326 = lean_nat_dec_eq(x_325, x_29); -lean_dec(x_325); -x_163 = x_326; -goto block_320; -} -block_320: -{ -if (x_163 == 0) -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; -lean_dec(x_162); +lean_object* x_161; +lean_dec(x_141); +lean_dec(x_140); +lean_dec(x_139); lean_dec(x_138); -lean_dec(x_94); -x_164 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_165 = lean_ctor_get(x_164, 1); -lean_inc(x_165); -lean_dec(x_164); -x_166 = l_Lean_Elab_Term_getEnv___rarg(x_165); -x_167 = lean_ctor_get(x_166, 1); -lean_inc(x_167); -lean_dec(x_166); -x_168 = !lean_is_exclusive(x_167); -if (x_168 == 0) +lean_dec(x_137); +lean_dec(x_2); +lean_dec(x_1); +x_161 = lean_ctor_get(x_148, 0); +lean_inc(x_161); +lean_dec(x_148); +if (lean_obj_tag(x_161) == 0) { -lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_169 = lean_ctor_get(x_167, 5); -x_170 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_169); -x_171 = lean_ctor_get(x_170, 0); -lean_inc(x_171); -x_172 = lean_ctor_get(x_170, 1); -lean_inc(x_172); -lean_dec(x_170); -lean_ctor_set(x_167, 5, x_172); -x_5 = x_171; -x_6 = x_167; -goto block_8; +lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +x_163 = lean_ctor_get(x_161, 1); +lean_inc(x_163); +lean_dec(x_161); +x_164 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_164, 0, x_163); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_164); +x_166 = l_Lean_Elab_Term_throwError___rarg(x_162, x_165, x_3, x_135); +lean_dec(x_162); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) +{ +return x_166; } else { -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; -x_173 = lean_ctor_get(x_167, 0); -x_174 = lean_ctor_get(x_167, 1); -x_175 = lean_ctor_get(x_167, 2); -x_176 = lean_ctor_get(x_167, 3); -x_177 = lean_ctor_get(x_167, 4); -x_178 = lean_ctor_get(x_167, 5); -lean_inc(x_178); -lean_inc(x_177); -lean_inc(x_176); -lean_inc(x_175); +lean_object* x_168; lean_object* x_169; lean_object* x_170; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +lean_inc(x_169); +lean_inc(x_168); +lean_dec(x_166); +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_168); +lean_ctor_set(x_170, 1, x_169); +return x_170; +} +} +else +{ +lean_object* x_171; uint8_t x_172; +lean_dec(x_3); +x_171 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_135); +x_172 = !lean_is_exclusive(x_171); +if (x_172 == 0) +{ +return x_171; +} +else +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_173 = lean_ctor_get(x_171, 0); +x_174 = lean_ctor_get(x_171, 1); lean_inc(x_174); lean_inc(x_173); -lean_dec(x_167); -x_179 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_178); -x_180 = lean_ctor_get(x_179, 0); +lean_dec(x_171); +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +return x_175; +} +} +} +} +else +{ +lean_object* x_176; uint8_t x_177; lean_object* x_1741; uint8_t x_1742; +x_176 = l_Lean_Syntax_getArg(x_129, x_128); +x_1741 = l_Lean_nullKind___closed__2; +lean_inc(x_176); +x_1742 = l_Lean_Syntax_isOfKind(x_176, x_1741); +if (x_1742 == 0) +{ +uint8_t x_1743; +lean_dec(x_176); +x_1743 = 0; +x_177 = x_1743; +goto block_1740; +} +else +{ +lean_object* x_1744; lean_object* x_1745; uint8_t x_1746; +x_1744 = l_Lean_Syntax_getArgs(x_176); +lean_dec(x_176); +x_1745 = lean_array_get_size(x_1744); +lean_dec(x_1744); +x_1746 = lean_nat_dec_eq(x_1745, x_128); +lean_dec(x_1745); +x_177 = x_1746; +goto block_1740; +} +block_1740: +{ +if (x_177 == 0) +{ +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; lean_object* x_194; lean_object* x_195; +lean_dec(x_129); +x_178 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_179 = lean_ctor_get(x_178, 0); +lean_inc(x_179); +x_180 = lean_ctor_get(x_178, 1); lean_inc(x_180); -x_181 = lean_ctor_get(x_179, 1); -lean_inc(x_181); -lean_dec(x_179); -x_182 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_182, 0, x_173); -lean_ctor_set(x_182, 1, x_174); -lean_ctor_set(x_182, 2, x_175); -lean_ctor_set(x_182, 3, x_176); -lean_ctor_set(x_182, 4, x_177); -lean_ctor_set(x_182, 5, x_181); -x_5 = x_180; -x_6 = x_182; -goto block_8; -} -} -else -{ -lean_object* x_183; uint8_t x_184; lean_object* x_313; uint8_t x_314; -x_183 = l_Lean_Syntax_getArg(x_162, x_51); -lean_dec(x_162); -x_313 = l_Lean_Parser_Term_matchAlt___closed__2; +lean_dec(x_178); +x_181 = l_Lean_Elab_Term_getEnv___rarg(x_180); +x_182 = lean_ctor_get(x_181, 1); +lean_inc(x_182); +x_183 = lean_ctor_get(x_181, 0); lean_inc(x_183); -x_314 = l_Lean_Syntax_isOfKind(x_183, x_313); -if (x_314 == 0) -{ -uint8_t x_315; -x_315 = 0; -x_184 = x_315; -goto block_312; -} -else -{ -lean_object* x_316; lean_object* x_317; lean_object* x_318; uint8_t x_319; -x_316 = l_Lean_Syntax_getArgs(x_183); -x_317 = lean_array_get_size(x_316); -lean_dec(x_316); -x_318 = lean_unsigned_to_nat(3u); -x_319 = lean_nat_dec_eq(x_317, x_318); -lean_dec(x_317); -x_184 = x_319; -goto block_312; -} -block_312: -{ -if (x_184 == 0) -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; uint8_t x_189; -lean_dec(x_183); -lean_dec(x_138); -lean_dec(x_94); -x_185 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_186 = lean_ctor_get(x_185, 1); +lean_dec(x_181); +x_184 = lean_ctor_get(x_182, 0); +lean_inc(x_184); +x_185 = lean_ctor_get(x_182, 1); +lean_inc(x_185); +x_186 = lean_ctor_get(x_182, 2); lean_inc(x_186); -lean_dec(x_185); -x_187 = l_Lean_Elab_Term_getEnv___rarg(x_186); -x_188 = lean_ctor_get(x_187, 1); +x_187 = lean_ctor_get(x_182, 3); +lean_inc(x_187); +x_188 = lean_ctor_get(x_182, 4); lean_inc(x_188); -lean_dec(x_187); -x_189 = !lean_is_exclusive(x_188); -if (x_189 == 0) -{ -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -x_190 = lean_ctor_get(x_188, 5); -x_191 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_190); -x_192 = lean_ctor_get(x_191, 0); +x_189 = lean_ctor_get(x_182, 5); +lean_inc(x_189); +x_190 = lean_ctor_get(x_3, 0); +lean_inc(x_190); +x_191 = lean_ctor_get(x_190, 3); +lean_inc(x_191); +x_192 = lean_ctor_get(x_190, 4); lean_inc(x_192); -x_193 = lean_ctor_get(x_191, 1); -lean_inc(x_193); -lean_dec(x_191); -lean_ctor_set(x_188, 5, x_193); -x_5 = x_192; -x_6 = x_188; -goto block_8; -} -else +lean_dec(x_190); +x_193 = lean_environment_main_module(x_183); +x_194 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_179); +lean_ctor_set(x_194, 2, x_191); +lean_ctor_set(x_194, 3, x_192); +lean_inc(x_1); +x_195 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_194, x_189); +if (lean_obj_tag(x_195) == 0) { -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; -x_194 = lean_ctor_get(x_188, 0); -x_195 = lean_ctor_get(x_188, 1); -x_196 = lean_ctor_get(x_188, 2); -x_197 = lean_ctor_get(x_188, 3); -x_198 = lean_ctor_get(x_188, 4); -x_199 = lean_ctor_get(x_188, 5); -lean_inc(x_199); -lean_inc(x_198); -lean_inc(x_197); -lean_inc(x_196); -lean_inc(x_195); -lean_inc(x_194); -lean_dec(x_188); -x_200 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_199); -x_201 = lean_ctor_get(x_200, 0); -lean_inc(x_201); -x_202 = lean_ctor_get(x_200, 1); -lean_inc(x_202); +uint8_t x_196; +x_196 = !lean_is_exclusive(x_182); +if (x_196 == 0) +{ +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; +x_197 = lean_ctor_get(x_182, 5); +lean_dec(x_197); +x_198 = lean_ctor_get(x_182, 4); +lean_dec(x_198); +x_199 = lean_ctor_get(x_182, 3); +lean_dec(x_199); +x_200 = lean_ctor_get(x_182, 2); lean_dec(x_200); -x_203 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_203, 0, x_194); -lean_ctor_set(x_203, 1, x_195); -lean_ctor_set(x_203, 2, x_196); -lean_ctor_set(x_203, 3, x_197); -lean_ctor_set(x_203, 4, x_198); -lean_ctor_set(x_203, 5, x_202); -x_5 = x_201; -x_6 = x_203; -goto block_8; -} -} -else -{ -lean_object* x_204; uint8_t x_205; lean_object* x_306; uint8_t x_307; -x_204 = l_Lean_Syntax_getArg(x_183, x_51); -x_306 = l_Lean_nullKind___closed__2; +x_201 = lean_ctor_get(x_182, 1); +lean_dec(x_201); +x_202 = lean_ctor_get(x_182, 0); +lean_dec(x_202); +x_203 = lean_ctor_get(x_195, 0); +lean_inc(x_203); +x_204 = lean_ctor_get(x_195, 1); lean_inc(x_204); -x_307 = l_Lean_Syntax_isOfKind(x_204, x_306); -if (x_307 == 0) -{ -uint8_t x_308; -x_308 = 0; -x_205 = x_308; -goto block_305; +lean_dec(x_195); +lean_ctor_set(x_182, 5, x_204); +x_5 = x_203; +x_6 = x_182; +goto block_33; } else { -lean_object* x_309; lean_object* x_310; uint8_t x_311; -x_309 = l_Lean_Syntax_getArgs(x_204); -x_310 = lean_array_get_size(x_309); -lean_dec(x_309); -x_311 = lean_nat_dec_eq(x_310, x_29); -lean_dec(x_310); -x_205 = x_311; -goto block_305; +lean_object* x_205; lean_object* x_206; lean_object* x_207; +lean_dec(x_182); +x_205 = lean_ctor_get(x_195, 0); +lean_inc(x_205); +x_206 = lean_ctor_get(x_195, 1); +lean_inc(x_206); +lean_dec(x_195); +x_207 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_207, 0, x_184); +lean_ctor_set(x_207, 1, x_185); +lean_ctor_set(x_207, 2, x_186); +lean_ctor_set(x_207, 3, x_187); +lean_ctor_set(x_207, 4, x_188); +lean_ctor_set(x_207, 5, x_206); +x_5 = x_205; +x_6 = x_207; +goto block_33; } -block_305: +} +else { -if (x_205 == 0) +lean_object* x_208; +lean_dec(x_188); +lean_dec(x_187); +lean_dec(x_186); +lean_dec(x_185); +lean_dec(x_184); +lean_dec(x_2); +lean_dec(x_1); +x_208 = lean_ctor_get(x_195, 0); +lean_inc(x_208); +lean_dec(x_195); +if (lean_obj_tag(x_208) == 0) { -lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; -lean_dec(x_204); -lean_dec(x_183); -lean_dec(x_138); -lean_dec(x_94); -x_206 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_207 = lean_ctor_get(x_206, 1); -lean_inc(x_207); -lean_dec(x_206); -x_208 = l_Lean_Elab_Term_getEnv___rarg(x_207); -x_209 = lean_ctor_get(x_208, 1); +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; uint8_t x_214; +x_209 = lean_ctor_get(x_208, 0); lean_inc(x_209); +x_210 = lean_ctor_get(x_208, 1); +lean_inc(x_210); lean_dec(x_208); -x_210 = !lean_is_exclusive(x_209); -if (x_210 == 0) +x_211 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_211, 0, x_210); +x_212 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_212, 0, x_211); +x_213 = l_Lean_Elab_Term_throwError___rarg(x_209, x_212, x_3, x_182); +lean_dec(x_209); +x_214 = !lean_is_exclusive(x_213); +if (x_214 == 0) { -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_211 = lean_ctor_get(x_209, 5); -x_212 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_211); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_212, 1); -lean_inc(x_214); -lean_dec(x_212); -lean_ctor_set(x_209, 5, x_214); -x_5 = x_213; -x_6 = x_209; -goto block_8; +return x_213; } else { -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; -x_215 = lean_ctor_get(x_209, 0); -x_216 = lean_ctor_get(x_209, 1); -x_217 = lean_ctor_get(x_209, 2); -x_218 = lean_ctor_get(x_209, 3); -x_219 = lean_ctor_get(x_209, 4); -x_220 = lean_ctor_get(x_209, 5); -lean_inc(x_220); -lean_inc(x_219); -lean_inc(x_218); -lean_inc(x_217); +lean_object* x_215; lean_object* x_216; lean_object* x_217; +x_215 = lean_ctor_get(x_213, 0); +x_216 = lean_ctor_get(x_213, 1); lean_inc(x_216); lean_inc(x_215); -lean_dec(x_209); -x_221 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_220); -x_222 = lean_ctor_get(x_221, 0); -lean_inc(x_222); -x_223 = lean_ctor_get(x_221, 1); -lean_inc(x_223); -lean_dec(x_221); -x_224 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_224, 0, x_215); -lean_ctor_set(x_224, 1, x_216); -lean_ctor_set(x_224, 2, x_217); -lean_ctor_set(x_224, 3, x_218); -lean_ctor_set(x_224, 4, x_219); -lean_ctor_set(x_224, 5, x_223); -x_5 = x_222; -x_6 = x_224; -goto block_8; +lean_dec(x_213); +x_217 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_217, 0, x_215); +lean_ctor_set(x_217, 1, x_216); +return x_217; } } else { -lean_object* x_225; uint8_t x_226; lean_object* x_299; uint8_t x_300; -x_225 = l_Lean_Syntax_getArg(x_204, x_51); -lean_dec(x_204); -x_299 = l_Lean_mkTermIdFromIdent___closed__2; +lean_object* x_218; uint8_t x_219; +lean_dec(x_3); +x_218 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_182); +x_219 = !lean_is_exclusive(x_218); +if (x_219 == 0) +{ +return x_218; +} +else +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_220 = lean_ctor_get(x_218, 0); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_inc(x_220); +lean_dec(x_218); +x_222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_222, 0, x_220); +lean_ctor_set(x_222, 1, x_221); +return x_222; +} +} +} +} +else +{ +lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; lean_object* x_1030; uint8_t x_1031; uint8_t x_1032; +x_223 = l_Lean_Syntax_getArg(x_129, x_80); +lean_dec(x_129); +x_224 = lean_unsigned_to_nat(2u); +x_225 = l_Lean_Syntax_getArg(x_1, x_224); +x_1030 = l_Lean_nullKind___closed__2; lean_inc(x_225); -x_300 = l_Lean_Syntax_isOfKind(x_225, x_299); -if (x_300 == 0) +x_1031 = l_Lean_Syntax_isOfKind(x_225, x_1030); +if (x_1031 == 0) { -uint8_t x_301; -x_301 = 0; -x_226 = x_301; -goto block_298; +uint8_t x_1736; +x_1736 = 0; +x_1032 = x_1736; +goto block_1735; } else { -lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_302 = l_Lean_Syntax_getArgs(x_225); -x_303 = lean_array_get_size(x_302); -lean_dec(x_302); -x_304 = lean_nat_dec_eq(x_303, x_95); -lean_dec(x_303); -x_226 = x_304; -goto block_298; +lean_object* x_1737; lean_object* x_1738; uint8_t x_1739; +x_1737 = l_Lean_Syntax_getArgs(x_225); +x_1738 = lean_array_get_size(x_1737); +lean_dec(x_1737); +x_1739 = lean_nat_dec_eq(x_1738, x_128); +lean_dec(x_1738); +x_1032 = x_1739; +goto block_1735; } -block_298: +block_1029: { if (x_226 == 0) { -lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; +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_dec(x_225); -lean_dec(x_183); -lean_dec(x_138); -lean_dec(x_94); +lean_dec(x_223); x_227 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_228 = lean_ctor_get(x_227, 1); +x_228 = lean_ctor_get(x_227, 0); lean_inc(x_228); +x_229 = lean_ctor_get(x_227, 1); +lean_inc(x_229); lean_dec(x_227); -x_229 = l_Lean_Elab_Term_getEnv___rarg(x_228); -x_230 = lean_ctor_get(x_229, 1); -lean_inc(x_230); -lean_dec(x_229); -x_231 = !lean_is_exclusive(x_230); -if (x_231 == 0) -{ -lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; -x_232 = lean_ctor_get(x_230, 5); -x_233 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_232); -x_234 = lean_ctor_get(x_233, 0); -lean_inc(x_234); -x_235 = lean_ctor_get(x_233, 1); -lean_inc(x_235); -lean_dec(x_233); -lean_ctor_set(x_230, 5, x_235); -x_5 = x_234; -x_6 = x_230; -goto block_8; -} -else -{ -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; -x_236 = lean_ctor_get(x_230, 0); -x_237 = lean_ctor_get(x_230, 1); -x_238 = lean_ctor_get(x_230, 2); -x_239 = lean_ctor_get(x_230, 3); -x_240 = lean_ctor_get(x_230, 4); -x_241 = lean_ctor_get(x_230, 5); -lean_inc(x_241); -lean_inc(x_240); -lean_inc(x_239); -lean_inc(x_238); -lean_inc(x_237); -lean_inc(x_236); +x_230 = l_Lean_Elab_Term_getEnv___rarg(x_229); +x_231 = lean_ctor_get(x_230, 1); +lean_inc(x_231); +x_232 = lean_ctor_get(x_230, 0); +lean_inc(x_232); lean_dec(x_230); -x_242 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_241); -x_243 = lean_ctor_get(x_242, 0); -lean_inc(x_243); -x_244 = lean_ctor_get(x_242, 1); -lean_inc(x_244); -lean_dec(x_242); -x_245 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_245, 0, x_236); -lean_ctor_set(x_245, 1, x_237); -lean_ctor_set(x_245, 2, x_238); -lean_ctor_set(x_245, 3, x_239); -lean_ctor_set(x_245, 4, x_240); -lean_ctor_set(x_245, 5, x_244); -x_5 = x_243; -x_6 = x_245; -goto block_8; -} -} -else +x_233 = lean_ctor_get(x_231, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +x_235 = lean_ctor_get(x_231, 2); +lean_inc(x_235); +x_236 = lean_ctor_get(x_231, 3); +lean_inc(x_236); +x_237 = lean_ctor_get(x_231, 4); +lean_inc(x_237); +x_238 = lean_ctor_get(x_231, 5); +lean_inc(x_238); +x_239 = lean_ctor_get(x_3, 0); +lean_inc(x_239); +x_240 = lean_ctor_get(x_239, 3); +lean_inc(x_240); +x_241 = lean_ctor_get(x_239, 4); +lean_inc(x_241); +lean_dec(x_239); +x_242 = lean_environment_main_module(x_232); +x_243 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set(x_243, 1, x_228); +lean_ctor_set(x_243, 2, x_240); +lean_ctor_set(x_243, 3, x_241); +lean_inc(x_1); +x_244 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_243, x_238); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_246; lean_object* x_247; uint8_t x_248; -x_246 = l_Lean_Syntax_getArg(x_225, x_51); -x_247 = l_Lean_identKind___closed__2; -lean_inc(x_246); -x_248 = l_Lean_Syntax_isOfKind(x_246, x_247); -if (x_248 == 0) +uint8_t x_245; +x_245 = !lean_is_exclusive(x_231); +if (x_245 == 0) { -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; uint8_t x_253; +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_246 = lean_ctor_get(x_231, 5); lean_dec(x_246); -lean_dec(x_225); -lean_dec(x_183); -lean_dec(x_138); -lean_dec(x_94); -x_249 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_250 = lean_ctor_get(x_249, 1); -lean_inc(x_250); +x_247 = lean_ctor_get(x_231, 4); +lean_dec(x_247); +x_248 = lean_ctor_get(x_231, 3); +lean_dec(x_248); +x_249 = lean_ctor_get(x_231, 2); lean_dec(x_249); -x_251 = l_Lean_Elab_Term_getEnv___rarg(x_250); -x_252 = lean_ctor_get(x_251, 1); -lean_inc(x_252); +x_250 = lean_ctor_get(x_231, 1); +lean_dec(x_250); +x_251 = lean_ctor_get(x_231, 0); lean_dec(x_251); -x_253 = !lean_is_exclusive(x_252); -if (x_253 == 0) +x_252 = lean_ctor_get(x_244, 0); +lean_inc(x_252); +x_253 = lean_ctor_get(x_244, 1); +lean_inc(x_253); +lean_dec(x_244); +lean_ctor_set(x_231, 5, x_253); +x_5 = x_252; +x_6 = x_231; +goto block_33; +} +else { -lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; -x_254 = lean_ctor_get(x_252, 5); -x_255 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_254); -x_256 = lean_ctor_get(x_255, 0); -lean_inc(x_256); -x_257 = lean_ctor_get(x_255, 1); +lean_object* x_254; lean_object* x_255; lean_object* x_256; +lean_dec(x_231); +x_254 = lean_ctor_get(x_244, 0); +lean_inc(x_254); +x_255 = lean_ctor_get(x_244, 1); +lean_inc(x_255); +lean_dec(x_244); +x_256 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_256, 0, x_233); +lean_ctor_set(x_256, 1, x_234); +lean_ctor_set(x_256, 2, x_235); +lean_ctor_set(x_256, 3, x_236); +lean_ctor_set(x_256, 4, x_237); +lean_ctor_set(x_256, 5, x_255); +x_5 = x_254; +x_6 = x_256; +goto block_33; +} +} +else +{ +lean_object* x_257; +lean_dec(x_237); +lean_dec(x_236); +lean_dec(x_235); +lean_dec(x_234); +lean_dec(x_233); +lean_dec(x_2); +lean_dec(x_1); +x_257 = lean_ctor_get(x_244, 0); lean_inc(x_257); -lean_dec(x_255); -lean_ctor_set(x_252, 5, x_257); -x_5 = x_256; -x_6 = x_252; -goto block_8; -} -else +lean_dec(x_244); +if (lean_obj_tag(x_257) == 0) { -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; -x_258 = lean_ctor_get(x_252, 0); -x_259 = lean_ctor_get(x_252, 1); -x_260 = lean_ctor_get(x_252, 2); -x_261 = lean_ctor_get(x_252, 3); -x_262 = lean_ctor_get(x_252, 4); -x_263 = lean_ctor_get(x_252, 5); -lean_inc(x_263); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); +lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; uint8_t x_263; +x_258 = lean_ctor_get(x_257, 0); lean_inc(x_258); -lean_dec(x_252); -x_264 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_263); -x_265 = lean_ctor_get(x_264, 0); +x_259 = lean_ctor_get(x_257, 1); +lean_inc(x_259); +lean_dec(x_257); +x_260 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_260, 0, x_259); +x_261 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_261, 0, x_260); +x_262 = l_Lean_Elab_Term_throwError___rarg(x_258, x_261, x_3, x_231); +lean_dec(x_258); +x_263 = !lean_is_exclusive(x_262); +if (x_263 == 0) +{ +return x_262; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_264 = lean_ctor_get(x_262, 0); +x_265 = lean_ctor_get(x_262, 1); lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -lean_dec(x_264); -x_267 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_267, 0, x_258); -lean_ctor_set(x_267, 1, x_259); -lean_ctor_set(x_267, 2, x_260); -lean_ctor_set(x_267, 3, x_261); -lean_ctor_set(x_267, 4, x_262); -lean_ctor_set(x_267, 5, x_266); -x_5 = x_265; -x_6 = x_267; -goto block_8; +lean_inc(x_264); +lean_dec(x_262); +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_264); +lean_ctor_set(x_266, 1, x_265); +return x_266; } } else { -lean_object* x_268; uint8_t x_269; lean_object* x_292; uint8_t x_293; -x_268 = l_Lean_Syntax_getArg(x_225, x_29); +lean_object* x_267; uint8_t x_268; +lean_dec(x_3); +x_267 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_231); +x_268 = !lean_is_exclusive(x_267); +if (x_268 == 0) +{ +return x_267; +} +else +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; +x_269 = lean_ctor_get(x_267, 0); +x_270 = lean_ctor_get(x_267, 1); +lean_inc(x_270); +lean_inc(x_269); +lean_dec(x_267); +x_271 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_271, 0, x_269); +lean_ctor_set(x_271, 1, x_270); +return x_271; +} +} +} +} +else +{ +lean_object* x_272; uint8_t x_273; lean_object* x_1023; uint8_t x_1024; +x_272 = l_Lean_Syntax_getArg(x_225, x_128); lean_dec(x_225); -x_292 = l_Lean_nullKind___closed__2; -lean_inc(x_268); -x_293 = l_Lean_Syntax_isOfKind(x_268, x_292); -if (x_293 == 0) +x_1023 = l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; +lean_inc(x_272); +x_1024 = l_Lean_Syntax_isOfKind(x_272, x_1023); +if (x_1024 == 0) { -uint8_t x_294; -lean_dec(x_268); -x_294 = 0; -x_269 = x_294; -goto block_291; +uint8_t x_1025; +x_1025 = 0; +x_273 = x_1025; +goto block_1022; } else { -lean_object* x_295; lean_object* x_296; uint8_t x_297; -x_295 = l_Lean_Syntax_getArgs(x_268); -lean_dec(x_268); -x_296 = lean_array_get_size(x_295); -lean_dec(x_295); -x_297 = lean_nat_dec_eq(x_296, x_51); -lean_dec(x_296); -x_269 = x_297; -goto block_291; +lean_object* x_1026; lean_object* x_1027; uint8_t x_1028; +x_1026 = l_Lean_Syntax_getArgs(x_272); +x_1027 = lean_array_get_size(x_1026); +lean_dec(x_1026); +x_1028 = lean_nat_dec_eq(x_1027, x_224); +lean_dec(x_1027); +x_273 = x_1028; +goto block_1022; } -block_291: +block_1022: { -if (x_269 == 0) +if (x_273 == 0) { -lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; uint8_t x_274; -lean_dec(x_246); -lean_dec(x_183); -lean_dec(x_138); -lean_dec(x_94); -x_270 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_271 = lean_ctor_get(x_270, 1); -lean_inc(x_271); -lean_dec(x_270); -x_272 = l_Lean_Elab_Term_getEnv___rarg(x_271); -x_273 = lean_ctor_get(x_272, 1); -lean_inc(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_dec(x_272); -x_274 = !lean_is_exclusive(x_273); -if (x_274 == 0) -{ -lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; -x_275 = lean_ctor_get(x_273, 5); -x_276 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_275); -x_277 = lean_ctor_get(x_276, 0); -lean_inc(x_277); -x_278 = lean_ctor_get(x_276, 1); +lean_dec(x_223); +x_274 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_275 = lean_ctor_get(x_274, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_274, 1); +lean_inc(x_276); +lean_dec(x_274); +x_277 = l_Lean_Elab_Term_getEnv___rarg(x_276); +x_278 = lean_ctor_get(x_277, 1); lean_inc(x_278); -lean_dec(x_276); -lean_ctor_set(x_273, 5, x_278); -x_5 = x_277; -x_6 = x_273; -goto block_8; -} -else -{ -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; -x_279 = lean_ctor_get(x_273, 0); -x_280 = lean_ctor_get(x_273, 1); -x_281 = lean_ctor_get(x_273, 2); -x_282 = lean_ctor_get(x_273, 3); -x_283 = lean_ctor_get(x_273, 4); -x_284 = lean_ctor_get(x_273, 5); -lean_inc(x_284); -lean_inc(x_283); -lean_inc(x_282); -lean_inc(x_281); -lean_inc(x_280); +x_279 = lean_ctor_get(x_277, 0); lean_inc(x_279); -lean_dec(x_273); -x_285 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_284); -x_286 = lean_ctor_get(x_285, 0); +lean_dec(x_277); +x_280 = lean_ctor_get(x_278, 0); +lean_inc(x_280); +x_281 = lean_ctor_get(x_278, 1); +lean_inc(x_281); +x_282 = lean_ctor_get(x_278, 2); +lean_inc(x_282); +x_283 = lean_ctor_get(x_278, 3); +lean_inc(x_283); +x_284 = lean_ctor_get(x_278, 4); +lean_inc(x_284); +x_285 = lean_ctor_get(x_278, 5); +lean_inc(x_285); +x_286 = lean_ctor_get(x_3, 0); lean_inc(x_286); -x_287 = lean_ctor_get(x_285, 1); +x_287 = lean_ctor_get(x_286, 3); lean_inc(x_287); -lean_dec(x_285); -x_288 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_288, 0, x_279); -lean_ctor_set(x_288, 1, x_280); -lean_ctor_set(x_288, 2, x_281); -lean_ctor_set(x_288, 3, x_282); -lean_ctor_set(x_288, 4, x_283); -lean_ctor_set(x_288, 5, x_287); -x_5 = x_286; -x_6 = x_288; -goto block_8; +x_288 = lean_ctor_get(x_286, 4); +lean_inc(x_288); +lean_dec(x_286); +x_289 = lean_environment_main_module(x_279); +x_290 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_290, 0, x_289); +lean_ctor_set(x_290, 1, x_275); +lean_ctor_set(x_290, 2, x_287); +lean_ctor_set(x_290, 3, x_288); +lean_inc(x_1); +x_291 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_290, x_285); +if (lean_obj_tag(x_291) == 0) +{ +uint8_t x_292; +x_292 = !lean_is_exclusive(x_278); +if (x_292 == 0) +{ +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; +x_293 = lean_ctor_get(x_278, 5); +lean_dec(x_293); +x_294 = lean_ctor_get(x_278, 4); +lean_dec(x_294); +x_295 = lean_ctor_get(x_278, 3); +lean_dec(x_295); +x_296 = lean_ctor_get(x_278, 2); +lean_dec(x_296); +x_297 = lean_ctor_get(x_278, 1); +lean_dec(x_297); +x_298 = lean_ctor_get(x_278, 0); +lean_dec(x_298); +x_299 = lean_ctor_get(x_291, 0); +lean_inc(x_299); +x_300 = lean_ctor_get(x_291, 1); +lean_inc(x_300); +lean_dec(x_291); +lean_ctor_set(x_278, 5, x_300); +x_5 = x_299; +x_6 = x_278; +goto block_33; +} +else +{ +lean_object* x_301; lean_object* x_302; lean_object* x_303; +lean_dec(x_278); +x_301 = lean_ctor_get(x_291, 0); +lean_inc(x_301); +x_302 = lean_ctor_get(x_291, 1); +lean_inc(x_302); +lean_dec(x_291); +x_303 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_303, 0, x_280); +lean_ctor_set(x_303, 1, x_281); +lean_ctor_set(x_303, 2, x_282); +lean_ctor_set(x_303, 3, x_283); +lean_ctor_set(x_303, 4, x_284); +lean_ctor_set(x_303, 5, x_302); +x_5 = x_301; +x_6 = x_303; +goto block_33; } } else { -lean_object* x_289; lean_object* x_290; -x_289 = l_Lean_Syntax_getArg(x_183, x_95); -lean_dec(x_183); -x_290 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_94, x_246, x_138, x_289, x_2, x_3, x_4); -return x_290; -} -} -} -} -} -} -} -} -} -} -} -} -} -block_498: +lean_object* x_304; +lean_dec(x_284); +lean_dec(x_283); +lean_dec(x_282); +lean_dec(x_281); +lean_dec(x_280); +lean_dec(x_2); +lean_dec(x_1); +x_304 = lean_ctor_get(x_291, 0); +lean_inc(x_304); +lean_dec(x_291); +if (lean_obj_tag(x_304) == 0) { -if (x_330 == 0) +lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_305 = lean_ctor_get(x_304, 0); +lean_inc(x_305); +x_306 = lean_ctor_get(x_304, 1); +lean_inc(x_306); +lean_dec(x_304); +x_307 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_307, 0, x_306); +x_308 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_308, 0, x_307); +x_309 = l_Lean_Elab_Term_throwError___rarg(x_305, x_308, x_3, x_278); +lean_dec(x_305); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -if (x_329 == 0) -{ -uint8_t x_331; -lean_dec(x_140); -x_331 = 0; -x_141 = x_331; -goto block_327; +return x_309; } else { -lean_object* x_332; lean_object* x_333; uint8_t x_334; -x_332 = l_Lean_Syntax_getArgs(x_140); -lean_dec(x_140); -x_333 = lean_array_get_size(x_332); -lean_dec(x_332); -x_334 = lean_nat_dec_eq(x_333, x_29); -lean_dec(x_333); -x_141 = x_334; -goto block_327; +lean_object* x_311; lean_object* x_312; lean_object* x_313; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); +lean_inc(x_312); +lean_inc(x_311); +lean_dec(x_309); +x_313 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_313, 0, x_311); +lean_ctor_set(x_313, 1, x_312); +return x_313; } } else { -lean_object* x_335; lean_object* x_336; uint8_t x_337; uint8_t x_493; -lean_dec(x_140); -x_335 = lean_unsigned_to_nat(5u); -x_336 = l_Lean_Syntax_getArg(x_1, x_335); +lean_object* x_314; uint8_t x_315; +lean_dec(x_3); +x_314 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_278); +x_315 = !lean_is_exclusive(x_314); +if (x_315 == 0) +{ +return x_314; +} +else +{ +lean_object* x_316; lean_object* x_317; lean_object* x_318; +x_316 = lean_ctor_get(x_314, 0); +x_317 = lean_ctor_get(x_314, 1); +lean_inc(x_317); +lean_inc(x_316); +lean_dec(x_314); +x_318 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_318, 0, x_316); +lean_ctor_set(x_318, 1, x_317); +return x_318; +} +} +} +} +else +{ +lean_object* x_319; lean_object* x_320; lean_object* x_321; uint8_t x_322; lean_object* x_691; uint8_t x_692; uint8_t x_693; +x_319 = l_Lean_Syntax_getArg(x_272, x_80); +lean_dec(x_272); +x_320 = lean_unsigned_to_nat(4u); +x_321 = l_Lean_Syntax_getArg(x_1, x_320); +x_691 = l_Lean_nullKind___closed__2; +lean_inc(x_321); +x_692 = l_Lean_Syntax_isOfKind(x_321, x_691); +if (x_692 == 0) +{ +uint8_t x_1018; +x_1018 = 0; +x_693 = x_1018; +goto block_1017; +} +else +{ +lean_object* x_1019; lean_object* x_1020; uint8_t x_1021; +x_1019 = l_Lean_Syntax_getArgs(x_321); +x_1020 = lean_array_get_size(x_1019); +lean_dec(x_1019); +x_1021 = lean_nat_dec_eq(x_1020, x_128); +lean_dec(x_1020); +x_693 = x_1021; +goto block_1017; +} +block_690: +{ +if (x_322 == 0) +{ +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_dec(x_319); +lean_dec(x_223); +x_323 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_324 = lean_ctor_get(x_323, 0); +lean_inc(x_324); +x_325 = lean_ctor_get(x_323, 1); +lean_inc(x_325); +lean_dec(x_323); +x_326 = l_Lean_Elab_Term_getEnv___rarg(x_325); +x_327 = lean_ctor_get(x_326, 1); +lean_inc(x_327); +x_328 = lean_ctor_get(x_326, 0); +lean_inc(x_328); +lean_dec(x_326); +x_329 = lean_ctor_get(x_327, 0); +lean_inc(x_329); +x_330 = lean_ctor_get(x_327, 1); +lean_inc(x_330); +x_331 = lean_ctor_get(x_327, 2); +lean_inc(x_331); +x_332 = lean_ctor_get(x_327, 3); +lean_inc(x_332); +x_333 = lean_ctor_get(x_327, 4); +lean_inc(x_333); +x_334 = lean_ctor_get(x_327, 5); +lean_inc(x_334); +x_335 = lean_ctor_get(x_3, 0); +lean_inc(x_335); +x_336 = lean_ctor_get(x_335, 3); lean_inc(x_336); -x_493 = l_Lean_Syntax_isOfKind(x_336, x_328); -if (x_493 == 0) +x_337 = lean_ctor_get(x_335, 4); +lean_inc(x_337); +lean_dec(x_335); +x_338 = lean_environment_main_module(x_328); +x_339 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_339, 0, x_338); +lean_ctor_set(x_339, 1, x_324); +lean_ctor_set(x_339, 2, x_336); +lean_ctor_set(x_339, 3, x_337); +lean_inc(x_1); +x_340 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_339, x_334); +if (lean_obj_tag(x_340) == 0) { -uint8_t x_494; -x_494 = 0; -x_337 = x_494; -goto block_492; -} -else +uint8_t x_341; +x_341 = !lean_is_exclusive(x_327); +if (x_341 == 0) { -lean_object* x_495; lean_object* x_496; uint8_t x_497; -x_495 = l_Lean_Syntax_getArgs(x_336); -x_496 = lean_array_get_size(x_495); -lean_dec(x_495); -x_497 = lean_nat_dec_eq(x_496, x_29); -lean_dec(x_496); -x_337 = x_497; -goto block_492; -} -block_492: -{ -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -lean_dec(x_336); -lean_dec(x_138); -lean_dec(x_94); -x_338 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_339 = lean_ctor_get(x_338, 1); -lean_inc(x_339); -lean_dec(x_338); -x_340 = l_Lean_Elab_Term_getEnv___rarg(x_339); -x_341 = lean_ctor_get(x_340, 1); -lean_inc(x_341); -lean_dec(x_340); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; -x_343 = lean_ctor_get(x_341, 5); -x_344 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_343); -x_345 = lean_ctor_get(x_344, 0); -lean_inc(x_345); -x_346 = lean_ctor_get(x_344, 1); -lean_inc(x_346); +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; +x_342 = lean_ctor_get(x_327, 5); +lean_dec(x_342); +x_343 = lean_ctor_get(x_327, 4); +lean_dec(x_343); +x_344 = lean_ctor_get(x_327, 3); lean_dec(x_344); -lean_ctor_set(x_341, 5, x_346); -x_5 = x_345; -x_6 = x_341; -goto block_8; +x_345 = lean_ctor_get(x_327, 2); +lean_dec(x_345); +x_346 = lean_ctor_get(x_327, 1); +lean_dec(x_346); +x_347 = lean_ctor_get(x_327, 0); +lean_dec(x_347); +x_348 = lean_ctor_get(x_340, 0); +lean_inc(x_348); +x_349 = lean_ctor_get(x_340, 1); +lean_inc(x_349); +lean_dec(x_340); +lean_ctor_set(x_327, 5, x_349); +x_5 = x_348; +x_6 = x_327; +goto block_33; } else { -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; -x_347 = lean_ctor_get(x_341, 0); -x_348 = lean_ctor_get(x_341, 1); -x_349 = lean_ctor_get(x_341, 2); -x_350 = lean_ctor_get(x_341, 3); -x_351 = lean_ctor_get(x_341, 4); -x_352 = lean_ctor_get(x_341, 5); -lean_inc(x_352); -lean_inc(x_351); +lean_object* x_350; lean_object* x_351; lean_object* x_352; +lean_dec(x_327); +x_350 = lean_ctor_get(x_340, 0); lean_inc(x_350); -lean_inc(x_349); -lean_inc(x_348); -lean_inc(x_347); -lean_dec(x_341); -x_353 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_352); +x_351 = lean_ctor_get(x_340, 1); +lean_inc(x_351); +lean_dec(x_340); +x_352 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_352, 0, x_329); +lean_ctor_set(x_352, 1, x_330); +lean_ctor_set(x_352, 2, x_331); +lean_ctor_set(x_352, 3, x_332); +lean_ctor_set(x_352, 4, x_333); +lean_ctor_set(x_352, 5, x_351); +x_5 = x_350; +x_6 = x_352; +goto block_33; +} +} +else +{ +lean_object* x_353; +lean_dec(x_333); +lean_dec(x_332); +lean_dec(x_331); +lean_dec(x_330); +lean_dec(x_329); +lean_dec(x_2); +lean_dec(x_1); +x_353 = lean_ctor_get(x_340, 0); +lean_inc(x_353); +lean_dec(x_340); +if (lean_obj_tag(x_353) == 0) +{ +lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; x_354 = lean_ctor_get(x_353, 0); lean_inc(x_354); x_355 = lean_ctor_get(x_353, 1); lean_inc(x_355); lean_dec(x_353); -x_356 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_356, 0, x_347); -lean_ctor_set(x_356, 1, x_348); -lean_ctor_set(x_356, 2, x_349); -lean_ctor_set(x_356, 3, x_350); -lean_ctor_set(x_356, 4, x_351); -lean_ctor_set(x_356, 5, x_355); -x_5 = x_354; -x_6 = x_356; -goto block_8; -} +x_356 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_356, 0, x_355); +x_357 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_357, 0, x_356); +x_358 = l_Lean_Elab_Term_throwError___rarg(x_354, x_357, x_3, x_327); +lean_dec(x_354); +x_359 = !lean_is_exclusive(x_358); +if (x_359 == 0) +{ +return x_358; } else { -lean_object* x_357; uint8_t x_358; lean_object* x_485; uint8_t x_486; -x_357 = l_Lean_Syntax_getArg(x_336, x_51); -lean_dec(x_336); -x_485 = l_Lean_Parser_Term_matchAlt___closed__2; -lean_inc(x_357); -x_486 = l_Lean_Syntax_isOfKind(x_357, x_485); -if (x_486 == 0) -{ -uint8_t x_487; -x_487 = 0; -x_358 = x_487; -goto block_484; -} -else -{ -lean_object* x_488; lean_object* x_489; lean_object* x_490; uint8_t x_491; -x_488 = l_Lean_Syntax_getArgs(x_357); -x_489 = lean_array_get_size(x_488); -lean_dec(x_488); -x_490 = lean_unsigned_to_nat(3u); -x_491 = lean_nat_dec_eq(x_489, x_490); -lean_dec(x_489); -x_358 = x_491; -goto block_484; -} -block_484: -{ -if (x_358 == 0) -{ -lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; uint8_t x_363; -lean_dec(x_357); -lean_dec(x_138); -lean_dec(x_94); -x_359 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_360 = lean_ctor_get(x_359, 1); +lean_object* x_360; lean_object* x_361; lean_object* x_362; +x_360 = lean_ctor_get(x_358, 0); +x_361 = lean_ctor_get(x_358, 1); +lean_inc(x_361); lean_inc(x_360); -lean_dec(x_359); -x_361 = l_Lean_Elab_Term_getEnv___rarg(x_360); -x_362 = lean_ctor_get(x_361, 1); -lean_inc(x_362); -lean_dec(x_361); -x_363 = !lean_is_exclusive(x_362); -if (x_363 == 0) +lean_dec(x_358); +x_362 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_362, 0, x_360); +lean_ctor_set(x_362, 1, x_361); +return x_362; +} +} +else { -lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; -x_364 = lean_ctor_get(x_362, 5); -x_365 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_364); -x_366 = lean_ctor_get(x_365, 0); +lean_object* x_363; uint8_t x_364; +lean_dec(x_3); +x_363 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_327); +x_364 = !lean_is_exclusive(x_363); +if (x_364 == 0) +{ +return x_363; +} +else +{ +lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_365 = lean_ctor_get(x_363, 0); +x_366 = lean_ctor_get(x_363, 1); lean_inc(x_366); -x_367 = lean_ctor_get(x_365, 1); -lean_inc(x_367); -lean_dec(x_365); -lean_ctor_set(x_362, 5, x_367); -x_5 = x_366; -x_6 = x_362; -goto block_8; +lean_inc(x_365); +lean_dec(x_363); +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +return x_367; +} +} +} } else { -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; -x_368 = lean_ctor_get(x_362, 0); -x_369 = lean_ctor_get(x_362, 1); -x_370 = lean_ctor_get(x_362, 2); -x_371 = lean_ctor_get(x_362, 3); -x_372 = lean_ctor_get(x_362, 4); -x_373 = lean_ctor_get(x_362, 5); -lean_inc(x_373); -lean_inc(x_372); -lean_inc(x_371); -lean_inc(x_370); +lean_object* x_368; lean_object* x_369; uint8_t x_370; lean_object* x_684; uint8_t x_685; +x_368 = lean_unsigned_to_nat(5u); +x_369 = l_Lean_Syntax_getArg(x_1, x_368); +x_684 = l_Lean_nullKind___closed__2; lean_inc(x_369); -lean_inc(x_368); -lean_dec(x_362); -x_374 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_373); -x_375 = lean_ctor_get(x_374, 0); -lean_inc(x_375); -x_376 = lean_ctor_get(x_374, 1); -lean_inc(x_376); -lean_dec(x_374); -x_377 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_377, 0, x_368); -lean_ctor_set(x_377, 1, x_369); -lean_ctor_set(x_377, 2, x_370); -lean_ctor_set(x_377, 3, x_371); -lean_ctor_set(x_377, 4, x_372); -lean_ctor_set(x_377, 5, x_376); -x_5 = x_375; -x_6 = x_377; -goto block_8; -} -} -else +x_685 = l_Lean_Syntax_isOfKind(x_369, x_684); +if (x_685 == 0) { -lean_object* x_378; uint8_t x_379; uint8_t x_479; -x_378 = l_Lean_Syntax_getArg(x_357, x_51); -lean_inc(x_378); -x_479 = l_Lean_Syntax_isOfKind(x_378, x_328); -if (x_479 == 0) -{ -uint8_t x_480; -x_480 = 0; -x_379 = x_480; -goto block_478; -} -else -{ -lean_object* x_481; lean_object* x_482; uint8_t x_483; -x_481 = l_Lean_Syntax_getArgs(x_378); -x_482 = lean_array_get_size(x_481); -lean_dec(x_481); -x_483 = lean_nat_dec_eq(x_482, x_29); -lean_dec(x_482); -x_379 = x_483; -goto block_478; -} -block_478: -{ -if (x_379 == 0) -{ -lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; uint8_t x_384; -lean_dec(x_378); -lean_dec(x_357); -lean_dec(x_138); -lean_dec(x_94); -x_380 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_381 = lean_ctor_get(x_380, 1); -lean_inc(x_381); -lean_dec(x_380); -x_382 = l_Lean_Elab_Term_getEnv___rarg(x_381); -x_383 = lean_ctor_get(x_382, 1); -lean_inc(x_383); -lean_dec(x_382); -x_384 = !lean_is_exclusive(x_383); -if (x_384 == 0) -{ -lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; -x_385 = lean_ctor_get(x_383, 5); -x_386 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_385); -x_387 = lean_ctor_get(x_386, 0); -lean_inc(x_387); -x_388 = lean_ctor_get(x_386, 1); -lean_inc(x_388); -lean_dec(x_386); -lean_ctor_set(x_383, 5, x_388); -x_5 = x_387; -x_6 = x_383; -goto block_8; -} -else -{ -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; -x_389 = lean_ctor_get(x_383, 0); -x_390 = lean_ctor_get(x_383, 1); -x_391 = lean_ctor_get(x_383, 2); -x_392 = lean_ctor_get(x_383, 3); -x_393 = lean_ctor_get(x_383, 4); -x_394 = lean_ctor_get(x_383, 5); -lean_inc(x_394); -lean_inc(x_393); -lean_inc(x_392); -lean_inc(x_391); -lean_inc(x_390); -lean_inc(x_389); -lean_dec(x_383); -x_395 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_394); -x_396 = lean_ctor_get(x_395, 0); -lean_inc(x_396); -x_397 = lean_ctor_get(x_395, 1); -lean_inc(x_397); -lean_dec(x_395); -x_398 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_398, 0, x_389); -lean_ctor_set(x_398, 1, x_390); -lean_ctor_set(x_398, 2, x_391); -lean_ctor_set(x_398, 3, x_392); -lean_ctor_set(x_398, 4, x_393); -lean_ctor_set(x_398, 5, x_397); -x_5 = x_396; -x_6 = x_398; -goto block_8; -} -} -else -{ -lean_object* x_399; uint8_t x_400; lean_object* x_472; uint8_t x_473; -x_399 = l_Lean_Syntax_getArg(x_378, x_51); -lean_dec(x_378); -x_472 = l_Lean_mkTermIdFromIdent___closed__2; -lean_inc(x_399); -x_473 = l_Lean_Syntax_isOfKind(x_399, x_472); -if (x_473 == 0) -{ -uint8_t x_474; -x_474 = 0; -x_400 = x_474; -goto block_471; -} -else -{ -lean_object* x_475; lean_object* x_476; uint8_t x_477; -x_475 = l_Lean_Syntax_getArgs(x_399); -x_476 = lean_array_get_size(x_475); -lean_dec(x_475); -x_477 = lean_nat_dec_eq(x_476, x_95); -lean_dec(x_476); -x_400 = x_477; -goto block_471; -} -block_471: -{ -if (x_400 == 0) -{ -lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; uint8_t x_405; -lean_dec(x_399); -lean_dec(x_357); -lean_dec(x_138); -lean_dec(x_94); -x_401 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_402 = lean_ctor_get(x_401, 1); -lean_inc(x_402); -lean_dec(x_401); -x_403 = l_Lean_Elab_Term_getEnv___rarg(x_402); -x_404 = lean_ctor_get(x_403, 1); -lean_inc(x_404); -lean_dec(x_403); -x_405 = !lean_is_exclusive(x_404); -if (x_405 == 0) -{ -lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; -x_406 = lean_ctor_get(x_404, 5); -x_407 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_406); -x_408 = lean_ctor_get(x_407, 0); -lean_inc(x_408); -x_409 = lean_ctor_get(x_407, 1); -lean_inc(x_409); -lean_dec(x_407); -lean_ctor_set(x_404, 5, x_409); -x_5 = x_408; -x_6 = x_404; -goto block_8; -} -else -{ -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; -x_410 = lean_ctor_get(x_404, 0); -x_411 = lean_ctor_get(x_404, 1); -x_412 = lean_ctor_get(x_404, 2); -x_413 = lean_ctor_get(x_404, 3); -x_414 = lean_ctor_get(x_404, 4); -x_415 = lean_ctor_get(x_404, 5); -lean_inc(x_415); -lean_inc(x_414); -lean_inc(x_413); -lean_inc(x_412); -lean_inc(x_411); -lean_inc(x_410); -lean_dec(x_404); -x_416 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_415); -x_417 = lean_ctor_get(x_416, 0); -lean_inc(x_417); -x_418 = lean_ctor_get(x_416, 1); -lean_inc(x_418); -lean_dec(x_416); -x_419 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_419, 0, x_410); -lean_ctor_set(x_419, 1, x_411); -lean_ctor_set(x_419, 2, x_412); -lean_ctor_set(x_419, 3, x_413); -lean_ctor_set(x_419, 4, x_414); -lean_ctor_set(x_419, 5, x_418); -x_5 = x_417; -x_6 = x_419; -goto block_8; -} -} -else -{ -lean_object* x_420; lean_object* x_421; uint8_t x_422; -x_420 = l_Lean_Syntax_getArg(x_399, x_51); -x_421 = l_Lean_identKind___closed__2; -lean_inc(x_420); -x_422 = l_Lean_Syntax_isOfKind(x_420, x_421); -if (x_422 == 0) -{ -lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; uint8_t x_427; -lean_dec(x_420); -lean_dec(x_399); -lean_dec(x_357); -lean_dec(x_138); -lean_dec(x_94); -x_423 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_424 = lean_ctor_get(x_423, 1); -lean_inc(x_424); -lean_dec(x_423); -x_425 = l_Lean_Elab_Term_getEnv___rarg(x_424); -x_426 = lean_ctor_get(x_425, 1); -lean_inc(x_426); -lean_dec(x_425); -x_427 = !lean_is_exclusive(x_426); -if (x_427 == 0) -{ -lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; -x_428 = lean_ctor_get(x_426, 5); -x_429 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_428); -x_430 = lean_ctor_get(x_429, 0); -lean_inc(x_430); -x_431 = lean_ctor_get(x_429, 1); -lean_inc(x_431); -lean_dec(x_429); -lean_ctor_set(x_426, 5, x_431); -x_5 = x_430; -x_6 = x_426; -goto block_8; -} -else -{ -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; -x_432 = lean_ctor_get(x_426, 0); -x_433 = lean_ctor_get(x_426, 1); -x_434 = lean_ctor_get(x_426, 2); -x_435 = lean_ctor_get(x_426, 3); -x_436 = lean_ctor_get(x_426, 4); -x_437 = lean_ctor_get(x_426, 5); -lean_inc(x_437); -lean_inc(x_436); -lean_inc(x_435); -lean_inc(x_434); -lean_inc(x_433); -lean_inc(x_432); -lean_dec(x_426); -x_438 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_437); -x_439 = lean_ctor_get(x_438, 0); -lean_inc(x_439); -x_440 = lean_ctor_get(x_438, 1); -lean_inc(x_440); -lean_dec(x_438); -x_441 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_441, 0, x_432); -lean_ctor_set(x_441, 1, x_433); -lean_ctor_set(x_441, 2, x_434); -lean_ctor_set(x_441, 3, x_435); -lean_ctor_set(x_441, 4, x_436); -lean_ctor_set(x_441, 5, x_440); -x_5 = x_439; -x_6 = x_441; -goto block_8; -} -} -else -{ -lean_object* x_442; uint8_t x_443; uint8_t x_466; -x_442 = l_Lean_Syntax_getArg(x_399, x_29); -lean_dec(x_399); -lean_inc(x_442); -x_466 = l_Lean_Syntax_isOfKind(x_442, x_328); -if (x_466 == 0) -{ -uint8_t x_467; -lean_dec(x_442); -x_467 = 0; -x_443 = x_467; -goto block_465; -} -else -{ -lean_object* x_468; lean_object* x_469; uint8_t x_470; -x_468 = l_Lean_Syntax_getArgs(x_442); -lean_dec(x_442); -x_469 = lean_array_get_size(x_468); -lean_dec(x_468); -x_470 = lean_nat_dec_eq(x_469, x_51); -lean_dec(x_469); -x_443 = x_470; -goto block_465; -} -block_465: -{ -if (x_443 == 0) -{ -lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; uint8_t x_448; -lean_dec(x_420); -lean_dec(x_357); -lean_dec(x_138); -lean_dec(x_94); -x_444 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_445 = lean_ctor_get(x_444, 1); -lean_inc(x_445); -lean_dec(x_444); -x_446 = l_Lean_Elab_Term_getEnv___rarg(x_445); -x_447 = lean_ctor_get(x_446, 1); -lean_inc(x_447); -lean_dec(x_446); -x_448 = !lean_is_exclusive(x_447); -if (x_448 == 0) -{ -lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; -x_449 = lean_ctor_get(x_447, 5); -x_450 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_449); -x_451 = lean_ctor_get(x_450, 0); -lean_inc(x_451); -x_452 = lean_ctor_get(x_450, 1); -lean_inc(x_452); -lean_dec(x_450); -lean_ctor_set(x_447, 5, x_452); -x_5 = x_451; -x_6 = x_447; -goto block_8; -} -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; -x_453 = lean_ctor_get(x_447, 0); -x_454 = lean_ctor_get(x_447, 1); -x_455 = lean_ctor_get(x_447, 2); -x_456 = lean_ctor_get(x_447, 3); -x_457 = lean_ctor_get(x_447, 4); -x_458 = lean_ctor_get(x_447, 5); -lean_inc(x_458); -lean_inc(x_457); -lean_inc(x_456); -lean_inc(x_455); -lean_inc(x_454); -lean_inc(x_453); -lean_dec(x_447); -x_459 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_458); -x_460 = lean_ctor_get(x_459, 0); -lean_inc(x_460); -x_461 = lean_ctor_get(x_459, 1); -lean_inc(x_461); -lean_dec(x_459); -x_462 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_462, 0, x_453); -lean_ctor_set(x_462, 1, x_454); -lean_ctor_set(x_462, 2, x_455); -lean_ctor_set(x_462, 3, x_456); -lean_ctor_set(x_462, 4, x_457); -lean_ctor_set(x_462, 5, x_461); -x_5 = x_460; -x_6 = x_462; -goto block_8; -} -} -else -{ -lean_object* x_463; lean_object* x_464; -x_463 = l_Lean_Syntax_getArg(x_357, x_95); -lean_dec(x_357); -x_464 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_94, x_420, x_138, x_463, x_2, x_3, x_4); -return x_464; -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -block_878: -{ -if (x_513 == 0) -{ -if (x_512 == 0) -{ -uint8_t x_514; -x_514 = 0; -x_97 = x_514; -goto block_510; -} -else -{ -lean_object* x_515; lean_object* x_516; uint8_t x_517; -x_515 = l_Lean_Syntax_getArgs(x_96); -x_516 = lean_array_get_size(x_515); -lean_dec(x_515); -x_517 = lean_nat_dec_eq(x_516, x_29); -lean_dec(x_516); -x_97 = x_517; -goto block_510; -} -} -else -{ -lean_object* x_518; lean_object* x_519; uint8_t x_520; uint8_t x_704; uint8_t x_705; -lean_dec(x_96); -x_518 = lean_unsigned_to_nat(4u); -x_519 = l_Lean_Syntax_getArg(x_1, x_518); -lean_inc(x_519); -x_704 = l_Lean_Syntax_isOfKind(x_519, x_511); -if (x_704 == 0) -{ -uint8_t x_874; -x_874 = 0; -x_705 = x_874; -goto block_873; -} -else -{ -lean_object* x_875; lean_object* x_876; uint8_t x_877; -x_875 = l_Lean_Syntax_getArgs(x_519); -x_876 = lean_array_get_size(x_875); -lean_dec(x_875); -x_877 = lean_nat_dec_eq(x_876, x_51); -lean_dec(x_876); -x_705 = x_877; -goto block_873; -} -block_703: -{ -if (x_520 == 0) -{ -lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; uint8_t x_525; -lean_dec(x_94); -x_521 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_522 = lean_ctor_get(x_521, 1); -lean_inc(x_522); -lean_dec(x_521); -x_523 = l_Lean_Elab_Term_getEnv___rarg(x_522); -x_524 = lean_ctor_get(x_523, 1); -lean_inc(x_524); -lean_dec(x_523); -x_525 = !lean_is_exclusive(x_524); -if (x_525 == 0) -{ -lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; -x_526 = lean_ctor_get(x_524, 5); -x_527 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_526); -x_528 = lean_ctor_get(x_527, 0); -lean_inc(x_528); -x_529 = lean_ctor_get(x_527, 1); -lean_inc(x_529); -lean_dec(x_527); -lean_ctor_set(x_524, 5, x_529); -x_5 = x_528; -x_6 = x_524; -goto block_8; -} -else -{ -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; -x_530 = lean_ctor_get(x_524, 0); -x_531 = lean_ctor_get(x_524, 1); -x_532 = lean_ctor_get(x_524, 2); -x_533 = lean_ctor_get(x_524, 3); -x_534 = lean_ctor_get(x_524, 4); -x_535 = lean_ctor_get(x_524, 5); -lean_inc(x_535); -lean_inc(x_534); -lean_inc(x_533); -lean_inc(x_532); -lean_inc(x_531); -lean_inc(x_530); -lean_dec(x_524); -x_536 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_535); -x_537 = lean_ctor_get(x_536, 0); -lean_inc(x_537); -x_538 = lean_ctor_get(x_536, 1); -lean_inc(x_538); -lean_dec(x_536); -x_539 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_539, 0, x_530); -lean_ctor_set(x_539, 1, x_531); -lean_ctor_set(x_539, 2, x_532); -lean_ctor_set(x_539, 3, x_533); -lean_ctor_set(x_539, 4, x_534); -lean_ctor_set(x_539, 5, x_538); -x_5 = x_537; -x_6 = x_539; -goto block_8; -} -} -else -{ -lean_object* x_540; lean_object* x_541; uint8_t x_542; uint8_t x_698; -x_540 = lean_unsigned_to_nat(5u); -x_541 = l_Lean_Syntax_getArg(x_1, x_540); -lean_inc(x_541); -x_698 = l_Lean_Syntax_isOfKind(x_541, x_511); -if (x_698 == 0) -{ -uint8_t x_699; -x_699 = 0; -x_542 = x_699; -goto block_697; -} -else -{ -lean_object* x_700; lean_object* x_701; uint8_t x_702; -x_700 = l_Lean_Syntax_getArgs(x_541); -x_701 = lean_array_get_size(x_700); -lean_dec(x_700); -x_702 = lean_nat_dec_eq(x_701, x_29); -lean_dec(x_701); -x_542 = x_702; -goto block_697; -} -block_697: -{ -if (x_542 == 0) -{ -lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; uint8_t x_547; -lean_dec(x_541); -lean_dec(x_94); -x_543 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_544 = lean_ctor_get(x_543, 1); -lean_inc(x_544); -lean_dec(x_543); -x_545 = l_Lean_Elab_Term_getEnv___rarg(x_544); -x_546 = lean_ctor_get(x_545, 1); -lean_inc(x_546); -lean_dec(x_545); -x_547 = !lean_is_exclusive(x_546); -if (x_547 == 0) -{ -lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; -x_548 = lean_ctor_get(x_546, 5); -x_549 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_548); -x_550 = lean_ctor_get(x_549, 0); -lean_inc(x_550); -x_551 = lean_ctor_get(x_549, 1); -lean_inc(x_551); -lean_dec(x_549); -lean_ctor_set(x_546, 5, x_551); -x_5 = x_550; -x_6 = x_546; -goto block_8; -} -else -{ -lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; -x_552 = lean_ctor_get(x_546, 0); -x_553 = lean_ctor_get(x_546, 1); -x_554 = lean_ctor_get(x_546, 2); -x_555 = lean_ctor_get(x_546, 3); -x_556 = lean_ctor_get(x_546, 4); -x_557 = lean_ctor_get(x_546, 5); -lean_inc(x_557); -lean_inc(x_556); -lean_inc(x_555); -lean_inc(x_554); -lean_inc(x_553); -lean_inc(x_552); -lean_dec(x_546); -x_558 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_557); -x_559 = lean_ctor_get(x_558, 0); -lean_inc(x_559); -x_560 = lean_ctor_get(x_558, 1); -lean_inc(x_560); -lean_dec(x_558); -x_561 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_561, 0, x_552); -lean_ctor_set(x_561, 1, x_553); -lean_ctor_set(x_561, 2, x_554); -lean_ctor_set(x_561, 3, x_555); -lean_ctor_set(x_561, 4, x_556); -lean_ctor_set(x_561, 5, x_560); -x_5 = x_559; -x_6 = x_561; -goto block_8; -} -} -else -{ -lean_object* x_562; uint8_t x_563; lean_object* x_690; uint8_t x_691; -x_562 = l_Lean_Syntax_getArg(x_541, x_51); -lean_dec(x_541); -x_690 = l_Lean_Parser_Term_matchAlt___closed__2; -lean_inc(x_562); -x_691 = l_Lean_Syntax_isOfKind(x_562, x_690); -if (x_691 == 0) -{ -uint8_t x_692; -x_692 = 0; -x_563 = x_692; -goto block_689; -} -else -{ -lean_object* x_693; lean_object* x_694; lean_object* x_695; uint8_t x_696; -x_693 = l_Lean_Syntax_getArgs(x_562); -x_694 = lean_array_get_size(x_693); -lean_dec(x_693); -x_695 = lean_unsigned_to_nat(3u); -x_696 = lean_nat_dec_eq(x_694, x_695); -lean_dec(x_694); -x_563 = x_696; -goto block_689; -} -block_689: -{ -if (x_563 == 0) -{ -lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; uint8_t x_568; -lean_dec(x_562); -lean_dec(x_94); -x_564 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_565 = lean_ctor_get(x_564, 1); -lean_inc(x_565); -lean_dec(x_564); -x_566 = l_Lean_Elab_Term_getEnv___rarg(x_565); -x_567 = lean_ctor_get(x_566, 1); -lean_inc(x_567); -lean_dec(x_566); -x_568 = !lean_is_exclusive(x_567); -if (x_568 == 0) -{ -lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; -x_569 = lean_ctor_get(x_567, 5); -x_570 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_569); -x_571 = lean_ctor_get(x_570, 0); -lean_inc(x_571); -x_572 = lean_ctor_get(x_570, 1); -lean_inc(x_572); -lean_dec(x_570); -lean_ctor_set(x_567, 5, x_572); -x_5 = x_571; -x_6 = x_567; -goto block_8; -} -else -{ -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; -x_573 = lean_ctor_get(x_567, 0); -x_574 = lean_ctor_get(x_567, 1); -x_575 = lean_ctor_get(x_567, 2); -x_576 = lean_ctor_get(x_567, 3); -x_577 = lean_ctor_get(x_567, 4); -x_578 = lean_ctor_get(x_567, 5); -lean_inc(x_578); -lean_inc(x_577); -lean_inc(x_576); -lean_inc(x_575); -lean_inc(x_574); -lean_inc(x_573); -lean_dec(x_567); -x_579 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_578); -x_580 = lean_ctor_get(x_579, 0); -lean_inc(x_580); -x_581 = lean_ctor_get(x_579, 1); -lean_inc(x_581); -lean_dec(x_579); -x_582 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_582, 0, x_573); -lean_ctor_set(x_582, 1, x_574); -lean_ctor_set(x_582, 2, x_575); -lean_ctor_set(x_582, 3, x_576); -lean_ctor_set(x_582, 4, x_577); -lean_ctor_set(x_582, 5, x_581); -x_5 = x_580; -x_6 = x_582; -goto block_8; -} -} -else -{ -lean_object* x_583; uint8_t x_584; uint8_t x_684; -x_583 = l_Lean_Syntax_getArg(x_562, x_51); -lean_inc(x_583); -x_684 = l_Lean_Syntax_isOfKind(x_583, x_511); -if (x_684 == 0) -{ -uint8_t x_685; -x_685 = 0; -x_584 = x_685; +uint8_t x_686; +x_686 = 0; +x_370 = x_686; goto block_683; } else { -lean_object* x_686; lean_object* x_687; uint8_t x_688; -x_686 = l_Lean_Syntax_getArgs(x_583); -x_687 = lean_array_get_size(x_686); -lean_dec(x_686); -x_688 = lean_nat_dec_eq(x_687, x_29); +lean_object* x_687; lean_object* x_688; uint8_t x_689; +x_687 = l_Lean_Syntax_getArgs(x_369); +x_688 = lean_array_get_size(x_687); lean_dec(x_687); -x_584 = x_688; +x_689 = lean_nat_dec_eq(x_688, x_80); +lean_dec(x_688); +x_370 = x_689; goto block_683; } block_683: { -if (x_584 == 0) +if (x_370 == 0) { -lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; uint8_t x_589; -lean_dec(x_583); -lean_dec(x_562); -lean_dec(x_94); -x_585 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_586 = lean_ctor_get(x_585, 1); -lean_inc(x_586); -lean_dec(x_585); -x_587 = l_Lean_Elab_Term_getEnv___rarg(x_586); -x_588 = lean_ctor_get(x_587, 1); -lean_inc(x_588); -lean_dec(x_587); -x_589 = !lean_is_exclusive(x_588); -if (x_589 == 0) +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_dec(x_369); +lean_dec(x_319); +lean_dec(x_223); +x_371 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +lean_dec(x_371); +x_374 = l_Lean_Elab_Term_getEnv___rarg(x_373); +x_375 = lean_ctor_get(x_374, 1); +lean_inc(x_375); +x_376 = lean_ctor_get(x_374, 0); +lean_inc(x_376); +lean_dec(x_374); +x_377 = lean_ctor_get(x_375, 0); +lean_inc(x_377); +x_378 = lean_ctor_get(x_375, 1); +lean_inc(x_378); +x_379 = lean_ctor_get(x_375, 2); +lean_inc(x_379); +x_380 = lean_ctor_get(x_375, 3); +lean_inc(x_380); +x_381 = lean_ctor_get(x_375, 4); +lean_inc(x_381); +x_382 = lean_ctor_get(x_375, 5); +lean_inc(x_382); +x_383 = lean_ctor_get(x_3, 0); +lean_inc(x_383); +x_384 = lean_ctor_get(x_383, 3); +lean_inc(x_384); +x_385 = lean_ctor_get(x_383, 4); +lean_inc(x_385); +lean_dec(x_383); +x_386 = lean_environment_main_module(x_376); +x_387 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_387, 0, x_386); +lean_ctor_set(x_387, 1, x_372); +lean_ctor_set(x_387, 2, x_384); +lean_ctor_set(x_387, 3, x_385); +lean_inc(x_1); +x_388 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_387, x_382); +if (lean_obj_tag(x_388) == 0) { -lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; -x_590 = lean_ctor_get(x_588, 5); -x_591 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_590); -x_592 = lean_ctor_get(x_591, 0); -lean_inc(x_592); -x_593 = lean_ctor_get(x_591, 1); -lean_inc(x_593); -lean_dec(x_591); -lean_ctor_set(x_588, 5, x_593); -x_5 = x_592; -x_6 = x_588; -goto block_8; +uint8_t x_389; +x_389 = !lean_is_exclusive(x_375); +if (x_389 == 0) +{ +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; +x_390 = lean_ctor_get(x_375, 5); +lean_dec(x_390); +x_391 = lean_ctor_get(x_375, 4); +lean_dec(x_391); +x_392 = lean_ctor_get(x_375, 3); +lean_dec(x_392); +x_393 = lean_ctor_get(x_375, 2); +lean_dec(x_393); +x_394 = lean_ctor_get(x_375, 1); +lean_dec(x_394); +x_395 = lean_ctor_get(x_375, 0); +lean_dec(x_395); +x_396 = lean_ctor_get(x_388, 0); +lean_inc(x_396); +x_397 = lean_ctor_get(x_388, 1); +lean_inc(x_397); +lean_dec(x_388); +lean_ctor_set(x_375, 5, x_397); +x_5 = x_396; +x_6 = x_375; +goto block_33; } else { -lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; -x_594 = lean_ctor_get(x_588, 0); -x_595 = lean_ctor_get(x_588, 1); -x_596 = lean_ctor_get(x_588, 2); -x_597 = lean_ctor_get(x_588, 3); -x_598 = lean_ctor_get(x_588, 4); -x_599 = lean_ctor_get(x_588, 5); -lean_inc(x_599); +lean_object* x_398; lean_object* x_399; lean_object* x_400; +lean_dec(x_375); +x_398 = lean_ctor_get(x_388, 0); +lean_inc(x_398); +x_399 = lean_ctor_get(x_388, 1); +lean_inc(x_399); +lean_dec(x_388); +x_400 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_400, 0, x_377); +lean_ctor_set(x_400, 1, x_378); +lean_ctor_set(x_400, 2, x_379); +lean_ctor_set(x_400, 3, x_380); +lean_ctor_set(x_400, 4, x_381); +lean_ctor_set(x_400, 5, x_399); +x_5 = x_398; +x_6 = x_400; +goto block_33; +} +} +else +{ +lean_object* x_401; +lean_dec(x_381); +lean_dec(x_380); +lean_dec(x_379); +lean_dec(x_378); +lean_dec(x_377); +lean_dec(x_2); +lean_dec(x_1); +x_401 = lean_ctor_get(x_388, 0); +lean_inc(x_401); +lean_dec(x_388); +if (lean_obj_tag(x_401) == 0) +{ +lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; uint8_t x_407; +x_402 = lean_ctor_get(x_401, 0); +lean_inc(x_402); +x_403 = lean_ctor_get(x_401, 1); +lean_inc(x_403); +lean_dec(x_401); +x_404 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_404, 0, x_403); +x_405 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_405, 0, x_404); +x_406 = l_Lean_Elab_Term_throwError___rarg(x_402, x_405, x_3, x_375); +lean_dec(x_402); +x_407 = !lean_is_exclusive(x_406); +if (x_407 == 0) +{ +return x_406; +} +else +{ +lean_object* x_408; lean_object* x_409; lean_object* x_410; +x_408 = lean_ctor_get(x_406, 0); +x_409 = lean_ctor_get(x_406, 1); +lean_inc(x_409); +lean_inc(x_408); +lean_dec(x_406); +x_410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_410, 0, x_408); +lean_ctor_set(x_410, 1, x_409); +return x_410; +} +} +else +{ +lean_object* x_411; uint8_t x_412; +lean_dec(x_3); +x_411 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_375); +x_412 = !lean_is_exclusive(x_411); +if (x_412 == 0) +{ +return x_411; +} +else +{ +lean_object* x_413; lean_object* x_414; lean_object* x_415; +x_413 = lean_ctor_get(x_411, 0); +x_414 = lean_ctor_get(x_411, 1); +lean_inc(x_414); +lean_inc(x_413); +lean_dec(x_411); +x_415 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_415, 0, x_413); +lean_ctor_set(x_415, 1, x_414); +return x_415; +} +} +} +} +else +{ +lean_object* x_416; uint8_t x_417; lean_object* x_676; uint8_t x_677; +x_416 = l_Lean_Syntax_getArg(x_369, x_128); +lean_dec(x_369); +x_676 = l_Lean_Parser_Term_matchAlt___closed__2; +lean_inc(x_416); +x_677 = l_Lean_Syntax_isOfKind(x_416, x_676); +if (x_677 == 0) +{ +uint8_t x_678; +x_678 = 0; +x_417 = x_678; +goto block_675; +} +else +{ +lean_object* x_679; lean_object* x_680; lean_object* x_681; uint8_t x_682; +x_679 = l_Lean_Syntax_getArgs(x_416); +x_680 = lean_array_get_size(x_679); +lean_dec(x_679); +x_681 = lean_unsigned_to_nat(3u); +x_682 = lean_nat_dec_eq(x_680, x_681); +lean_dec(x_680); +x_417 = x_682; +goto block_675; +} +block_675: +{ +if (x_417 == 0) +{ +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_dec(x_416); +lean_dec(x_319); +lean_dec(x_223); +x_418 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_419 = lean_ctor_get(x_418, 0); +lean_inc(x_419); +x_420 = lean_ctor_get(x_418, 1); +lean_inc(x_420); +lean_dec(x_418); +x_421 = l_Lean_Elab_Term_getEnv___rarg(x_420); +x_422 = lean_ctor_get(x_421, 1); +lean_inc(x_422); +x_423 = lean_ctor_get(x_421, 0); +lean_inc(x_423); +lean_dec(x_421); +x_424 = lean_ctor_get(x_422, 0); +lean_inc(x_424); +x_425 = lean_ctor_get(x_422, 1); +lean_inc(x_425); +x_426 = lean_ctor_get(x_422, 2); +lean_inc(x_426); +x_427 = lean_ctor_get(x_422, 3); +lean_inc(x_427); +x_428 = lean_ctor_get(x_422, 4); +lean_inc(x_428); +x_429 = lean_ctor_get(x_422, 5); +lean_inc(x_429); +x_430 = lean_ctor_get(x_3, 0); +lean_inc(x_430); +x_431 = lean_ctor_get(x_430, 3); +lean_inc(x_431); +x_432 = lean_ctor_get(x_430, 4); +lean_inc(x_432); +lean_dec(x_430); +x_433 = lean_environment_main_module(x_423); +x_434 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_434, 0, x_433); +lean_ctor_set(x_434, 1, x_419); +lean_ctor_set(x_434, 2, x_431); +lean_ctor_set(x_434, 3, x_432); +lean_inc(x_1); +x_435 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_434, x_429); +if (lean_obj_tag(x_435) == 0) +{ +uint8_t x_436; +x_436 = !lean_is_exclusive(x_422); +if (x_436 == 0) +{ +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; +x_437 = lean_ctor_get(x_422, 5); +lean_dec(x_437); +x_438 = lean_ctor_get(x_422, 4); +lean_dec(x_438); +x_439 = lean_ctor_get(x_422, 3); +lean_dec(x_439); +x_440 = lean_ctor_get(x_422, 2); +lean_dec(x_440); +x_441 = lean_ctor_get(x_422, 1); +lean_dec(x_441); +x_442 = lean_ctor_get(x_422, 0); +lean_dec(x_442); +x_443 = lean_ctor_get(x_435, 0); +lean_inc(x_443); +x_444 = lean_ctor_get(x_435, 1); +lean_inc(x_444); +lean_dec(x_435); +lean_ctor_set(x_422, 5, x_444); +x_5 = x_443; +x_6 = x_422; +goto block_33; +} +else +{ +lean_object* x_445; lean_object* x_446; lean_object* x_447; +lean_dec(x_422); +x_445 = lean_ctor_get(x_435, 0); +lean_inc(x_445); +x_446 = lean_ctor_get(x_435, 1); +lean_inc(x_446); +lean_dec(x_435); +x_447 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_447, 0, x_424); +lean_ctor_set(x_447, 1, x_425); +lean_ctor_set(x_447, 2, x_426); +lean_ctor_set(x_447, 3, x_427); +lean_ctor_set(x_447, 4, x_428); +lean_ctor_set(x_447, 5, x_446); +x_5 = x_445; +x_6 = x_447; +goto block_33; +} +} +else +{ +lean_object* x_448; +lean_dec(x_428); +lean_dec(x_427); +lean_dec(x_426); +lean_dec(x_425); +lean_dec(x_424); +lean_dec(x_2); +lean_dec(x_1); +x_448 = lean_ctor_get(x_435, 0); +lean_inc(x_448); +lean_dec(x_435); +if (lean_obj_tag(x_448) == 0) +{ +lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; uint8_t x_454; +x_449 = lean_ctor_get(x_448, 0); +lean_inc(x_449); +x_450 = lean_ctor_get(x_448, 1); +lean_inc(x_450); +lean_dec(x_448); +x_451 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_451, 0, x_450); +x_452 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_452, 0, x_451); +x_453 = l_Lean_Elab_Term_throwError___rarg(x_449, x_452, x_3, x_422); +lean_dec(x_449); +x_454 = !lean_is_exclusive(x_453); +if (x_454 == 0) +{ +return x_453; +} +else +{ +lean_object* x_455; lean_object* x_456; lean_object* x_457; +x_455 = lean_ctor_get(x_453, 0); +x_456 = lean_ctor_get(x_453, 1); +lean_inc(x_456); +lean_inc(x_455); +lean_dec(x_453); +x_457 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_457, 0, x_455); +lean_ctor_set(x_457, 1, x_456); +return x_457; +} +} +else +{ +lean_object* x_458; uint8_t x_459; +lean_dec(x_3); +x_458 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_422); +x_459 = !lean_is_exclusive(x_458); +if (x_459 == 0) +{ +return x_458; +} +else +{ +lean_object* x_460; lean_object* x_461; lean_object* x_462; +x_460 = lean_ctor_get(x_458, 0); +x_461 = lean_ctor_get(x_458, 1); +lean_inc(x_461); +lean_inc(x_460); +lean_dec(x_458); +x_462 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_462, 0, x_460); +lean_ctor_set(x_462, 1, x_461); +return x_462; +} +} +} +} +else +{ +lean_object* x_463; uint8_t x_464; lean_object* x_669; uint8_t x_670; +x_463 = l_Lean_Syntax_getArg(x_416, x_128); +x_669 = l_Lean_nullKind___closed__2; +lean_inc(x_463); +x_670 = l_Lean_Syntax_isOfKind(x_463, x_669); +if (x_670 == 0) +{ +uint8_t x_671; +x_671 = 0; +x_464 = x_671; +goto block_668; +} +else +{ +lean_object* x_672; lean_object* x_673; uint8_t x_674; +x_672 = l_Lean_Syntax_getArgs(x_463); +x_673 = lean_array_get_size(x_672); +lean_dec(x_672); +x_674 = lean_nat_dec_eq(x_673, x_80); +lean_dec(x_673); +x_464 = x_674; +goto block_668; +} +block_668: +{ +if (x_464 == 0) +{ +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_dec(x_463); +lean_dec(x_416); +lean_dec(x_319); +lean_dec(x_223); +x_465 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_466 = lean_ctor_get(x_465, 0); +lean_inc(x_466); +x_467 = lean_ctor_get(x_465, 1); +lean_inc(x_467); +lean_dec(x_465); +x_468 = l_Lean_Elab_Term_getEnv___rarg(x_467); +x_469 = lean_ctor_get(x_468, 1); +lean_inc(x_469); +x_470 = lean_ctor_get(x_468, 0); +lean_inc(x_470); +lean_dec(x_468); +x_471 = lean_ctor_get(x_469, 0); +lean_inc(x_471); +x_472 = lean_ctor_get(x_469, 1); +lean_inc(x_472); +x_473 = lean_ctor_get(x_469, 2); +lean_inc(x_473); +x_474 = lean_ctor_get(x_469, 3); +lean_inc(x_474); +x_475 = lean_ctor_get(x_469, 4); +lean_inc(x_475); +x_476 = lean_ctor_get(x_469, 5); +lean_inc(x_476); +x_477 = lean_ctor_get(x_3, 0); +lean_inc(x_477); +x_478 = lean_ctor_get(x_477, 3); +lean_inc(x_478); +x_479 = lean_ctor_get(x_477, 4); +lean_inc(x_479); +lean_dec(x_477); +x_480 = lean_environment_main_module(x_470); +x_481 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_481, 0, x_480); +lean_ctor_set(x_481, 1, x_466); +lean_ctor_set(x_481, 2, x_478); +lean_ctor_set(x_481, 3, x_479); +lean_inc(x_1); +x_482 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_481, x_476); +if (lean_obj_tag(x_482) == 0) +{ +uint8_t x_483; +x_483 = !lean_is_exclusive(x_469); +if (x_483 == 0) +{ +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; +x_484 = lean_ctor_get(x_469, 5); +lean_dec(x_484); +x_485 = lean_ctor_get(x_469, 4); +lean_dec(x_485); +x_486 = lean_ctor_get(x_469, 3); +lean_dec(x_486); +x_487 = lean_ctor_get(x_469, 2); +lean_dec(x_487); +x_488 = lean_ctor_get(x_469, 1); +lean_dec(x_488); +x_489 = lean_ctor_get(x_469, 0); +lean_dec(x_489); +x_490 = lean_ctor_get(x_482, 0); +lean_inc(x_490); +x_491 = lean_ctor_get(x_482, 1); +lean_inc(x_491); +lean_dec(x_482); +lean_ctor_set(x_469, 5, x_491); +x_5 = x_490; +x_6 = x_469; +goto block_33; +} +else +{ +lean_object* x_492; lean_object* x_493; lean_object* x_494; +lean_dec(x_469); +x_492 = lean_ctor_get(x_482, 0); +lean_inc(x_492); +x_493 = lean_ctor_get(x_482, 1); +lean_inc(x_493); +lean_dec(x_482); +x_494 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_494, 0, x_471); +lean_ctor_set(x_494, 1, x_472); +lean_ctor_set(x_494, 2, x_473); +lean_ctor_set(x_494, 3, x_474); +lean_ctor_set(x_494, 4, x_475); +lean_ctor_set(x_494, 5, x_493); +x_5 = x_492; +x_6 = x_494; +goto block_33; +} +} +else +{ +lean_object* x_495; +lean_dec(x_475); +lean_dec(x_474); +lean_dec(x_473); +lean_dec(x_472); +lean_dec(x_471); +lean_dec(x_2); +lean_dec(x_1); +x_495 = lean_ctor_get(x_482, 0); +lean_inc(x_495); +lean_dec(x_482); +if (lean_obj_tag(x_495) == 0) +{ +lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; uint8_t x_501; +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_alloc_ctor(2, 1, 0); +lean_ctor_set(x_498, 0, x_497); +x_499 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_499, 0, x_498); +x_500 = l_Lean_Elab_Term_throwError___rarg(x_496, x_499, x_3, x_469); +lean_dec(x_496); +x_501 = !lean_is_exclusive(x_500); +if (x_501 == 0) +{ +return x_500; +} +else +{ +lean_object* x_502; lean_object* x_503; lean_object* x_504; +x_502 = lean_ctor_get(x_500, 0); +x_503 = lean_ctor_get(x_500, 1); +lean_inc(x_503); +lean_inc(x_502); +lean_dec(x_500); +x_504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_504, 0, x_502); +lean_ctor_set(x_504, 1, x_503); +return x_504; +} +} +else +{ +lean_object* x_505; uint8_t x_506; +lean_dec(x_3); +x_505 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_469); +x_506 = !lean_is_exclusive(x_505); +if (x_506 == 0) +{ +return x_505; +} +else +{ +lean_object* x_507; lean_object* x_508; lean_object* x_509; +x_507 = lean_ctor_get(x_505, 0); +x_508 = lean_ctor_get(x_505, 1); +lean_inc(x_508); +lean_inc(x_507); +lean_dec(x_505); +x_509 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_509, 0, x_507); +lean_ctor_set(x_509, 1, x_508); +return x_509; +} +} +} +} +else +{ +lean_object* x_510; uint8_t x_511; lean_object* x_662; uint8_t x_663; +x_510 = l_Lean_Syntax_getArg(x_463, x_128); +lean_dec(x_463); +x_662 = l_Lean_mkTermIdFromIdent___closed__2; +lean_inc(x_510); +x_663 = l_Lean_Syntax_isOfKind(x_510, x_662); +if (x_663 == 0) +{ +uint8_t x_664; +x_664 = 0; +x_511 = x_664; +goto block_661; +} +else +{ +lean_object* x_665; lean_object* x_666; uint8_t x_667; +x_665 = l_Lean_Syntax_getArgs(x_510); +x_666 = lean_array_get_size(x_665); +lean_dec(x_665); +x_667 = lean_nat_dec_eq(x_666, x_224); +lean_dec(x_666); +x_511 = x_667; +goto block_661; +} +block_661: +{ +if (x_511 == 0) +{ +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_dec(x_510); +lean_dec(x_416); +lean_dec(x_319); +lean_dec(x_223); +x_512 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_513 = lean_ctor_get(x_512, 0); +lean_inc(x_513); +x_514 = lean_ctor_get(x_512, 1); +lean_inc(x_514); +lean_dec(x_512); +x_515 = l_Lean_Elab_Term_getEnv___rarg(x_514); +x_516 = lean_ctor_get(x_515, 1); +lean_inc(x_516); +x_517 = lean_ctor_get(x_515, 0); +lean_inc(x_517); +lean_dec(x_515); +x_518 = lean_ctor_get(x_516, 0); +lean_inc(x_518); +x_519 = lean_ctor_get(x_516, 1); +lean_inc(x_519); +x_520 = lean_ctor_get(x_516, 2); +lean_inc(x_520); +x_521 = lean_ctor_get(x_516, 3); +lean_inc(x_521); +x_522 = lean_ctor_get(x_516, 4); +lean_inc(x_522); +x_523 = lean_ctor_get(x_516, 5); +lean_inc(x_523); +x_524 = lean_ctor_get(x_3, 0); +lean_inc(x_524); +x_525 = lean_ctor_get(x_524, 3); +lean_inc(x_525); +x_526 = lean_ctor_get(x_524, 4); +lean_inc(x_526); +lean_dec(x_524); +x_527 = lean_environment_main_module(x_517); +x_528 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_528, 0, x_527); +lean_ctor_set(x_528, 1, x_513); +lean_ctor_set(x_528, 2, x_525); +lean_ctor_set(x_528, 3, x_526); +lean_inc(x_1); +x_529 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_528, x_523); +if (lean_obj_tag(x_529) == 0) +{ +uint8_t x_530; +x_530 = !lean_is_exclusive(x_516); +if (x_530 == 0) +{ +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; +x_531 = lean_ctor_get(x_516, 5); +lean_dec(x_531); +x_532 = lean_ctor_get(x_516, 4); +lean_dec(x_532); +x_533 = lean_ctor_get(x_516, 3); +lean_dec(x_533); +x_534 = lean_ctor_get(x_516, 2); +lean_dec(x_534); +x_535 = lean_ctor_get(x_516, 1); +lean_dec(x_535); +x_536 = lean_ctor_get(x_516, 0); +lean_dec(x_536); +x_537 = lean_ctor_get(x_529, 0); +lean_inc(x_537); +x_538 = lean_ctor_get(x_529, 1); +lean_inc(x_538); +lean_dec(x_529); +lean_ctor_set(x_516, 5, x_538); +x_5 = x_537; +x_6 = x_516; +goto block_33; +} +else +{ +lean_object* x_539; lean_object* x_540; lean_object* x_541; +lean_dec(x_516); +x_539 = lean_ctor_get(x_529, 0); +lean_inc(x_539); +x_540 = lean_ctor_get(x_529, 1); +lean_inc(x_540); +lean_dec(x_529); +x_541 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_541, 0, x_518); +lean_ctor_set(x_541, 1, x_519); +lean_ctor_set(x_541, 2, x_520); +lean_ctor_set(x_541, 3, x_521); +lean_ctor_set(x_541, 4, x_522); +lean_ctor_set(x_541, 5, x_540); +x_5 = x_539; +x_6 = x_541; +goto block_33; +} +} +else +{ +lean_object* x_542; +lean_dec(x_522); +lean_dec(x_521); +lean_dec(x_520); +lean_dec(x_519); +lean_dec(x_518); +lean_dec(x_2); +lean_dec(x_1); +x_542 = lean_ctor_get(x_529, 0); +lean_inc(x_542); +lean_dec(x_529); +if (lean_obj_tag(x_542) == 0) +{ +lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; uint8_t x_548; +x_543 = lean_ctor_get(x_542, 0); +lean_inc(x_543); +x_544 = lean_ctor_get(x_542, 1); +lean_inc(x_544); +lean_dec(x_542); +x_545 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_545, 0, x_544); +x_546 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_546, 0, x_545); +x_547 = l_Lean_Elab_Term_throwError___rarg(x_543, x_546, x_3, x_516); +lean_dec(x_543); +x_548 = !lean_is_exclusive(x_547); +if (x_548 == 0) +{ +return x_547; +} +else +{ +lean_object* x_549; lean_object* x_550; lean_object* x_551; +x_549 = lean_ctor_get(x_547, 0); +x_550 = lean_ctor_get(x_547, 1); +lean_inc(x_550); +lean_inc(x_549); +lean_dec(x_547); +x_551 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_551, 0, x_549); +lean_ctor_set(x_551, 1, x_550); +return x_551; +} +} +else +{ +lean_object* x_552; uint8_t x_553; +lean_dec(x_3); +x_552 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_516); +x_553 = !lean_is_exclusive(x_552); +if (x_553 == 0) +{ +return x_552; +} +else +{ +lean_object* x_554; lean_object* x_555; lean_object* x_556; +x_554 = lean_ctor_get(x_552, 0); +x_555 = lean_ctor_get(x_552, 1); +lean_inc(x_555); +lean_inc(x_554); +lean_dec(x_552); +x_556 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_556, 0, x_554); +lean_ctor_set(x_556, 1, x_555); +return x_556; +} +} +} +} +else +{ +lean_object* x_557; lean_object* x_558; uint8_t x_559; +x_557 = l_Lean_Syntax_getArg(x_510, x_128); +x_558 = l_Lean_identKind___closed__2; +lean_inc(x_557); +x_559 = l_Lean_Syntax_isOfKind(x_557, x_558); +if (x_559 == 0) +{ +lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; +lean_dec(x_557); +lean_dec(x_510); +lean_dec(x_416); +lean_dec(x_319); +lean_dec(x_223); +x_560 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_561 = lean_ctor_get(x_560, 0); +lean_inc(x_561); +x_562 = lean_ctor_get(x_560, 1); +lean_inc(x_562); +lean_dec(x_560); +x_563 = l_Lean_Elab_Term_getEnv___rarg(x_562); +x_564 = lean_ctor_get(x_563, 1); +lean_inc(x_564); +x_565 = lean_ctor_get(x_563, 0); +lean_inc(x_565); +lean_dec(x_563); +x_566 = lean_ctor_get(x_564, 0); +lean_inc(x_566); +x_567 = lean_ctor_get(x_564, 1); +lean_inc(x_567); +x_568 = lean_ctor_get(x_564, 2); +lean_inc(x_568); +x_569 = lean_ctor_get(x_564, 3); +lean_inc(x_569); +x_570 = lean_ctor_get(x_564, 4); +lean_inc(x_570); +x_571 = lean_ctor_get(x_564, 5); +lean_inc(x_571); +x_572 = lean_ctor_get(x_3, 0); +lean_inc(x_572); +x_573 = lean_ctor_get(x_572, 3); +lean_inc(x_573); +x_574 = lean_ctor_get(x_572, 4); +lean_inc(x_574); +lean_dec(x_572); +x_575 = lean_environment_main_module(x_565); +x_576 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_576, 0, x_575); +lean_ctor_set(x_576, 1, x_561); +lean_ctor_set(x_576, 2, x_573); +lean_ctor_set(x_576, 3, x_574); +lean_inc(x_1); +x_577 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_576, x_571); +if (lean_obj_tag(x_577) == 0) +{ +uint8_t x_578; +x_578 = !lean_is_exclusive(x_564); +if (x_578 == 0) +{ +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; +x_579 = lean_ctor_get(x_564, 5); +lean_dec(x_579); +x_580 = lean_ctor_get(x_564, 4); +lean_dec(x_580); +x_581 = lean_ctor_get(x_564, 3); +lean_dec(x_581); +x_582 = lean_ctor_get(x_564, 2); +lean_dec(x_582); +x_583 = lean_ctor_get(x_564, 1); +lean_dec(x_583); +x_584 = lean_ctor_get(x_564, 0); +lean_dec(x_584); +x_585 = lean_ctor_get(x_577, 0); +lean_inc(x_585); +x_586 = lean_ctor_get(x_577, 1); +lean_inc(x_586); +lean_dec(x_577); +lean_ctor_set(x_564, 5, x_586); +x_5 = x_585; +x_6 = x_564; +goto block_33; +} +else +{ +lean_object* x_587; lean_object* x_588; lean_object* x_589; +lean_dec(x_564); +x_587 = lean_ctor_get(x_577, 0); +lean_inc(x_587); +x_588 = lean_ctor_get(x_577, 1); +lean_inc(x_588); +lean_dec(x_577); +x_589 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_589, 0, x_566); +lean_ctor_set(x_589, 1, x_567); +lean_ctor_set(x_589, 2, x_568); +lean_ctor_set(x_589, 3, x_569); +lean_ctor_set(x_589, 4, x_570); +lean_ctor_set(x_589, 5, x_588); +x_5 = x_587; +x_6 = x_589; +goto block_33; +} +} +else +{ +lean_object* x_590; +lean_dec(x_570); +lean_dec(x_569); +lean_dec(x_568); +lean_dec(x_567); +lean_dec(x_566); +lean_dec(x_2); +lean_dec(x_1); +x_590 = lean_ctor_get(x_577, 0); +lean_inc(x_590); +lean_dec(x_577); +if (lean_obj_tag(x_590) == 0) +{ +lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; uint8_t x_596; +x_591 = lean_ctor_get(x_590, 0); +lean_inc(x_591); +x_592 = lean_ctor_get(x_590, 1); +lean_inc(x_592); +lean_dec(x_590); +x_593 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_593, 0, x_592); +x_594 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_594, 0, x_593); +x_595 = l_Lean_Elab_Term_throwError___rarg(x_591, x_594, x_3, x_564); +lean_dec(x_591); +x_596 = !lean_is_exclusive(x_595); +if (x_596 == 0) +{ +return x_595; +} +else +{ +lean_object* x_597; lean_object* x_598; lean_object* x_599; +x_597 = lean_ctor_get(x_595, 0); +x_598 = lean_ctor_get(x_595, 1); lean_inc(x_598); lean_inc(x_597); -lean_inc(x_596); -lean_inc(x_595); -lean_inc(x_594); -lean_dec(x_588); -x_600 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_599); -x_601 = lean_ctor_get(x_600, 0); -lean_inc(x_601); -x_602 = lean_ctor_get(x_600, 1); +lean_dec(x_595); +x_599 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_599, 0, x_597); +lean_ctor_set(x_599, 1, x_598); +return x_599; +} +} +else +{ +lean_object* x_600; uint8_t x_601; +lean_dec(x_3); +x_600 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_564); +x_601 = !lean_is_exclusive(x_600); +if (x_601 == 0) +{ +return x_600; +} +else +{ +lean_object* x_602; lean_object* x_603; lean_object* x_604; +x_602 = lean_ctor_get(x_600, 0); +x_603 = lean_ctor_get(x_600, 1); +lean_inc(x_603); lean_inc(x_602); lean_dec(x_600); -x_603 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_603, 0, x_594); -lean_ctor_set(x_603, 1, x_595); -lean_ctor_set(x_603, 2, x_596); -lean_ctor_set(x_603, 3, x_597); -lean_ctor_set(x_603, 4, x_598); -lean_ctor_set(x_603, 5, x_602); -x_5 = x_601; -x_6 = x_603; -goto block_8; +x_604 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_604, 0, x_602); +lean_ctor_set(x_604, 1, x_603); +return x_604; +} +} } } else { -lean_object* x_604; uint8_t x_605; lean_object* x_677; uint8_t x_678; -x_604 = l_Lean_Syntax_getArg(x_583, x_51); -lean_dec(x_583); -x_677 = l_Lean_mkTermIdFromIdent___closed__2; -lean_inc(x_604); -x_678 = l_Lean_Syntax_isOfKind(x_604, x_677); -if (x_678 == 0) +lean_object* x_605; uint8_t x_606; lean_object* x_655; uint8_t x_656; +x_605 = l_Lean_Syntax_getArg(x_510, x_80); +lean_dec(x_510); +x_655 = l_Lean_nullKind___closed__2; +lean_inc(x_605); +x_656 = l_Lean_Syntax_isOfKind(x_605, x_655); +if (x_656 == 0) { -uint8_t x_679; -x_679 = 0; -x_605 = x_679; -goto block_676; +uint8_t x_657; +lean_dec(x_605); +x_657 = 0; +x_606 = x_657; +goto block_654; } else { -lean_object* x_680; lean_object* x_681; uint8_t x_682; -x_680 = l_Lean_Syntax_getArgs(x_604); -x_681 = lean_array_get_size(x_680); -lean_dec(x_680); -x_682 = lean_nat_dec_eq(x_681, x_95); -lean_dec(x_681); -x_605 = x_682; -goto block_676; +lean_object* x_658; lean_object* x_659; uint8_t x_660; +x_658 = l_Lean_Syntax_getArgs(x_605); +lean_dec(x_605); +x_659 = lean_array_get_size(x_658); +lean_dec(x_658); +x_660 = lean_nat_dec_eq(x_659, x_128); +lean_dec(x_659); +x_606 = x_660; +goto block_654; } -block_676: +block_654: { -if (x_605 == 0) +if (x_606 == 0) { -lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; uint8_t x_610; -lean_dec(x_604); -lean_dec(x_562); -lean_dec(x_94); -x_606 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_607 = lean_ctor_get(x_606, 1); -lean_inc(x_607); -lean_dec(x_606); -x_608 = l_Lean_Elab_Term_getEnv___rarg(x_607); -x_609 = lean_ctor_get(x_608, 1); +lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; +lean_dec(x_557); +lean_dec(x_416); +lean_dec(x_319); +lean_dec(x_223); +x_607 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_608 = lean_ctor_get(x_607, 0); +lean_inc(x_608); +x_609 = lean_ctor_get(x_607, 1); lean_inc(x_609); -lean_dec(x_608); -x_610 = !lean_is_exclusive(x_609); -if (x_610 == 0) -{ -lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; -x_611 = lean_ctor_get(x_609, 5); -x_612 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_611); -x_613 = lean_ctor_get(x_612, 0); +lean_dec(x_607); +x_610 = l_Lean_Elab_Term_getEnv___rarg(x_609); +x_611 = lean_ctor_get(x_610, 1); +lean_inc(x_611); +x_612 = lean_ctor_get(x_610, 0); +lean_inc(x_612); +lean_dec(x_610); +x_613 = lean_ctor_get(x_611, 0); lean_inc(x_613); -x_614 = lean_ctor_get(x_612, 1); +x_614 = lean_ctor_get(x_611, 1); lean_inc(x_614); -lean_dec(x_612); -lean_ctor_set(x_609, 5, x_614); -x_5 = x_613; -x_6 = x_609; -goto block_8; -} -else -{ -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; -x_615 = lean_ctor_get(x_609, 0); -x_616 = lean_ctor_get(x_609, 1); -x_617 = lean_ctor_get(x_609, 2); -x_618 = lean_ctor_get(x_609, 3); -x_619 = lean_ctor_get(x_609, 4); -x_620 = lean_ctor_get(x_609, 5); -lean_inc(x_620); -lean_inc(x_619); -lean_inc(x_618); -lean_inc(x_617); -lean_inc(x_616); +x_615 = lean_ctor_get(x_611, 2); lean_inc(x_615); -lean_dec(x_609); -x_621 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_620); -x_622 = lean_ctor_get(x_621, 0); -lean_inc(x_622); -x_623 = lean_ctor_get(x_621, 1); -lean_inc(x_623); -lean_dec(x_621); -x_624 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_624, 0, x_615); -lean_ctor_set(x_624, 1, x_616); -lean_ctor_set(x_624, 2, x_617); -lean_ctor_set(x_624, 3, x_618); -lean_ctor_set(x_624, 4, x_619); -lean_ctor_set(x_624, 5, x_623); -x_5 = x_622; -x_6 = x_624; -goto block_8; -} -} -else +x_616 = lean_ctor_get(x_611, 3); +lean_inc(x_616); +x_617 = lean_ctor_get(x_611, 4); +lean_inc(x_617); +x_618 = lean_ctor_get(x_611, 5); +lean_inc(x_618); +x_619 = lean_ctor_get(x_3, 0); +lean_inc(x_619); +x_620 = lean_ctor_get(x_619, 3); +lean_inc(x_620); +x_621 = lean_ctor_get(x_619, 4); +lean_inc(x_621); +lean_dec(x_619); +x_622 = lean_environment_main_module(x_612); +x_623 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_623, 0, x_622); +lean_ctor_set(x_623, 1, x_608); +lean_ctor_set(x_623, 2, x_620); +lean_ctor_set(x_623, 3, x_621); +lean_inc(x_1); +x_624 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_623, x_618); +if (lean_obj_tag(x_624) == 0) { -lean_object* x_625; lean_object* x_626; uint8_t x_627; -x_625 = l_Lean_Syntax_getArg(x_604, x_51); -x_626 = l_Lean_identKind___closed__2; -lean_inc(x_625); -x_627 = l_Lean_Syntax_isOfKind(x_625, x_626); -if (x_627 == 0) +uint8_t x_625; +x_625 = !lean_is_exclusive(x_611); +if (x_625 == 0) { -lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; uint8_t x_632; -lean_dec(x_625); -lean_dec(x_604); -lean_dec(x_562); -lean_dec(x_94); -x_628 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_629 = lean_ctor_get(x_628, 1); -lean_inc(x_629); +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; +x_626 = lean_ctor_get(x_611, 5); +lean_dec(x_626); +x_627 = lean_ctor_get(x_611, 4); +lean_dec(x_627); +x_628 = lean_ctor_get(x_611, 3); lean_dec(x_628); -x_630 = l_Lean_Elab_Term_getEnv___rarg(x_629); -x_631 = lean_ctor_get(x_630, 1); -lean_inc(x_631); +x_629 = lean_ctor_get(x_611, 2); +lean_dec(x_629); +x_630 = lean_ctor_get(x_611, 1); lean_dec(x_630); -x_632 = !lean_is_exclusive(x_631); -if (x_632 == 0) -{ -lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; -x_633 = lean_ctor_get(x_631, 5); -x_634 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_633); -x_635 = lean_ctor_get(x_634, 0); -lean_inc(x_635); -x_636 = lean_ctor_get(x_634, 1); -lean_inc(x_636); -lean_dec(x_634); -lean_ctor_set(x_631, 5, x_636); -x_5 = x_635; -x_6 = x_631; -goto block_8; -} -else -{ -lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; -x_637 = lean_ctor_get(x_631, 0); -x_638 = lean_ctor_get(x_631, 1); -x_639 = lean_ctor_get(x_631, 2); -x_640 = lean_ctor_get(x_631, 3); -x_641 = lean_ctor_get(x_631, 4); -x_642 = lean_ctor_get(x_631, 5); -lean_inc(x_642); -lean_inc(x_641); -lean_inc(x_640); -lean_inc(x_639); -lean_inc(x_638); -lean_inc(x_637); +x_631 = lean_ctor_get(x_611, 0); lean_dec(x_631); -x_643 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_642); -x_644 = lean_ctor_get(x_643, 0); -lean_inc(x_644); -x_645 = lean_ctor_get(x_643, 1); +x_632 = lean_ctor_get(x_624, 0); +lean_inc(x_632); +x_633 = lean_ctor_get(x_624, 1); +lean_inc(x_633); +lean_dec(x_624); +lean_ctor_set(x_611, 5, x_633); +x_5 = x_632; +x_6 = x_611; +goto block_33; +} +else +{ +lean_object* x_634; lean_object* x_635; lean_object* x_636; +lean_dec(x_611); +x_634 = lean_ctor_get(x_624, 0); +lean_inc(x_634); +x_635 = lean_ctor_get(x_624, 1); +lean_inc(x_635); +lean_dec(x_624); +x_636 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_636, 0, x_613); +lean_ctor_set(x_636, 1, x_614); +lean_ctor_set(x_636, 2, x_615); +lean_ctor_set(x_636, 3, x_616); +lean_ctor_set(x_636, 4, x_617); +lean_ctor_set(x_636, 5, x_635); +x_5 = x_634; +x_6 = x_636; +goto block_33; +} +} +else +{ +lean_object* x_637; +lean_dec(x_617); +lean_dec(x_616); +lean_dec(x_615); +lean_dec(x_614); +lean_dec(x_613); +lean_dec(x_2); +lean_dec(x_1); +x_637 = lean_ctor_get(x_624, 0); +lean_inc(x_637); +lean_dec(x_624); +if (lean_obj_tag(x_637) == 0) +{ +lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; uint8_t x_643; +x_638 = lean_ctor_get(x_637, 0); +lean_inc(x_638); +x_639 = lean_ctor_get(x_637, 1); +lean_inc(x_639); +lean_dec(x_637); +x_640 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_640, 0, x_639); +x_641 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_641, 0, x_640); +x_642 = l_Lean_Elab_Term_throwError___rarg(x_638, x_641, x_3, x_611); +lean_dec(x_638); +x_643 = !lean_is_exclusive(x_642); +if (x_643 == 0) +{ +return x_642; +} +else +{ +lean_object* x_644; lean_object* x_645; lean_object* x_646; +x_644 = lean_ctor_get(x_642, 0); +x_645 = lean_ctor_get(x_642, 1); lean_inc(x_645); -lean_dec(x_643); -x_646 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_646, 0, x_637); -lean_ctor_set(x_646, 1, x_638); -lean_ctor_set(x_646, 2, x_639); -lean_ctor_set(x_646, 3, x_640); -lean_ctor_set(x_646, 4, x_641); -lean_ctor_set(x_646, 5, x_645); -x_5 = x_644; -x_6 = x_646; -goto block_8; +lean_inc(x_644); +lean_dec(x_642); +x_646 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_646, 0, x_644); +lean_ctor_set(x_646, 1, x_645); +return x_646; } } else { -lean_object* x_647; uint8_t x_648; uint8_t x_671; -x_647 = l_Lean_Syntax_getArg(x_604, x_29); -lean_dec(x_604); -lean_inc(x_647); -x_671 = l_Lean_Syntax_isOfKind(x_647, x_511); -if (x_671 == 0) -{ -uint8_t x_672; -lean_dec(x_647); -x_672 = 0; -x_648 = x_672; -goto block_670; -} -else -{ -lean_object* x_673; lean_object* x_674; uint8_t x_675; -x_673 = l_Lean_Syntax_getArgs(x_647); -lean_dec(x_647); -x_674 = lean_array_get_size(x_673); -lean_dec(x_673); -x_675 = lean_nat_dec_eq(x_674, x_51); -lean_dec(x_674); -x_648 = x_675; -goto block_670; -} -block_670: -{ +lean_object* x_647; uint8_t x_648; +lean_dec(x_3); +x_647 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_611); +x_648 = !lean_is_exclusive(x_647); if (x_648 == 0) { -lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; uint8_t x_653; -lean_dec(x_625); -lean_dec(x_562); -lean_dec(x_94); -x_649 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_650 = lean_ctor_get(x_649, 1); +return x_647; +} +else +{ +lean_object* x_649; lean_object* x_650; lean_object* x_651; +x_649 = lean_ctor_get(x_647, 0); +x_650 = lean_ctor_get(x_647, 1); lean_inc(x_650); -lean_dec(x_649); -x_651 = l_Lean_Elab_Term_getEnv___rarg(x_650); -x_652 = lean_ctor_get(x_651, 1); -lean_inc(x_652); -lean_dec(x_651); -x_653 = !lean_is_exclusive(x_652); -if (x_653 == 0) -{ -lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; -x_654 = lean_ctor_get(x_652, 5); -x_655 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_654); -x_656 = lean_ctor_get(x_655, 0); -lean_inc(x_656); -x_657 = lean_ctor_get(x_655, 1); -lean_inc(x_657); -lean_dec(x_655); -lean_ctor_set(x_652, 5, x_657); -x_5 = x_656; -x_6 = x_652; -goto block_8; +lean_inc(x_649); +lean_dec(x_647); +x_651 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_651, 0, x_649); +lean_ctor_set(x_651, 1, x_650); +return x_651; +} } -else -{ -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; -x_658 = lean_ctor_get(x_652, 0); -x_659 = lean_ctor_get(x_652, 1); -x_660 = lean_ctor_get(x_652, 2); -x_661 = lean_ctor_get(x_652, 3); -x_662 = lean_ctor_get(x_652, 4); -x_663 = lean_ctor_get(x_652, 5); -lean_inc(x_663); -lean_inc(x_662); -lean_inc(x_661); -lean_inc(x_660); -lean_inc(x_659); -lean_inc(x_658); -lean_dec(x_652); -x_664 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_663); -x_665 = lean_ctor_get(x_664, 0); -lean_inc(x_665); -x_666 = lean_ctor_get(x_664, 1); -lean_inc(x_666); -lean_dec(x_664); -x_667 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_667, 0, x_658); -lean_ctor_set(x_667, 1, x_659); -lean_ctor_set(x_667, 2, x_660); -lean_ctor_set(x_667, 3, x_661); -lean_ctor_set(x_667, 4, x_662); -lean_ctor_set(x_667, 5, x_666); -x_5 = x_665; -x_6 = x_667; -goto block_8; } } else { -lean_object* x_668; lean_object* x_669; -x_668 = l_Lean_Syntax_getArg(x_562, x_95); -lean_dec(x_562); -x_669 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_94, x_625, x_668, x_2, x_3, x_4); -return x_669; +lean_object* x_652; lean_object* x_653; +x_652 = l_Lean_Syntax_getArg(x_416, x_224); +lean_dec(x_416); +x_653 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_223, x_557, x_319, x_652, x_2, x_3, x_4); +return x_653; } } } @@ -4337,572 +22131,3776 @@ return x_669; } } } -block_873: +block_1017: { -if (x_705 == 0) +if (x_693 == 0) { -if (x_704 == 0) +if (x_692 == 0) { -uint8_t x_706; -lean_dec(x_519); -x_706 = 0; -x_520 = x_706; -goto block_703; +uint8_t x_694; +lean_dec(x_321); +x_694 = 0; +x_322 = x_694; +goto block_690; } else { -lean_object* x_707; lean_object* x_708; uint8_t x_709; -x_707 = l_Lean_Syntax_getArgs(x_519); -lean_dec(x_519); -x_708 = lean_array_get_size(x_707); -lean_dec(x_707); -x_709 = lean_nat_dec_eq(x_708, x_29); -lean_dec(x_708); -x_520 = x_709; -goto block_703; +lean_object* x_695; lean_object* x_696; uint8_t x_697; +x_695 = l_Lean_Syntax_getArgs(x_321); +lean_dec(x_321); +x_696 = lean_array_get_size(x_695); +lean_dec(x_695); +x_697 = lean_nat_dec_eq(x_696, x_80); +lean_dec(x_696); +x_322 = x_697; +goto block_690; } } else { -lean_object* x_710; lean_object* x_711; uint8_t x_712; uint8_t x_868; -lean_dec(x_519); -x_710 = lean_unsigned_to_nat(5u); -x_711 = l_Lean_Syntax_getArg(x_1, x_710); +lean_object* x_698; lean_object* x_699; uint8_t x_700; uint8_t x_1012; +lean_dec(x_321); +x_698 = lean_unsigned_to_nat(5u); +x_699 = l_Lean_Syntax_getArg(x_1, x_698); +lean_inc(x_699); +x_1012 = l_Lean_Syntax_isOfKind(x_699, x_691); +if (x_1012 == 0) +{ +uint8_t x_1013; +x_1013 = 0; +x_700 = x_1013; +goto block_1011; +} +else +{ +lean_object* x_1014; lean_object* x_1015; uint8_t x_1016; +x_1014 = l_Lean_Syntax_getArgs(x_699); +x_1015 = lean_array_get_size(x_1014); +lean_dec(x_1014); +x_1016 = lean_nat_dec_eq(x_1015, x_80); +lean_dec(x_1015); +x_700 = x_1016; +goto block_1011; +} +block_1011: +{ +if (x_700 == 0) +{ +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_dec(x_699); +lean_dec(x_319); +lean_dec(x_223); +x_701 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_702 = lean_ctor_get(x_701, 0); +lean_inc(x_702); +x_703 = lean_ctor_get(x_701, 1); +lean_inc(x_703); +lean_dec(x_701); +x_704 = l_Lean_Elab_Term_getEnv___rarg(x_703); +x_705 = lean_ctor_get(x_704, 1); +lean_inc(x_705); +x_706 = lean_ctor_get(x_704, 0); +lean_inc(x_706); +lean_dec(x_704); +x_707 = lean_ctor_get(x_705, 0); +lean_inc(x_707); +x_708 = lean_ctor_get(x_705, 1); +lean_inc(x_708); +x_709 = lean_ctor_get(x_705, 2); +lean_inc(x_709); +x_710 = lean_ctor_get(x_705, 3); +lean_inc(x_710); +x_711 = lean_ctor_get(x_705, 4); lean_inc(x_711); -x_868 = l_Lean_Syntax_isOfKind(x_711, x_511); -if (x_868 == 0) -{ -uint8_t x_869; -x_869 = 0; -x_712 = x_869; -goto block_867; -} -else -{ -lean_object* x_870; lean_object* x_871; uint8_t x_872; -x_870 = l_Lean_Syntax_getArgs(x_711); -x_871 = lean_array_get_size(x_870); -lean_dec(x_870); -x_872 = lean_nat_dec_eq(x_871, x_29); -lean_dec(x_871); -x_712 = x_872; -goto block_867; -} -block_867: -{ -if (x_712 == 0) -{ -lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; uint8_t x_717; -lean_dec(x_711); -lean_dec(x_94); -x_713 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_714 = lean_ctor_get(x_713, 1); +x_712 = lean_ctor_get(x_705, 5); +lean_inc(x_712); +x_713 = lean_ctor_get(x_3, 0); +lean_inc(x_713); +x_714 = lean_ctor_get(x_713, 3); lean_inc(x_714); +x_715 = lean_ctor_get(x_713, 4); +lean_inc(x_715); lean_dec(x_713); -x_715 = l_Lean_Elab_Term_getEnv___rarg(x_714); -x_716 = lean_ctor_get(x_715, 1); -lean_inc(x_716); -lean_dec(x_715); -x_717 = !lean_is_exclusive(x_716); -if (x_717 == 0) +x_716 = lean_environment_main_module(x_706); +x_717 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_717, 0, x_716); +lean_ctor_set(x_717, 1, x_702); +lean_ctor_set(x_717, 2, x_714); +lean_ctor_set(x_717, 3, x_715); +lean_inc(x_1); +x_718 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_717, x_712); +if (lean_obj_tag(x_718) == 0) { -lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; -x_718 = lean_ctor_get(x_716, 5); -x_719 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_718); -x_720 = lean_ctor_get(x_719, 0); -lean_inc(x_720); -x_721 = lean_ctor_get(x_719, 1); -lean_inc(x_721); -lean_dec(x_719); -lean_ctor_set(x_716, 5, x_721); -x_5 = x_720; -x_6 = x_716; -goto block_8; -} -else +uint8_t x_719; +x_719 = !lean_is_exclusive(x_705); +if (x_719 == 0) { -lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; -x_722 = lean_ctor_get(x_716, 0); -x_723 = lean_ctor_get(x_716, 1); -x_724 = lean_ctor_get(x_716, 2); -x_725 = lean_ctor_get(x_716, 3); -x_726 = lean_ctor_get(x_716, 4); -x_727 = lean_ctor_get(x_716, 5); -lean_inc(x_727); +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_720 = lean_ctor_get(x_705, 5); +lean_dec(x_720); +x_721 = lean_ctor_get(x_705, 4); +lean_dec(x_721); +x_722 = lean_ctor_get(x_705, 3); +lean_dec(x_722); +x_723 = lean_ctor_get(x_705, 2); +lean_dec(x_723); +x_724 = lean_ctor_get(x_705, 1); +lean_dec(x_724); +x_725 = lean_ctor_get(x_705, 0); +lean_dec(x_725); +x_726 = lean_ctor_get(x_718, 0); lean_inc(x_726); -lean_inc(x_725); -lean_inc(x_724); -lean_inc(x_723); -lean_inc(x_722); -lean_dec(x_716); -x_728 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_727); -x_729 = lean_ctor_get(x_728, 0); +x_727 = lean_ctor_get(x_718, 1); +lean_inc(x_727); +lean_dec(x_718); +lean_ctor_set(x_705, 5, x_727); +x_5 = x_726; +x_6 = x_705; +goto block_33; +} +else +{ +lean_object* x_728; lean_object* x_729; lean_object* x_730; +lean_dec(x_705); +x_728 = lean_ctor_get(x_718, 0); +lean_inc(x_728); +x_729 = lean_ctor_get(x_718, 1); lean_inc(x_729); -x_730 = lean_ctor_get(x_728, 1); -lean_inc(x_730); -lean_dec(x_728); -x_731 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_731, 0, x_722); -lean_ctor_set(x_731, 1, x_723); -lean_ctor_set(x_731, 2, x_724); -lean_ctor_set(x_731, 3, x_725); -lean_ctor_set(x_731, 4, x_726); -lean_ctor_set(x_731, 5, x_730); -x_5 = x_729; -x_6 = x_731; -goto block_8; +lean_dec(x_718); +x_730 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_730, 0, x_707); +lean_ctor_set(x_730, 1, x_708); +lean_ctor_set(x_730, 2, x_709); +lean_ctor_set(x_730, 3, x_710); +lean_ctor_set(x_730, 4, x_711); +lean_ctor_set(x_730, 5, x_729); +x_5 = x_728; +x_6 = x_730; +goto block_33; } } else { -lean_object* x_732; uint8_t x_733; lean_object* x_860; uint8_t x_861; -x_732 = l_Lean_Syntax_getArg(x_711, x_51); +lean_object* x_731; lean_dec(x_711); -x_860 = l_Lean_Parser_Term_matchAlt___closed__2; +lean_dec(x_710); +lean_dec(x_709); +lean_dec(x_708); +lean_dec(x_707); +lean_dec(x_2); +lean_dec(x_1); +x_731 = lean_ctor_get(x_718, 0); +lean_inc(x_731); +lean_dec(x_718); +if (lean_obj_tag(x_731) == 0) +{ +lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; uint8_t x_737; +x_732 = lean_ctor_get(x_731, 0); lean_inc(x_732); -x_861 = l_Lean_Syntax_isOfKind(x_732, x_860); -if (x_861 == 0) -{ -uint8_t x_862; -x_862 = 0; -x_733 = x_862; -goto block_859; -} -else -{ -lean_object* x_863; lean_object* x_864; lean_object* x_865; uint8_t x_866; -x_863 = l_Lean_Syntax_getArgs(x_732); -x_864 = lean_array_get_size(x_863); -lean_dec(x_863); -x_865 = lean_unsigned_to_nat(3u); -x_866 = lean_nat_dec_eq(x_864, x_865); -lean_dec(x_864); -x_733 = x_866; -goto block_859; -} -block_859: -{ -if (x_733 == 0) -{ -lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; uint8_t x_738; +x_733 = lean_ctor_get(x_731, 1); +lean_inc(x_733); +lean_dec(x_731); +x_734 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_734, 0, x_733); +x_735 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_735, 0, x_734); +x_736 = l_Lean_Elab_Term_throwError___rarg(x_732, x_735, x_3, x_705); lean_dec(x_732); -lean_dec(x_94); -x_734 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_735 = lean_ctor_get(x_734, 1); -lean_inc(x_735); -lean_dec(x_734); -x_736 = l_Lean_Elab_Term_getEnv___rarg(x_735); -x_737 = lean_ctor_get(x_736, 1); -lean_inc(x_737); -lean_dec(x_736); -x_738 = !lean_is_exclusive(x_737); -if (x_738 == 0) +x_737 = !lean_is_exclusive(x_736); +if (x_737 == 0) { -lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; -x_739 = lean_ctor_get(x_737, 5); -x_740 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_739); -x_741 = lean_ctor_get(x_740, 0); -lean_inc(x_741); -x_742 = lean_ctor_get(x_740, 1); -lean_inc(x_742); -lean_dec(x_740); -lean_ctor_set(x_737, 5, x_742); -x_5 = x_741; -x_6 = x_737; -goto block_8; +return x_736; } else { -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; -x_743 = lean_ctor_get(x_737, 0); -x_744 = lean_ctor_get(x_737, 1); -x_745 = lean_ctor_get(x_737, 2); -x_746 = lean_ctor_get(x_737, 3); -x_747 = lean_ctor_get(x_737, 4); -x_748 = lean_ctor_get(x_737, 5); -lean_inc(x_748); -lean_inc(x_747); -lean_inc(x_746); -lean_inc(x_745); +lean_object* x_738; lean_object* x_739; lean_object* x_740; +x_738 = lean_ctor_get(x_736, 0); +x_739 = lean_ctor_get(x_736, 1); +lean_inc(x_739); +lean_inc(x_738); +lean_dec(x_736); +x_740 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_740, 0, x_738); +lean_ctor_set(x_740, 1, x_739); +return x_740; +} +} +else +{ +lean_object* x_741; uint8_t x_742; +lean_dec(x_3); +x_741 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_705); +x_742 = !lean_is_exclusive(x_741); +if (x_742 == 0) +{ +return x_741; +} +else +{ +lean_object* x_743; lean_object* x_744; lean_object* x_745; +x_743 = lean_ctor_get(x_741, 0); +x_744 = lean_ctor_get(x_741, 1); lean_inc(x_744); lean_inc(x_743); -lean_dec(x_737); -x_749 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_748); -x_750 = lean_ctor_get(x_749, 0); +lean_dec(x_741); +x_745 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_745, 0, x_743); +lean_ctor_set(x_745, 1, x_744); +return x_745; +} +} +} +} +else +{ +lean_object* x_746; uint8_t x_747; lean_object* x_1004; uint8_t x_1005; +x_746 = l_Lean_Syntax_getArg(x_699, x_128); +lean_dec(x_699); +x_1004 = l_Lean_Parser_Term_matchAlt___closed__2; +lean_inc(x_746); +x_1005 = l_Lean_Syntax_isOfKind(x_746, x_1004); +if (x_1005 == 0) +{ +uint8_t x_1006; +x_1006 = 0; +x_747 = x_1006; +goto block_1003; +} +else +{ +lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; uint8_t x_1010; +x_1007 = l_Lean_Syntax_getArgs(x_746); +x_1008 = lean_array_get_size(x_1007); +lean_dec(x_1007); +x_1009 = lean_unsigned_to_nat(3u); +x_1010 = lean_nat_dec_eq(x_1008, x_1009); +lean_dec(x_1008); +x_747 = x_1010; +goto block_1003; +} +block_1003: +{ +if (x_747 == 0) +{ +lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; +lean_dec(x_746); +lean_dec(x_319); +lean_dec(x_223); +x_748 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_749 = lean_ctor_get(x_748, 0); +lean_inc(x_749); +x_750 = lean_ctor_get(x_748, 1); lean_inc(x_750); -x_751 = lean_ctor_get(x_749, 1); -lean_inc(x_751); -lean_dec(x_749); -x_752 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_752, 0, x_743); -lean_ctor_set(x_752, 1, x_744); -lean_ctor_set(x_752, 2, x_745); -lean_ctor_set(x_752, 3, x_746); -lean_ctor_set(x_752, 4, x_747); -lean_ctor_set(x_752, 5, x_751); -x_5 = x_750; -x_6 = x_752; -goto block_8; -} -} -else -{ -lean_object* x_753; uint8_t x_754; uint8_t x_854; -x_753 = l_Lean_Syntax_getArg(x_732, x_51); +lean_dec(x_748); +x_751 = l_Lean_Elab_Term_getEnv___rarg(x_750); +x_752 = lean_ctor_get(x_751, 1); +lean_inc(x_752); +x_753 = lean_ctor_get(x_751, 0); lean_inc(x_753); -x_854 = l_Lean_Syntax_isOfKind(x_753, x_511); -if (x_854 == 0) -{ -uint8_t x_855; -x_855 = 0; -x_754 = x_855; -goto block_853; -} -else -{ -lean_object* x_856; lean_object* x_857; uint8_t x_858; -x_856 = l_Lean_Syntax_getArgs(x_753); -x_857 = lean_array_get_size(x_856); -lean_dec(x_856); -x_858 = lean_nat_dec_eq(x_857, x_29); -lean_dec(x_857); -x_754 = x_858; -goto block_853; -} -block_853: -{ -if (x_754 == 0) -{ -lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; uint8_t x_759; -lean_dec(x_753); -lean_dec(x_732); -lean_dec(x_94); -x_755 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_756 = lean_ctor_get(x_755, 1); +lean_dec(x_751); +x_754 = lean_ctor_get(x_752, 0); +lean_inc(x_754); +x_755 = lean_ctor_get(x_752, 1); +lean_inc(x_755); +x_756 = lean_ctor_get(x_752, 2); lean_inc(x_756); -lean_dec(x_755); -x_757 = l_Lean_Elab_Term_getEnv___rarg(x_756); -x_758 = lean_ctor_get(x_757, 1); +x_757 = lean_ctor_get(x_752, 3); +lean_inc(x_757); +x_758 = lean_ctor_get(x_752, 4); lean_inc(x_758); -lean_dec(x_757); -x_759 = !lean_is_exclusive(x_758); -if (x_759 == 0) -{ -lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; -x_760 = lean_ctor_get(x_758, 5); -x_761 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_760); -x_762 = lean_ctor_get(x_761, 0); +x_759 = lean_ctor_get(x_752, 5); +lean_inc(x_759); +x_760 = lean_ctor_get(x_3, 0); +lean_inc(x_760); +x_761 = lean_ctor_get(x_760, 3); +lean_inc(x_761); +x_762 = lean_ctor_get(x_760, 4); lean_inc(x_762); -x_763 = lean_ctor_get(x_761, 1); -lean_inc(x_763); -lean_dec(x_761); -lean_ctor_set(x_758, 5, x_763); -x_5 = x_762; -x_6 = x_758; -goto block_8; -} -else +lean_dec(x_760); +x_763 = lean_environment_main_module(x_753); +x_764 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_764, 0, x_763); +lean_ctor_set(x_764, 1, x_749); +lean_ctor_set(x_764, 2, x_761); +lean_ctor_set(x_764, 3, x_762); +lean_inc(x_1); +x_765 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_764, x_759); +if (lean_obj_tag(x_765) == 0) { -lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; -x_764 = lean_ctor_get(x_758, 0); -x_765 = lean_ctor_get(x_758, 1); -x_766 = lean_ctor_get(x_758, 2); -x_767 = lean_ctor_get(x_758, 3); -x_768 = lean_ctor_get(x_758, 4); -x_769 = lean_ctor_get(x_758, 5); -lean_inc(x_769); -lean_inc(x_768); -lean_inc(x_767); -lean_inc(x_766); -lean_inc(x_765); -lean_inc(x_764); -lean_dec(x_758); -x_770 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_769); -x_771 = lean_ctor_get(x_770, 0); -lean_inc(x_771); -x_772 = lean_ctor_get(x_770, 1); -lean_inc(x_772); +uint8_t x_766; +x_766 = !lean_is_exclusive(x_752); +if (x_766 == 0) +{ +lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; +x_767 = lean_ctor_get(x_752, 5); +lean_dec(x_767); +x_768 = lean_ctor_get(x_752, 4); +lean_dec(x_768); +x_769 = lean_ctor_get(x_752, 3); +lean_dec(x_769); +x_770 = lean_ctor_get(x_752, 2); lean_dec(x_770); -x_773 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_773, 0, x_764); -lean_ctor_set(x_773, 1, x_765); -lean_ctor_set(x_773, 2, x_766); -lean_ctor_set(x_773, 3, x_767); -lean_ctor_set(x_773, 4, x_768); -lean_ctor_set(x_773, 5, x_772); -x_5 = x_771; -x_6 = x_773; -goto block_8; -} -} -else -{ -lean_object* x_774; uint8_t x_775; lean_object* x_847; uint8_t x_848; -x_774 = l_Lean_Syntax_getArg(x_753, x_51); -lean_dec(x_753); -x_847 = l_Lean_mkTermIdFromIdent___closed__2; +x_771 = lean_ctor_get(x_752, 1); +lean_dec(x_771); +x_772 = lean_ctor_get(x_752, 0); +lean_dec(x_772); +x_773 = lean_ctor_get(x_765, 0); +lean_inc(x_773); +x_774 = lean_ctor_get(x_765, 1); lean_inc(x_774); -x_848 = l_Lean_Syntax_isOfKind(x_774, x_847); -if (x_848 == 0) -{ -uint8_t x_849; -x_849 = 0; -x_775 = x_849; -goto block_846; +lean_dec(x_765); +lean_ctor_set(x_752, 5, x_774); +x_5 = x_773; +x_6 = x_752; +goto block_33; } else { -lean_object* x_850; lean_object* x_851; uint8_t x_852; -x_850 = l_Lean_Syntax_getArgs(x_774); -x_851 = lean_array_get_size(x_850); -lean_dec(x_850); -x_852 = lean_nat_dec_eq(x_851, x_95); -lean_dec(x_851); -x_775 = x_852; -goto block_846; +lean_object* x_775; lean_object* x_776; lean_object* x_777; +lean_dec(x_752); +x_775 = lean_ctor_get(x_765, 0); +lean_inc(x_775); +x_776 = lean_ctor_get(x_765, 1); +lean_inc(x_776); +lean_dec(x_765); +x_777 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_777, 0, x_754); +lean_ctor_set(x_777, 1, x_755); +lean_ctor_set(x_777, 2, x_756); +lean_ctor_set(x_777, 3, x_757); +lean_ctor_set(x_777, 4, x_758); +lean_ctor_set(x_777, 5, x_776); +x_5 = x_775; +x_6 = x_777; +goto block_33; } -block_846: +} +else { -if (x_775 == 0) +lean_object* x_778; +lean_dec(x_758); +lean_dec(x_757); +lean_dec(x_756); +lean_dec(x_755); +lean_dec(x_754); +lean_dec(x_2); +lean_dec(x_1); +x_778 = lean_ctor_get(x_765, 0); +lean_inc(x_778); +lean_dec(x_765); +if (lean_obj_tag(x_778) == 0) { -lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; uint8_t x_780; -lean_dec(x_774); -lean_dec(x_732); -lean_dec(x_94); -x_776 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_777 = lean_ctor_get(x_776, 1); -lean_inc(x_777); -lean_dec(x_776); -x_778 = l_Lean_Elab_Term_getEnv___rarg(x_777); -x_779 = lean_ctor_get(x_778, 1); +lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; uint8_t x_784; +x_779 = lean_ctor_get(x_778, 0); lean_inc(x_779); +x_780 = lean_ctor_get(x_778, 1); +lean_inc(x_780); lean_dec(x_778); -x_780 = !lean_is_exclusive(x_779); -if (x_780 == 0) +x_781 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_781, 0, x_780); +x_782 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_782, 0, x_781); +x_783 = l_Lean_Elab_Term_throwError___rarg(x_779, x_782, x_3, x_752); +lean_dec(x_779); +x_784 = !lean_is_exclusive(x_783); +if (x_784 == 0) { -lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; -x_781 = lean_ctor_get(x_779, 5); -x_782 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_781); -x_783 = lean_ctor_get(x_782, 0); -lean_inc(x_783); -x_784 = lean_ctor_get(x_782, 1); -lean_inc(x_784); -lean_dec(x_782); -lean_ctor_set(x_779, 5, x_784); -x_5 = x_783; -x_6 = x_779; -goto block_8; +return x_783; } else { -lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; -x_785 = lean_ctor_get(x_779, 0); -x_786 = lean_ctor_get(x_779, 1); -x_787 = lean_ctor_get(x_779, 2); -x_788 = lean_ctor_get(x_779, 3); -x_789 = lean_ctor_get(x_779, 4); -x_790 = lean_ctor_get(x_779, 5); -lean_inc(x_790); -lean_inc(x_789); -lean_inc(x_788); -lean_inc(x_787); +lean_object* x_785; lean_object* x_786; lean_object* x_787; +x_785 = lean_ctor_get(x_783, 0); +x_786 = lean_ctor_get(x_783, 1); lean_inc(x_786); lean_inc(x_785); -lean_dec(x_779); -x_791 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_790); -x_792 = lean_ctor_get(x_791, 0); -lean_inc(x_792); -x_793 = lean_ctor_get(x_791, 1); -lean_inc(x_793); -lean_dec(x_791); -x_794 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_794, 0, x_785); -lean_ctor_set(x_794, 1, x_786); -lean_ctor_set(x_794, 2, x_787); -lean_ctor_set(x_794, 3, x_788); -lean_ctor_set(x_794, 4, x_789); -lean_ctor_set(x_794, 5, x_793); -x_5 = x_792; -x_6 = x_794; -goto block_8; +lean_dec(x_783); +x_787 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_787, 0, x_785); +lean_ctor_set(x_787, 1, x_786); +return x_787; } } else { -lean_object* x_795; lean_object* x_796; uint8_t x_797; -x_795 = l_Lean_Syntax_getArg(x_774, x_51); -x_796 = l_Lean_identKind___closed__2; -lean_inc(x_795); -x_797 = l_Lean_Syntax_isOfKind(x_795, x_796); -if (x_797 == 0) +lean_object* x_788; uint8_t x_789; +lean_dec(x_3); +x_788 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_752); +x_789 = !lean_is_exclusive(x_788); +if (x_789 == 0) { -lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; uint8_t x_802; +return x_788; +} +else +{ +lean_object* x_790; lean_object* x_791; lean_object* x_792; +x_790 = lean_ctor_get(x_788, 0); +x_791 = lean_ctor_get(x_788, 1); +lean_inc(x_791); +lean_inc(x_790); +lean_dec(x_788); +x_792 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_792, 0, x_790); +lean_ctor_set(x_792, 1, x_791); +return x_792; +} +} +} +} +else +{ +lean_object* x_793; uint8_t x_794; uint8_t x_998; +x_793 = l_Lean_Syntax_getArg(x_746, x_128); +lean_inc(x_793); +x_998 = l_Lean_Syntax_isOfKind(x_793, x_691); +if (x_998 == 0) +{ +uint8_t x_999; +x_999 = 0; +x_794 = x_999; +goto block_997; +} +else +{ +lean_object* x_1000; lean_object* x_1001; uint8_t x_1002; +x_1000 = l_Lean_Syntax_getArgs(x_793); +x_1001 = lean_array_get_size(x_1000); +lean_dec(x_1000); +x_1002 = lean_nat_dec_eq(x_1001, x_80); +lean_dec(x_1001); +x_794 = x_1002; +goto block_997; +} +block_997: +{ +if (x_794 == 0) +{ +lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; +lean_dec(x_793); +lean_dec(x_746); +lean_dec(x_319); +lean_dec(x_223); +x_795 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_796 = lean_ctor_get(x_795, 0); +lean_inc(x_796); +x_797 = lean_ctor_get(x_795, 1); +lean_inc(x_797); lean_dec(x_795); -lean_dec(x_774); -lean_dec(x_732); -lean_dec(x_94); -x_798 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_798 = l_Lean_Elab_Term_getEnv___rarg(x_797); x_799 = lean_ctor_get(x_798, 1); lean_inc(x_799); +x_800 = lean_ctor_get(x_798, 0); +lean_inc(x_800); lean_dec(x_798); -x_800 = l_Lean_Elab_Term_getEnv___rarg(x_799); -x_801 = lean_ctor_get(x_800, 1); +x_801 = lean_ctor_get(x_799, 0); lean_inc(x_801); -lean_dec(x_800); -x_802 = !lean_is_exclusive(x_801); -if (x_802 == 0) -{ -lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; -x_803 = lean_ctor_get(x_801, 5); -x_804 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_803); -x_805 = lean_ctor_get(x_804, 0); +x_802 = lean_ctor_get(x_799, 1); +lean_inc(x_802); +x_803 = lean_ctor_get(x_799, 2); +lean_inc(x_803); +x_804 = lean_ctor_get(x_799, 3); +lean_inc(x_804); +x_805 = lean_ctor_get(x_799, 4); lean_inc(x_805); -x_806 = lean_ctor_get(x_804, 1); +x_806 = lean_ctor_get(x_799, 5); lean_inc(x_806); -lean_dec(x_804); -lean_ctor_set(x_801, 5, x_806); -x_5 = x_805; -x_6 = x_801; -goto block_8; -} -else -{ -lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; -x_807 = lean_ctor_get(x_801, 0); -x_808 = lean_ctor_get(x_801, 1); -x_809 = lean_ctor_get(x_801, 2); -x_810 = lean_ctor_get(x_801, 3); -x_811 = lean_ctor_get(x_801, 4); -x_812 = lean_ctor_get(x_801, 5); -lean_inc(x_812); -lean_inc(x_811); -lean_inc(x_810); -lean_inc(x_809); -lean_inc(x_808); +x_807 = lean_ctor_get(x_3, 0); lean_inc(x_807); -lean_dec(x_801); -x_813 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_812); -x_814 = lean_ctor_get(x_813, 0); -lean_inc(x_814); -x_815 = lean_ctor_get(x_813, 1); -lean_inc(x_815); -lean_dec(x_813); -x_816 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_816, 0, x_807); -lean_ctor_set(x_816, 1, x_808); -lean_ctor_set(x_816, 2, x_809); -lean_ctor_set(x_816, 3, x_810); -lean_ctor_set(x_816, 4, x_811); -lean_ctor_set(x_816, 5, x_815); -x_5 = x_814; -x_6 = x_816; -goto block_8; -} -} -else +x_808 = lean_ctor_get(x_807, 3); +lean_inc(x_808); +x_809 = lean_ctor_get(x_807, 4); +lean_inc(x_809); +lean_dec(x_807); +x_810 = lean_environment_main_module(x_800); +x_811 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_811, 0, x_810); +lean_ctor_set(x_811, 1, x_796); +lean_ctor_set(x_811, 2, x_808); +lean_ctor_set(x_811, 3, x_809); +lean_inc(x_1); +x_812 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_811, x_806); +if (lean_obj_tag(x_812) == 0) { -lean_object* x_817; uint8_t x_818; uint8_t x_841; -x_817 = l_Lean_Syntax_getArg(x_774, x_29); -lean_dec(x_774); -lean_inc(x_817); -x_841 = l_Lean_Syntax_isOfKind(x_817, x_511); -if (x_841 == 0) +uint8_t x_813; +x_813 = !lean_is_exclusive(x_799); +if (x_813 == 0) { -uint8_t x_842; +lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; +x_814 = lean_ctor_get(x_799, 5); +lean_dec(x_814); +x_815 = lean_ctor_get(x_799, 4); +lean_dec(x_815); +x_816 = lean_ctor_get(x_799, 3); +lean_dec(x_816); +x_817 = lean_ctor_get(x_799, 2); lean_dec(x_817); -x_842 = 0; -x_818 = x_842; -goto block_840; -} -else -{ -lean_object* x_843; lean_object* x_844; uint8_t x_845; -x_843 = l_Lean_Syntax_getArgs(x_817); -lean_dec(x_817); -x_844 = lean_array_get_size(x_843); -lean_dec(x_843); -x_845 = lean_nat_dec_eq(x_844, x_51); -lean_dec(x_844); -x_818 = x_845; -goto block_840; -} -block_840: -{ -if (x_818 == 0) -{ -lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; uint8_t x_823; -lean_dec(x_795); -lean_dec(x_732); -lean_dec(x_94); -x_819 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_820 = lean_ctor_get(x_819, 1); -lean_inc(x_820); +x_818 = lean_ctor_get(x_799, 1); +lean_dec(x_818); +x_819 = lean_ctor_get(x_799, 0); lean_dec(x_819); -x_821 = l_Lean_Elab_Term_getEnv___rarg(x_820); -x_822 = lean_ctor_get(x_821, 1); -lean_inc(x_822); -lean_dec(x_821); -x_823 = !lean_is_exclusive(x_822); -if (x_823 == 0) +x_820 = lean_ctor_get(x_812, 0); +lean_inc(x_820); +x_821 = lean_ctor_get(x_812, 1); +lean_inc(x_821); +lean_dec(x_812); +lean_ctor_set(x_799, 5, x_821); +x_5 = x_820; +x_6 = x_799; +goto block_33; +} +else { -lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; -x_824 = lean_ctor_get(x_822, 5); -x_825 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_824); +lean_object* x_822; lean_object* x_823; lean_object* x_824; +lean_dec(x_799); +x_822 = lean_ctor_get(x_812, 0); +lean_inc(x_822); +x_823 = lean_ctor_get(x_812, 1); +lean_inc(x_823); +lean_dec(x_812); +x_824 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_824, 0, x_801); +lean_ctor_set(x_824, 1, x_802); +lean_ctor_set(x_824, 2, x_803); +lean_ctor_set(x_824, 3, x_804); +lean_ctor_set(x_824, 4, x_805); +lean_ctor_set(x_824, 5, x_823); +x_5 = x_822; +x_6 = x_824; +goto block_33; +} +} +else +{ +lean_object* x_825; +lean_dec(x_805); +lean_dec(x_804); +lean_dec(x_803); +lean_dec(x_802); +lean_dec(x_801); +lean_dec(x_2); +lean_dec(x_1); +x_825 = lean_ctor_get(x_812, 0); +lean_inc(x_825); +lean_dec(x_812); +if (lean_obj_tag(x_825) == 0) +{ +lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; uint8_t x_831; x_826 = lean_ctor_get(x_825, 0); lean_inc(x_826); x_827 = lean_ctor_get(x_825, 1); lean_inc(x_827); lean_dec(x_825); -lean_ctor_set(x_822, 5, x_827); -x_5 = x_826; -x_6 = x_822; -goto block_8; +x_828 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_828, 0, x_827); +x_829 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_829, 0, x_828); +x_830 = l_Lean_Elab_Term_throwError___rarg(x_826, x_829, x_3, x_799); +lean_dec(x_826); +x_831 = !lean_is_exclusive(x_830); +if (x_831 == 0) +{ +return x_830; } else { -lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; -x_828 = lean_ctor_get(x_822, 0); -x_829 = lean_ctor_get(x_822, 1); -x_830 = lean_ctor_get(x_822, 2); -x_831 = lean_ctor_get(x_822, 3); -x_832 = lean_ctor_get(x_822, 4); -x_833 = lean_ctor_get(x_822, 5); +lean_object* x_832; lean_object* x_833; lean_object* x_834; +x_832 = lean_ctor_get(x_830, 0); +x_833 = lean_ctor_get(x_830, 1); lean_inc(x_833); lean_inc(x_832); -lean_inc(x_831); -lean_inc(x_830); -lean_inc(x_829); -lean_inc(x_828); -lean_dec(x_822); -x_834 = l___private_Lean_Elab_Match_7__expandMatchDiscr_x3f___rarg(x_833); -x_835 = lean_ctor_get(x_834, 0); -lean_inc(x_835); -x_836 = lean_ctor_get(x_834, 1); -lean_inc(x_836); -lean_dec(x_834); -x_837 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_837, 0, x_828); -lean_ctor_set(x_837, 1, x_829); -lean_ctor_set(x_837, 2, x_830); -lean_ctor_set(x_837, 3, x_831); -lean_ctor_set(x_837, 4, x_832); -lean_ctor_set(x_837, 5, x_836); -x_5 = x_835; -x_6 = x_837; -goto block_8; +lean_dec(x_830); +x_834 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_834, 0, x_832); +lean_ctor_set(x_834, 1, x_833); +return x_834; } } else { -lean_object* x_838; lean_object* x_839; -x_838 = l_Lean_Syntax_getArg(x_732, x_95); -lean_dec(x_732); -x_839 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_94, x_795, x_838, x_2, x_3, x_4); +lean_object* x_835; uint8_t x_836; +lean_dec(x_3); +x_835 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_799); +x_836 = !lean_is_exclusive(x_835); +if (x_836 == 0) +{ +return x_835; +} +else +{ +lean_object* x_837; lean_object* x_838; lean_object* x_839; +x_837 = lean_ctor_get(x_835, 0); +x_838 = lean_ctor_get(x_835, 1); +lean_inc(x_838); +lean_inc(x_837); +lean_dec(x_835); +x_839 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_839, 0, x_837); +lean_ctor_set(x_839, 1, x_838); return x_839; } } } } +else +{ +lean_object* x_840; uint8_t x_841; lean_object* x_991; uint8_t x_992; +x_840 = l_Lean_Syntax_getArg(x_793, x_128); +lean_dec(x_793); +x_991 = l_Lean_mkTermIdFromIdent___closed__2; +lean_inc(x_840); +x_992 = l_Lean_Syntax_isOfKind(x_840, x_991); +if (x_992 == 0) +{ +uint8_t x_993; +x_993 = 0; +x_841 = x_993; +goto block_990; +} +else +{ +lean_object* x_994; lean_object* x_995; uint8_t x_996; +x_994 = l_Lean_Syntax_getArgs(x_840); +x_995 = lean_array_get_size(x_994); +lean_dec(x_994); +x_996 = lean_nat_dec_eq(x_995, x_224); +lean_dec(x_995); +x_841 = x_996; +goto block_990; +} +block_990: +{ +if (x_841 == 0) +{ +lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; +lean_dec(x_840); +lean_dec(x_746); +lean_dec(x_319); +lean_dec(x_223); +x_842 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_843 = lean_ctor_get(x_842, 0); +lean_inc(x_843); +x_844 = lean_ctor_get(x_842, 1); +lean_inc(x_844); +lean_dec(x_842); +x_845 = l_Lean_Elab_Term_getEnv___rarg(x_844); +x_846 = lean_ctor_get(x_845, 1); +lean_inc(x_846); +x_847 = lean_ctor_get(x_845, 0); +lean_inc(x_847); +lean_dec(x_845); +x_848 = lean_ctor_get(x_846, 0); +lean_inc(x_848); +x_849 = lean_ctor_get(x_846, 1); +lean_inc(x_849); +x_850 = lean_ctor_get(x_846, 2); +lean_inc(x_850); +x_851 = lean_ctor_get(x_846, 3); +lean_inc(x_851); +x_852 = lean_ctor_get(x_846, 4); +lean_inc(x_852); +x_853 = lean_ctor_get(x_846, 5); +lean_inc(x_853); +x_854 = lean_ctor_get(x_3, 0); +lean_inc(x_854); +x_855 = lean_ctor_get(x_854, 3); +lean_inc(x_855); +x_856 = lean_ctor_get(x_854, 4); +lean_inc(x_856); +lean_dec(x_854); +x_857 = lean_environment_main_module(x_847); +x_858 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_858, 0, x_857); +lean_ctor_set(x_858, 1, x_843); +lean_ctor_set(x_858, 2, x_855); +lean_ctor_set(x_858, 3, x_856); +lean_inc(x_1); +x_859 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_858, x_853); +if (lean_obj_tag(x_859) == 0) +{ +uint8_t x_860; +x_860 = !lean_is_exclusive(x_846); +if (x_860 == 0) +{ +lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; +x_861 = lean_ctor_get(x_846, 5); +lean_dec(x_861); +x_862 = lean_ctor_get(x_846, 4); +lean_dec(x_862); +x_863 = lean_ctor_get(x_846, 3); +lean_dec(x_863); +x_864 = lean_ctor_get(x_846, 2); +lean_dec(x_864); +x_865 = lean_ctor_get(x_846, 1); +lean_dec(x_865); +x_866 = lean_ctor_get(x_846, 0); +lean_dec(x_866); +x_867 = lean_ctor_get(x_859, 0); +lean_inc(x_867); +x_868 = lean_ctor_get(x_859, 1); +lean_inc(x_868); +lean_dec(x_859); +lean_ctor_set(x_846, 5, x_868); +x_5 = x_867; +x_6 = x_846; +goto block_33; +} +else +{ +lean_object* x_869; lean_object* x_870; lean_object* x_871; +lean_dec(x_846); +x_869 = lean_ctor_get(x_859, 0); +lean_inc(x_869); +x_870 = lean_ctor_get(x_859, 1); +lean_inc(x_870); +lean_dec(x_859); +x_871 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_871, 0, x_848); +lean_ctor_set(x_871, 1, x_849); +lean_ctor_set(x_871, 2, x_850); +lean_ctor_set(x_871, 3, x_851); +lean_ctor_set(x_871, 4, x_852); +lean_ctor_set(x_871, 5, x_870); +x_5 = x_869; +x_6 = x_871; +goto block_33; +} +} +else +{ +lean_object* x_872; +lean_dec(x_852); +lean_dec(x_851); +lean_dec(x_850); +lean_dec(x_849); +lean_dec(x_848); +lean_dec(x_2); +lean_dec(x_1); +x_872 = lean_ctor_get(x_859, 0); +lean_inc(x_872); +lean_dec(x_859); +if (lean_obj_tag(x_872) == 0) +{ +lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; uint8_t x_878; +x_873 = lean_ctor_get(x_872, 0); +lean_inc(x_873); +x_874 = lean_ctor_get(x_872, 1); +lean_inc(x_874); +lean_dec(x_872); +x_875 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_875, 0, x_874); +x_876 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_876, 0, x_875); +x_877 = l_Lean_Elab_Term_throwError___rarg(x_873, x_876, x_3, x_846); +lean_dec(x_873); +x_878 = !lean_is_exclusive(x_877); +if (x_878 == 0) +{ +return x_877; +} +else +{ +lean_object* x_879; lean_object* x_880; lean_object* x_881; +x_879 = lean_ctor_get(x_877, 0); +x_880 = lean_ctor_get(x_877, 1); +lean_inc(x_880); +lean_inc(x_879); +lean_dec(x_877); +x_881 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_881, 0, x_879); +lean_ctor_set(x_881, 1, x_880); +return x_881; +} +} +else +{ +lean_object* x_882; uint8_t x_883; +lean_dec(x_3); +x_882 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_846); +x_883 = !lean_is_exclusive(x_882); +if (x_883 == 0) +{ +return x_882; +} +else +{ +lean_object* x_884; lean_object* x_885; lean_object* x_886; +x_884 = lean_ctor_get(x_882, 0); +x_885 = lean_ctor_get(x_882, 1); +lean_inc(x_885); +lean_inc(x_884); +lean_dec(x_882); +x_886 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_886, 0, x_884); +lean_ctor_set(x_886, 1, x_885); +return x_886; +} +} +} +} +else +{ +lean_object* x_887; lean_object* x_888; uint8_t x_889; +x_887 = l_Lean_Syntax_getArg(x_840, x_128); +x_888 = l_Lean_identKind___closed__2; +lean_inc(x_887); +x_889 = l_Lean_Syntax_isOfKind(x_887, x_888); +if (x_889 == 0) +{ +lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; +lean_dec(x_887); +lean_dec(x_840); +lean_dec(x_746); +lean_dec(x_319); +lean_dec(x_223); +x_890 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_891 = lean_ctor_get(x_890, 0); +lean_inc(x_891); +x_892 = lean_ctor_get(x_890, 1); +lean_inc(x_892); +lean_dec(x_890); +x_893 = l_Lean_Elab_Term_getEnv___rarg(x_892); +x_894 = lean_ctor_get(x_893, 1); +lean_inc(x_894); +x_895 = lean_ctor_get(x_893, 0); +lean_inc(x_895); +lean_dec(x_893); +x_896 = lean_ctor_get(x_894, 0); +lean_inc(x_896); +x_897 = lean_ctor_get(x_894, 1); +lean_inc(x_897); +x_898 = lean_ctor_get(x_894, 2); +lean_inc(x_898); +x_899 = lean_ctor_get(x_894, 3); +lean_inc(x_899); +x_900 = lean_ctor_get(x_894, 4); +lean_inc(x_900); +x_901 = lean_ctor_get(x_894, 5); +lean_inc(x_901); +x_902 = lean_ctor_get(x_3, 0); +lean_inc(x_902); +x_903 = lean_ctor_get(x_902, 3); +lean_inc(x_903); +x_904 = lean_ctor_get(x_902, 4); +lean_inc(x_904); +lean_dec(x_902); +x_905 = lean_environment_main_module(x_895); +x_906 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_906, 0, x_905); +lean_ctor_set(x_906, 1, x_891); +lean_ctor_set(x_906, 2, x_903); +lean_ctor_set(x_906, 3, x_904); +lean_inc(x_1); +x_907 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_906, x_901); +if (lean_obj_tag(x_907) == 0) +{ +uint8_t x_908; +x_908 = !lean_is_exclusive(x_894); +if (x_908 == 0) +{ +lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; +x_909 = lean_ctor_get(x_894, 5); +lean_dec(x_909); +x_910 = lean_ctor_get(x_894, 4); +lean_dec(x_910); +x_911 = lean_ctor_get(x_894, 3); +lean_dec(x_911); +x_912 = lean_ctor_get(x_894, 2); +lean_dec(x_912); +x_913 = lean_ctor_get(x_894, 1); +lean_dec(x_913); +x_914 = lean_ctor_get(x_894, 0); +lean_dec(x_914); +x_915 = lean_ctor_get(x_907, 0); +lean_inc(x_915); +x_916 = lean_ctor_get(x_907, 1); +lean_inc(x_916); +lean_dec(x_907); +lean_ctor_set(x_894, 5, x_916); +x_5 = x_915; +x_6 = x_894; +goto block_33; +} +else +{ +lean_object* x_917; lean_object* x_918; lean_object* x_919; +lean_dec(x_894); +x_917 = lean_ctor_get(x_907, 0); +lean_inc(x_917); +x_918 = lean_ctor_get(x_907, 1); +lean_inc(x_918); +lean_dec(x_907); +x_919 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_919, 0, x_896); +lean_ctor_set(x_919, 1, x_897); +lean_ctor_set(x_919, 2, x_898); +lean_ctor_set(x_919, 3, x_899); +lean_ctor_set(x_919, 4, x_900); +lean_ctor_set(x_919, 5, x_918); +x_5 = x_917; +x_6 = x_919; +goto block_33; +} +} +else +{ +lean_object* x_920; +lean_dec(x_900); +lean_dec(x_899); +lean_dec(x_898); +lean_dec(x_897); +lean_dec(x_896); +lean_dec(x_2); +lean_dec(x_1); +x_920 = lean_ctor_get(x_907, 0); +lean_inc(x_920); +lean_dec(x_907); +if (lean_obj_tag(x_920) == 0) +{ +lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; uint8_t x_926; +x_921 = lean_ctor_get(x_920, 0); +lean_inc(x_921); +x_922 = lean_ctor_get(x_920, 1); +lean_inc(x_922); +lean_dec(x_920); +x_923 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_923, 0, x_922); +x_924 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_924, 0, x_923); +x_925 = l_Lean_Elab_Term_throwError___rarg(x_921, x_924, x_3, x_894); +lean_dec(x_921); +x_926 = !lean_is_exclusive(x_925); +if (x_926 == 0) +{ +return x_925; +} +else +{ +lean_object* x_927; lean_object* x_928; lean_object* x_929; +x_927 = lean_ctor_get(x_925, 0); +x_928 = lean_ctor_get(x_925, 1); +lean_inc(x_928); +lean_inc(x_927); +lean_dec(x_925); +x_929 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_929, 0, x_927); +lean_ctor_set(x_929, 1, x_928); +return x_929; +} +} +else +{ +lean_object* x_930; uint8_t x_931; +lean_dec(x_3); +x_930 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_894); +x_931 = !lean_is_exclusive(x_930); +if (x_931 == 0) +{ +return x_930; +} +else +{ +lean_object* x_932; lean_object* x_933; lean_object* x_934; +x_932 = lean_ctor_get(x_930, 0); +x_933 = lean_ctor_get(x_930, 1); +lean_inc(x_933); +lean_inc(x_932); +lean_dec(x_930); +x_934 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_934, 0, x_932); +lean_ctor_set(x_934, 1, x_933); +return x_934; +} +} +} +} +else +{ +lean_object* x_935; uint8_t x_936; uint8_t x_985; +x_935 = l_Lean_Syntax_getArg(x_840, x_80); +lean_dec(x_840); +lean_inc(x_935); +x_985 = l_Lean_Syntax_isOfKind(x_935, x_691); +if (x_985 == 0) +{ +uint8_t x_986; +lean_dec(x_935); +x_986 = 0; +x_936 = x_986; +goto block_984; +} +else +{ +lean_object* x_987; lean_object* x_988; uint8_t x_989; +x_987 = l_Lean_Syntax_getArgs(x_935); +lean_dec(x_935); +x_988 = lean_array_get_size(x_987); +lean_dec(x_987); +x_989 = lean_nat_dec_eq(x_988, x_128); +lean_dec(x_988); +x_936 = x_989; +goto block_984; +} +block_984: +{ +if (x_936 == 0) +{ +lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; +lean_dec(x_887); +lean_dec(x_746); +lean_dec(x_319); +lean_dec(x_223); +x_937 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_938 = lean_ctor_get(x_937, 0); +lean_inc(x_938); +x_939 = lean_ctor_get(x_937, 1); +lean_inc(x_939); +lean_dec(x_937); +x_940 = l_Lean_Elab_Term_getEnv___rarg(x_939); +x_941 = lean_ctor_get(x_940, 1); +lean_inc(x_941); +x_942 = lean_ctor_get(x_940, 0); +lean_inc(x_942); +lean_dec(x_940); +x_943 = lean_ctor_get(x_941, 0); +lean_inc(x_943); +x_944 = lean_ctor_get(x_941, 1); +lean_inc(x_944); +x_945 = lean_ctor_get(x_941, 2); +lean_inc(x_945); +x_946 = lean_ctor_get(x_941, 3); +lean_inc(x_946); +x_947 = lean_ctor_get(x_941, 4); +lean_inc(x_947); +x_948 = lean_ctor_get(x_941, 5); +lean_inc(x_948); +x_949 = lean_ctor_get(x_3, 0); +lean_inc(x_949); +x_950 = lean_ctor_get(x_949, 3); +lean_inc(x_950); +x_951 = lean_ctor_get(x_949, 4); +lean_inc(x_951); +lean_dec(x_949); +x_952 = lean_environment_main_module(x_942); +x_953 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_953, 0, x_952); +lean_ctor_set(x_953, 1, x_938); +lean_ctor_set(x_953, 2, x_950); +lean_ctor_set(x_953, 3, x_951); +lean_inc(x_1); +x_954 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_953, x_948); +if (lean_obj_tag(x_954) == 0) +{ +uint8_t x_955; +x_955 = !lean_is_exclusive(x_941); +if (x_955 == 0) +{ +lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; +x_956 = lean_ctor_get(x_941, 5); +lean_dec(x_956); +x_957 = lean_ctor_get(x_941, 4); +lean_dec(x_957); +x_958 = lean_ctor_get(x_941, 3); +lean_dec(x_958); +x_959 = lean_ctor_get(x_941, 2); +lean_dec(x_959); +x_960 = lean_ctor_get(x_941, 1); +lean_dec(x_960); +x_961 = lean_ctor_get(x_941, 0); +lean_dec(x_961); +x_962 = lean_ctor_get(x_954, 0); +lean_inc(x_962); +x_963 = lean_ctor_get(x_954, 1); +lean_inc(x_963); +lean_dec(x_954); +lean_ctor_set(x_941, 5, x_963); +x_5 = x_962; +x_6 = x_941; +goto block_33; +} +else +{ +lean_object* x_964; lean_object* x_965; lean_object* x_966; +lean_dec(x_941); +x_964 = lean_ctor_get(x_954, 0); +lean_inc(x_964); +x_965 = lean_ctor_get(x_954, 1); +lean_inc(x_965); +lean_dec(x_954); +x_966 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_966, 0, x_943); +lean_ctor_set(x_966, 1, x_944); +lean_ctor_set(x_966, 2, x_945); +lean_ctor_set(x_966, 3, x_946); +lean_ctor_set(x_966, 4, x_947); +lean_ctor_set(x_966, 5, x_965); +x_5 = x_964; +x_6 = x_966; +goto block_33; +} +} +else +{ +lean_object* x_967; +lean_dec(x_947); +lean_dec(x_946); +lean_dec(x_945); +lean_dec(x_944); +lean_dec(x_943); +lean_dec(x_2); +lean_dec(x_1); +x_967 = lean_ctor_get(x_954, 0); +lean_inc(x_967); +lean_dec(x_954); +if (lean_obj_tag(x_967) == 0) +{ +lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; uint8_t x_973; +x_968 = lean_ctor_get(x_967, 0); +lean_inc(x_968); +x_969 = lean_ctor_get(x_967, 1); +lean_inc(x_969); +lean_dec(x_967); +x_970 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_970, 0, x_969); +x_971 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_971, 0, x_970); +x_972 = l_Lean_Elab_Term_throwError___rarg(x_968, x_971, x_3, x_941); +lean_dec(x_968); +x_973 = !lean_is_exclusive(x_972); +if (x_973 == 0) +{ +return x_972; +} +else +{ +lean_object* x_974; lean_object* x_975; lean_object* x_976; +x_974 = lean_ctor_get(x_972, 0); +x_975 = lean_ctor_get(x_972, 1); +lean_inc(x_975); +lean_inc(x_974); +lean_dec(x_972); +x_976 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_976, 0, x_974); +lean_ctor_set(x_976, 1, x_975); +return x_976; +} +} +else +{ +lean_object* x_977; uint8_t x_978; +lean_dec(x_3); +x_977 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_941); +x_978 = !lean_is_exclusive(x_977); +if (x_978 == 0) +{ +return x_977; +} +else +{ +lean_object* x_979; lean_object* x_980; lean_object* x_981; +x_979 = lean_ctor_get(x_977, 0); +x_980 = lean_ctor_get(x_977, 1); +lean_inc(x_980); +lean_inc(x_979); +lean_dec(x_977); +x_981 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_981, 0, x_979); +lean_ctor_set(x_981, 1, x_980); +return x_981; +} +} +} +} +else +{ +lean_object* x_982; lean_object* x_983; +x_982 = l_Lean_Syntax_getArg(x_746, x_224); +lean_dec(x_746); +x_983 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_223, x_887, x_319, x_982, x_2, x_3, x_4); +return x_983; +} +} +} +} +} +} +} +} +} +} +} +} +} +} +} +} +} +block_1735: +{ +if (x_1032 == 0) +{ +if (x_1031 == 0) +{ +uint8_t x_1033; +x_1033 = 0; +x_226 = x_1033; +goto block_1029; +} +else +{ +lean_object* x_1034; lean_object* x_1035; uint8_t x_1036; +x_1034 = l_Lean_Syntax_getArgs(x_225); +x_1035 = lean_array_get_size(x_1034); +lean_dec(x_1034); +x_1036 = lean_nat_dec_eq(x_1035, x_80); +lean_dec(x_1035); +x_226 = x_1036; +goto block_1029; +} +} +else +{ +lean_object* x_1037; lean_object* x_1038; uint8_t x_1039; uint8_t x_1405; uint8_t x_1406; +lean_dec(x_225); +x_1037 = lean_unsigned_to_nat(4u); +x_1038 = l_Lean_Syntax_getArg(x_1, x_1037); +lean_inc(x_1038); +x_1405 = l_Lean_Syntax_isOfKind(x_1038, x_1030); +if (x_1405 == 0) +{ +uint8_t x_1731; +x_1731 = 0; +x_1406 = x_1731; +goto block_1730; +} +else +{ +lean_object* x_1732; lean_object* x_1733; uint8_t x_1734; +x_1732 = l_Lean_Syntax_getArgs(x_1038); +x_1733 = lean_array_get_size(x_1732); +lean_dec(x_1732); +x_1734 = lean_nat_dec_eq(x_1733, x_128); +lean_dec(x_1733); +x_1406 = x_1734; +goto block_1730; +} +block_1404: +{ +if (x_1039 == 0) +{ +lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; +lean_dec(x_223); +x_1040 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1041 = lean_ctor_get(x_1040, 0); +lean_inc(x_1041); +x_1042 = lean_ctor_get(x_1040, 1); +lean_inc(x_1042); +lean_dec(x_1040); +x_1043 = l_Lean_Elab_Term_getEnv___rarg(x_1042); +x_1044 = lean_ctor_get(x_1043, 1); +lean_inc(x_1044); +x_1045 = lean_ctor_get(x_1043, 0); +lean_inc(x_1045); +lean_dec(x_1043); +x_1046 = lean_ctor_get(x_1044, 0); +lean_inc(x_1046); +x_1047 = lean_ctor_get(x_1044, 1); +lean_inc(x_1047); +x_1048 = lean_ctor_get(x_1044, 2); +lean_inc(x_1048); +x_1049 = lean_ctor_get(x_1044, 3); +lean_inc(x_1049); +x_1050 = lean_ctor_get(x_1044, 4); +lean_inc(x_1050); +x_1051 = lean_ctor_get(x_1044, 5); +lean_inc(x_1051); +x_1052 = lean_ctor_get(x_3, 0); +lean_inc(x_1052); +x_1053 = lean_ctor_get(x_1052, 3); +lean_inc(x_1053); +x_1054 = lean_ctor_get(x_1052, 4); +lean_inc(x_1054); +lean_dec(x_1052); +x_1055 = lean_environment_main_module(x_1045); +x_1056 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1056, 0, x_1055); +lean_ctor_set(x_1056, 1, x_1041); +lean_ctor_set(x_1056, 2, x_1053); +lean_ctor_set(x_1056, 3, x_1054); +lean_inc(x_1); +x_1057 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1056, x_1051); +if (lean_obj_tag(x_1057) == 0) +{ +uint8_t x_1058; +x_1058 = !lean_is_exclusive(x_1044); +if (x_1058 == 0) +{ +lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; +x_1059 = lean_ctor_get(x_1044, 5); +lean_dec(x_1059); +x_1060 = lean_ctor_get(x_1044, 4); +lean_dec(x_1060); +x_1061 = lean_ctor_get(x_1044, 3); +lean_dec(x_1061); +x_1062 = lean_ctor_get(x_1044, 2); +lean_dec(x_1062); +x_1063 = lean_ctor_get(x_1044, 1); +lean_dec(x_1063); +x_1064 = lean_ctor_get(x_1044, 0); +lean_dec(x_1064); +x_1065 = lean_ctor_get(x_1057, 0); +lean_inc(x_1065); +x_1066 = lean_ctor_get(x_1057, 1); +lean_inc(x_1066); +lean_dec(x_1057); +lean_ctor_set(x_1044, 5, x_1066); +x_5 = x_1065; +x_6 = x_1044; +goto block_33; +} +else +{ +lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; +lean_dec(x_1044); +x_1067 = lean_ctor_get(x_1057, 0); +lean_inc(x_1067); +x_1068 = lean_ctor_get(x_1057, 1); +lean_inc(x_1068); +lean_dec(x_1057); +x_1069 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1069, 0, x_1046); +lean_ctor_set(x_1069, 1, x_1047); +lean_ctor_set(x_1069, 2, x_1048); +lean_ctor_set(x_1069, 3, x_1049); +lean_ctor_set(x_1069, 4, x_1050); +lean_ctor_set(x_1069, 5, x_1068); +x_5 = x_1067; +x_6 = x_1069; +goto block_33; +} +} +else +{ +lean_object* x_1070; +lean_dec(x_1050); +lean_dec(x_1049); +lean_dec(x_1048); +lean_dec(x_1047); +lean_dec(x_1046); +lean_dec(x_2); +lean_dec(x_1); +x_1070 = lean_ctor_get(x_1057, 0); +lean_inc(x_1070); +lean_dec(x_1057); +if (lean_obj_tag(x_1070) == 0) +{ +lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; uint8_t x_1076; +x_1071 = lean_ctor_get(x_1070, 0); +lean_inc(x_1071); +x_1072 = lean_ctor_get(x_1070, 1); +lean_inc(x_1072); +lean_dec(x_1070); +x_1073 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1073, 0, x_1072); +x_1074 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1074, 0, x_1073); +x_1075 = l_Lean_Elab_Term_throwError___rarg(x_1071, x_1074, x_3, x_1044); +lean_dec(x_1071); +x_1076 = !lean_is_exclusive(x_1075); +if (x_1076 == 0) +{ +return x_1075; +} +else +{ +lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; +x_1077 = lean_ctor_get(x_1075, 0); +x_1078 = lean_ctor_get(x_1075, 1); +lean_inc(x_1078); +lean_inc(x_1077); +lean_dec(x_1075); +x_1079 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1079, 0, x_1077); +lean_ctor_set(x_1079, 1, x_1078); +return x_1079; +} +} +else +{ +lean_object* x_1080; uint8_t x_1081; +lean_dec(x_3); +x_1080 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1044); +x_1081 = !lean_is_exclusive(x_1080); +if (x_1081 == 0) +{ +return x_1080; +} +else +{ +lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; +x_1082 = lean_ctor_get(x_1080, 0); +x_1083 = lean_ctor_get(x_1080, 1); +lean_inc(x_1083); +lean_inc(x_1082); +lean_dec(x_1080); +x_1084 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1084, 0, x_1082); +lean_ctor_set(x_1084, 1, x_1083); +return x_1084; +} +} +} +} +else +{ +lean_object* x_1085; lean_object* x_1086; uint8_t x_1087; uint8_t x_1399; +x_1085 = lean_unsigned_to_nat(5u); +x_1086 = l_Lean_Syntax_getArg(x_1, x_1085); +lean_inc(x_1086); +x_1399 = l_Lean_Syntax_isOfKind(x_1086, x_1030); +if (x_1399 == 0) +{ +uint8_t x_1400; +x_1400 = 0; +x_1087 = x_1400; +goto block_1398; +} +else +{ +lean_object* x_1401; lean_object* x_1402; uint8_t x_1403; +x_1401 = l_Lean_Syntax_getArgs(x_1086); +x_1402 = lean_array_get_size(x_1401); +lean_dec(x_1401); +x_1403 = lean_nat_dec_eq(x_1402, x_80); +lean_dec(x_1402); +x_1087 = x_1403; +goto block_1398; +} +block_1398: +{ +if (x_1087 == 0) +{ +lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; +lean_dec(x_1086); +lean_dec(x_223); +x_1088 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1089 = lean_ctor_get(x_1088, 0); +lean_inc(x_1089); +x_1090 = lean_ctor_get(x_1088, 1); +lean_inc(x_1090); +lean_dec(x_1088); +x_1091 = l_Lean_Elab_Term_getEnv___rarg(x_1090); +x_1092 = lean_ctor_get(x_1091, 1); +lean_inc(x_1092); +x_1093 = lean_ctor_get(x_1091, 0); +lean_inc(x_1093); +lean_dec(x_1091); +x_1094 = lean_ctor_get(x_1092, 0); +lean_inc(x_1094); +x_1095 = lean_ctor_get(x_1092, 1); +lean_inc(x_1095); +x_1096 = lean_ctor_get(x_1092, 2); +lean_inc(x_1096); +x_1097 = lean_ctor_get(x_1092, 3); +lean_inc(x_1097); +x_1098 = lean_ctor_get(x_1092, 4); +lean_inc(x_1098); +x_1099 = lean_ctor_get(x_1092, 5); +lean_inc(x_1099); +x_1100 = lean_ctor_get(x_3, 0); +lean_inc(x_1100); +x_1101 = lean_ctor_get(x_1100, 3); +lean_inc(x_1101); +x_1102 = lean_ctor_get(x_1100, 4); +lean_inc(x_1102); +lean_dec(x_1100); +x_1103 = lean_environment_main_module(x_1093); +x_1104 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1104, 0, x_1103); +lean_ctor_set(x_1104, 1, x_1089); +lean_ctor_set(x_1104, 2, x_1101); +lean_ctor_set(x_1104, 3, x_1102); +lean_inc(x_1); +x_1105 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1104, x_1099); +if (lean_obj_tag(x_1105) == 0) +{ +uint8_t x_1106; +x_1106 = !lean_is_exclusive(x_1092); +if (x_1106 == 0) +{ +lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; +x_1107 = lean_ctor_get(x_1092, 5); +lean_dec(x_1107); +x_1108 = lean_ctor_get(x_1092, 4); +lean_dec(x_1108); +x_1109 = lean_ctor_get(x_1092, 3); +lean_dec(x_1109); +x_1110 = lean_ctor_get(x_1092, 2); +lean_dec(x_1110); +x_1111 = lean_ctor_get(x_1092, 1); +lean_dec(x_1111); +x_1112 = lean_ctor_get(x_1092, 0); +lean_dec(x_1112); +x_1113 = lean_ctor_get(x_1105, 0); +lean_inc(x_1113); +x_1114 = lean_ctor_get(x_1105, 1); +lean_inc(x_1114); +lean_dec(x_1105); +lean_ctor_set(x_1092, 5, x_1114); +x_5 = x_1113; +x_6 = x_1092; +goto block_33; +} +else +{ +lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; +lean_dec(x_1092); +x_1115 = lean_ctor_get(x_1105, 0); +lean_inc(x_1115); +x_1116 = lean_ctor_get(x_1105, 1); +lean_inc(x_1116); +lean_dec(x_1105); +x_1117 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1117, 0, x_1094); +lean_ctor_set(x_1117, 1, x_1095); +lean_ctor_set(x_1117, 2, x_1096); +lean_ctor_set(x_1117, 3, x_1097); +lean_ctor_set(x_1117, 4, x_1098); +lean_ctor_set(x_1117, 5, x_1116); +x_5 = x_1115; +x_6 = x_1117; +goto block_33; +} +} +else +{ +lean_object* x_1118; +lean_dec(x_1098); +lean_dec(x_1097); +lean_dec(x_1096); +lean_dec(x_1095); +lean_dec(x_1094); +lean_dec(x_2); +lean_dec(x_1); +x_1118 = lean_ctor_get(x_1105, 0); +lean_inc(x_1118); +lean_dec(x_1105); +if (lean_obj_tag(x_1118) == 0) +{ +lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; uint8_t x_1124; +x_1119 = lean_ctor_get(x_1118, 0); +lean_inc(x_1119); +x_1120 = lean_ctor_get(x_1118, 1); +lean_inc(x_1120); +lean_dec(x_1118); +x_1121 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1121, 0, x_1120); +x_1122 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1122, 0, x_1121); +x_1123 = l_Lean_Elab_Term_throwError___rarg(x_1119, x_1122, x_3, x_1092); +lean_dec(x_1119); +x_1124 = !lean_is_exclusive(x_1123); +if (x_1124 == 0) +{ +return x_1123; +} +else +{ +lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; +x_1125 = lean_ctor_get(x_1123, 0); +x_1126 = lean_ctor_get(x_1123, 1); +lean_inc(x_1126); +lean_inc(x_1125); +lean_dec(x_1123); +x_1127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1127, 0, x_1125); +lean_ctor_set(x_1127, 1, x_1126); +return x_1127; +} +} +else +{ +lean_object* x_1128; uint8_t x_1129; +lean_dec(x_3); +x_1128 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1092); +x_1129 = !lean_is_exclusive(x_1128); +if (x_1129 == 0) +{ +return x_1128; +} +else +{ +lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; +x_1130 = lean_ctor_get(x_1128, 0); +x_1131 = lean_ctor_get(x_1128, 1); +lean_inc(x_1131); +lean_inc(x_1130); +lean_dec(x_1128); +x_1132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1132, 0, x_1130); +lean_ctor_set(x_1132, 1, x_1131); +return x_1132; +} +} +} +} +else +{ +lean_object* x_1133; uint8_t x_1134; lean_object* x_1391; uint8_t x_1392; +x_1133 = l_Lean_Syntax_getArg(x_1086, x_128); +lean_dec(x_1086); +x_1391 = l_Lean_Parser_Term_matchAlt___closed__2; +lean_inc(x_1133); +x_1392 = l_Lean_Syntax_isOfKind(x_1133, x_1391); +if (x_1392 == 0) +{ +uint8_t x_1393; +x_1393 = 0; +x_1134 = x_1393; +goto block_1390; +} +else +{ +lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; uint8_t x_1397; +x_1394 = l_Lean_Syntax_getArgs(x_1133); +x_1395 = lean_array_get_size(x_1394); +lean_dec(x_1394); +x_1396 = lean_unsigned_to_nat(3u); +x_1397 = lean_nat_dec_eq(x_1395, x_1396); +lean_dec(x_1395); +x_1134 = x_1397; +goto block_1390; +} +block_1390: +{ +if (x_1134 == 0) +{ +lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; +lean_dec(x_1133); +lean_dec(x_223); +x_1135 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1136 = lean_ctor_get(x_1135, 0); +lean_inc(x_1136); +x_1137 = lean_ctor_get(x_1135, 1); +lean_inc(x_1137); +lean_dec(x_1135); +x_1138 = l_Lean_Elab_Term_getEnv___rarg(x_1137); +x_1139 = lean_ctor_get(x_1138, 1); +lean_inc(x_1139); +x_1140 = lean_ctor_get(x_1138, 0); +lean_inc(x_1140); +lean_dec(x_1138); +x_1141 = lean_ctor_get(x_1139, 0); +lean_inc(x_1141); +x_1142 = lean_ctor_get(x_1139, 1); +lean_inc(x_1142); +x_1143 = lean_ctor_get(x_1139, 2); +lean_inc(x_1143); +x_1144 = lean_ctor_get(x_1139, 3); +lean_inc(x_1144); +x_1145 = lean_ctor_get(x_1139, 4); +lean_inc(x_1145); +x_1146 = lean_ctor_get(x_1139, 5); +lean_inc(x_1146); +x_1147 = lean_ctor_get(x_3, 0); +lean_inc(x_1147); +x_1148 = lean_ctor_get(x_1147, 3); +lean_inc(x_1148); +x_1149 = lean_ctor_get(x_1147, 4); +lean_inc(x_1149); +lean_dec(x_1147); +x_1150 = lean_environment_main_module(x_1140); +x_1151 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1151, 0, x_1150); +lean_ctor_set(x_1151, 1, x_1136); +lean_ctor_set(x_1151, 2, x_1148); +lean_ctor_set(x_1151, 3, x_1149); +lean_inc(x_1); +x_1152 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1151, x_1146); +if (lean_obj_tag(x_1152) == 0) +{ +uint8_t x_1153; +x_1153 = !lean_is_exclusive(x_1139); +if (x_1153 == 0) +{ +lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; +x_1154 = lean_ctor_get(x_1139, 5); +lean_dec(x_1154); +x_1155 = lean_ctor_get(x_1139, 4); +lean_dec(x_1155); +x_1156 = lean_ctor_get(x_1139, 3); +lean_dec(x_1156); +x_1157 = lean_ctor_get(x_1139, 2); +lean_dec(x_1157); +x_1158 = lean_ctor_get(x_1139, 1); +lean_dec(x_1158); +x_1159 = lean_ctor_get(x_1139, 0); +lean_dec(x_1159); +x_1160 = lean_ctor_get(x_1152, 0); +lean_inc(x_1160); +x_1161 = lean_ctor_get(x_1152, 1); +lean_inc(x_1161); +lean_dec(x_1152); +lean_ctor_set(x_1139, 5, x_1161); +x_5 = x_1160; +x_6 = x_1139; +goto block_33; +} +else +{ +lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; +lean_dec(x_1139); +x_1162 = lean_ctor_get(x_1152, 0); +lean_inc(x_1162); +x_1163 = lean_ctor_get(x_1152, 1); +lean_inc(x_1163); +lean_dec(x_1152); +x_1164 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1164, 0, x_1141); +lean_ctor_set(x_1164, 1, x_1142); +lean_ctor_set(x_1164, 2, x_1143); +lean_ctor_set(x_1164, 3, x_1144); +lean_ctor_set(x_1164, 4, x_1145); +lean_ctor_set(x_1164, 5, x_1163); +x_5 = x_1162; +x_6 = x_1164; +goto block_33; +} +} +else +{ +lean_object* x_1165; +lean_dec(x_1145); +lean_dec(x_1144); +lean_dec(x_1143); +lean_dec(x_1142); +lean_dec(x_1141); +lean_dec(x_2); +lean_dec(x_1); +x_1165 = lean_ctor_get(x_1152, 0); +lean_inc(x_1165); +lean_dec(x_1152); +if (lean_obj_tag(x_1165) == 0) +{ +lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; uint8_t x_1171; +x_1166 = lean_ctor_get(x_1165, 0); +lean_inc(x_1166); +x_1167 = lean_ctor_get(x_1165, 1); +lean_inc(x_1167); +lean_dec(x_1165); +x_1168 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1168, 0, x_1167); +x_1169 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1169, 0, x_1168); +x_1170 = l_Lean_Elab_Term_throwError___rarg(x_1166, x_1169, x_3, x_1139); +lean_dec(x_1166); +x_1171 = !lean_is_exclusive(x_1170); +if (x_1171 == 0) +{ +return x_1170; +} +else +{ +lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; +x_1172 = lean_ctor_get(x_1170, 0); +x_1173 = lean_ctor_get(x_1170, 1); +lean_inc(x_1173); +lean_inc(x_1172); +lean_dec(x_1170); +x_1174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1174, 0, x_1172); +lean_ctor_set(x_1174, 1, x_1173); +return x_1174; +} +} +else +{ +lean_object* x_1175; uint8_t x_1176; +lean_dec(x_3); +x_1175 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1139); +x_1176 = !lean_is_exclusive(x_1175); +if (x_1176 == 0) +{ +return x_1175; +} +else +{ +lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; +x_1177 = lean_ctor_get(x_1175, 0); +x_1178 = lean_ctor_get(x_1175, 1); +lean_inc(x_1178); +lean_inc(x_1177); +lean_dec(x_1175); +x_1179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1179, 0, x_1177); +lean_ctor_set(x_1179, 1, x_1178); +return x_1179; +} +} +} +} +else +{ +lean_object* x_1180; uint8_t x_1181; uint8_t x_1385; +x_1180 = l_Lean_Syntax_getArg(x_1133, x_128); +lean_inc(x_1180); +x_1385 = l_Lean_Syntax_isOfKind(x_1180, x_1030); +if (x_1385 == 0) +{ +uint8_t x_1386; +x_1386 = 0; +x_1181 = x_1386; +goto block_1384; +} +else +{ +lean_object* x_1387; lean_object* x_1388; uint8_t x_1389; +x_1387 = l_Lean_Syntax_getArgs(x_1180); +x_1388 = lean_array_get_size(x_1387); +lean_dec(x_1387); +x_1389 = lean_nat_dec_eq(x_1388, x_80); +lean_dec(x_1388); +x_1181 = x_1389; +goto block_1384; +} +block_1384: +{ +if (x_1181 == 0) +{ +lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; +lean_dec(x_1180); +lean_dec(x_1133); +lean_dec(x_223); +x_1182 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1183 = lean_ctor_get(x_1182, 0); +lean_inc(x_1183); +x_1184 = lean_ctor_get(x_1182, 1); +lean_inc(x_1184); +lean_dec(x_1182); +x_1185 = l_Lean_Elab_Term_getEnv___rarg(x_1184); +x_1186 = lean_ctor_get(x_1185, 1); +lean_inc(x_1186); +x_1187 = lean_ctor_get(x_1185, 0); +lean_inc(x_1187); +lean_dec(x_1185); +x_1188 = lean_ctor_get(x_1186, 0); +lean_inc(x_1188); +x_1189 = lean_ctor_get(x_1186, 1); +lean_inc(x_1189); +x_1190 = lean_ctor_get(x_1186, 2); +lean_inc(x_1190); +x_1191 = lean_ctor_get(x_1186, 3); +lean_inc(x_1191); +x_1192 = lean_ctor_get(x_1186, 4); +lean_inc(x_1192); +x_1193 = lean_ctor_get(x_1186, 5); +lean_inc(x_1193); +x_1194 = lean_ctor_get(x_3, 0); +lean_inc(x_1194); +x_1195 = lean_ctor_get(x_1194, 3); +lean_inc(x_1195); +x_1196 = lean_ctor_get(x_1194, 4); +lean_inc(x_1196); +lean_dec(x_1194); +x_1197 = lean_environment_main_module(x_1187); +x_1198 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1198, 0, x_1197); +lean_ctor_set(x_1198, 1, x_1183); +lean_ctor_set(x_1198, 2, x_1195); +lean_ctor_set(x_1198, 3, x_1196); +lean_inc(x_1); +x_1199 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1198, x_1193); +if (lean_obj_tag(x_1199) == 0) +{ +uint8_t x_1200; +x_1200 = !lean_is_exclusive(x_1186); +if (x_1200 == 0) +{ +lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; +x_1201 = lean_ctor_get(x_1186, 5); +lean_dec(x_1201); +x_1202 = lean_ctor_get(x_1186, 4); +lean_dec(x_1202); +x_1203 = lean_ctor_get(x_1186, 3); +lean_dec(x_1203); +x_1204 = lean_ctor_get(x_1186, 2); +lean_dec(x_1204); +x_1205 = lean_ctor_get(x_1186, 1); +lean_dec(x_1205); +x_1206 = lean_ctor_get(x_1186, 0); +lean_dec(x_1206); +x_1207 = lean_ctor_get(x_1199, 0); +lean_inc(x_1207); +x_1208 = lean_ctor_get(x_1199, 1); +lean_inc(x_1208); +lean_dec(x_1199); +lean_ctor_set(x_1186, 5, x_1208); +x_5 = x_1207; +x_6 = x_1186; +goto block_33; +} +else +{ +lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; +lean_dec(x_1186); +x_1209 = lean_ctor_get(x_1199, 0); +lean_inc(x_1209); +x_1210 = lean_ctor_get(x_1199, 1); +lean_inc(x_1210); +lean_dec(x_1199); +x_1211 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1211, 0, x_1188); +lean_ctor_set(x_1211, 1, x_1189); +lean_ctor_set(x_1211, 2, x_1190); +lean_ctor_set(x_1211, 3, x_1191); +lean_ctor_set(x_1211, 4, x_1192); +lean_ctor_set(x_1211, 5, x_1210); +x_5 = x_1209; +x_6 = x_1211; +goto block_33; +} +} +else +{ +lean_object* x_1212; +lean_dec(x_1192); +lean_dec(x_1191); +lean_dec(x_1190); +lean_dec(x_1189); +lean_dec(x_1188); +lean_dec(x_2); +lean_dec(x_1); +x_1212 = lean_ctor_get(x_1199, 0); +lean_inc(x_1212); +lean_dec(x_1199); +if (lean_obj_tag(x_1212) == 0) +{ +lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; uint8_t x_1218; +x_1213 = lean_ctor_get(x_1212, 0); +lean_inc(x_1213); +x_1214 = lean_ctor_get(x_1212, 1); +lean_inc(x_1214); +lean_dec(x_1212); +x_1215 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1215, 0, x_1214); +x_1216 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1216, 0, x_1215); +x_1217 = l_Lean_Elab_Term_throwError___rarg(x_1213, x_1216, x_3, x_1186); +lean_dec(x_1213); +x_1218 = !lean_is_exclusive(x_1217); +if (x_1218 == 0) +{ +return x_1217; +} +else +{ +lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; +x_1219 = lean_ctor_get(x_1217, 0); +x_1220 = lean_ctor_get(x_1217, 1); +lean_inc(x_1220); +lean_inc(x_1219); +lean_dec(x_1217); +x_1221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1221, 0, x_1219); +lean_ctor_set(x_1221, 1, x_1220); +return x_1221; +} +} +else +{ +lean_object* x_1222; uint8_t x_1223; +lean_dec(x_3); +x_1222 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1186); +x_1223 = !lean_is_exclusive(x_1222); +if (x_1223 == 0) +{ +return x_1222; +} +else +{ +lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; +x_1224 = lean_ctor_get(x_1222, 0); +x_1225 = lean_ctor_get(x_1222, 1); +lean_inc(x_1225); +lean_inc(x_1224); +lean_dec(x_1222); +x_1226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1226, 0, x_1224); +lean_ctor_set(x_1226, 1, x_1225); +return x_1226; +} +} +} +} +else +{ +lean_object* x_1227; uint8_t x_1228; lean_object* x_1378; uint8_t x_1379; +x_1227 = l_Lean_Syntax_getArg(x_1180, x_128); +lean_dec(x_1180); +x_1378 = l_Lean_mkTermIdFromIdent___closed__2; +lean_inc(x_1227); +x_1379 = l_Lean_Syntax_isOfKind(x_1227, x_1378); +if (x_1379 == 0) +{ +uint8_t x_1380; +x_1380 = 0; +x_1228 = x_1380; +goto block_1377; +} +else +{ +lean_object* x_1381; lean_object* x_1382; uint8_t x_1383; +x_1381 = l_Lean_Syntax_getArgs(x_1227); +x_1382 = lean_array_get_size(x_1381); +lean_dec(x_1381); +x_1383 = lean_nat_dec_eq(x_1382, x_224); +lean_dec(x_1382); +x_1228 = x_1383; +goto block_1377; +} +block_1377: +{ +if (x_1228 == 0) +{ +lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; +lean_dec(x_1227); +lean_dec(x_1133); +lean_dec(x_223); +x_1229 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1230 = lean_ctor_get(x_1229, 0); +lean_inc(x_1230); +x_1231 = lean_ctor_get(x_1229, 1); +lean_inc(x_1231); +lean_dec(x_1229); +x_1232 = l_Lean_Elab_Term_getEnv___rarg(x_1231); +x_1233 = lean_ctor_get(x_1232, 1); +lean_inc(x_1233); +x_1234 = lean_ctor_get(x_1232, 0); +lean_inc(x_1234); +lean_dec(x_1232); +x_1235 = lean_ctor_get(x_1233, 0); +lean_inc(x_1235); +x_1236 = lean_ctor_get(x_1233, 1); +lean_inc(x_1236); +x_1237 = lean_ctor_get(x_1233, 2); +lean_inc(x_1237); +x_1238 = lean_ctor_get(x_1233, 3); +lean_inc(x_1238); +x_1239 = lean_ctor_get(x_1233, 4); +lean_inc(x_1239); +x_1240 = lean_ctor_get(x_1233, 5); +lean_inc(x_1240); +x_1241 = lean_ctor_get(x_3, 0); +lean_inc(x_1241); +x_1242 = lean_ctor_get(x_1241, 3); +lean_inc(x_1242); +x_1243 = lean_ctor_get(x_1241, 4); +lean_inc(x_1243); +lean_dec(x_1241); +x_1244 = lean_environment_main_module(x_1234); +x_1245 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1245, 0, x_1244); +lean_ctor_set(x_1245, 1, x_1230); +lean_ctor_set(x_1245, 2, x_1242); +lean_ctor_set(x_1245, 3, x_1243); +lean_inc(x_1); +x_1246 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1245, x_1240); +if (lean_obj_tag(x_1246) == 0) +{ +uint8_t x_1247; +x_1247 = !lean_is_exclusive(x_1233); +if (x_1247 == 0) +{ +lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; +x_1248 = lean_ctor_get(x_1233, 5); +lean_dec(x_1248); +x_1249 = lean_ctor_get(x_1233, 4); +lean_dec(x_1249); +x_1250 = lean_ctor_get(x_1233, 3); +lean_dec(x_1250); +x_1251 = lean_ctor_get(x_1233, 2); +lean_dec(x_1251); +x_1252 = lean_ctor_get(x_1233, 1); +lean_dec(x_1252); +x_1253 = lean_ctor_get(x_1233, 0); +lean_dec(x_1253); +x_1254 = lean_ctor_get(x_1246, 0); +lean_inc(x_1254); +x_1255 = lean_ctor_get(x_1246, 1); +lean_inc(x_1255); +lean_dec(x_1246); +lean_ctor_set(x_1233, 5, x_1255); +x_5 = x_1254; +x_6 = x_1233; +goto block_33; +} +else +{ +lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; +lean_dec(x_1233); +x_1256 = lean_ctor_get(x_1246, 0); +lean_inc(x_1256); +x_1257 = lean_ctor_get(x_1246, 1); +lean_inc(x_1257); +lean_dec(x_1246); +x_1258 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1258, 0, x_1235); +lean_ctor_set(x_1258, 1, x_1236); +lean_ctor_set(x_1258, 2, x_1237); +lean_ctor_set(x_1258, 3, x_1238); +lean_ctor_set(x_1258, 4, x_1239); +lean_ctor_set(x_1258, 5, x_1257); +x_5 = x_1256; +x_6 = x_1258; +goto block_33; +} +} +else +{ +lean_object* x_1259; +lean_dec(x_1239); +lean_dec(x_1238); +lean_dec(x_1237); +lean_dec(x_1236); +lean_dec(x_1235); +lean_dec(x_2); +lean_dec(x_1); +x_1259 = lean_ctor_get(x_1246, 0); +lean_inc(x_1259); +lean_dec(x_1246); +if (lean_obj_tag(x_1259) == 0) +{ +lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; uint8_t x_1265; +x_1260 = lean_ctor_get(x_1259, 0); +lean_inc(x_1260); +x_1261 = lean_ctor_get(x_1259, 1); +lean_inc(x_1261); +lean_dec(x_1259); +x_1262 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1262, 0, x_1261); +x_1263 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1263, 0, x_1262); +x_1264 = l_Lean_Elab_Term_throwError___rarg(x_1260, x_1263, x_3, x_1233); +lean_dec(x_1260); +x_1265 = !lean_is_exclusive(x_1264); +if (x_1265 == 0) +{ +return x_1264; +} +else +{ +lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; +x_1266 = lean_ctor_get(x_1264, 0); +x_1267 = lean_ctor_get(x_1264, 1); +lean_inc(x_1267); +lean_inc(x_1266); +lean_dec(x_1264); +x_1268 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1268, 0, x_1266); +lean_ctor_set(x_1268, 1, x_1267); +return x_1268; +} +} +else +{ +lean_object* x_1269; uint8_t x_1270; +lean_dec(x_3); +x_1269 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1233); +x_1270 = !lean_is_exclusive(x_1269); +if (x_1270 == 0) +{ +return x_1269; +} +else +{ +lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; +x_1271 = lean_ctor_get(x_1269, 0); +x_1272 = lean_ctor_get(x_1269, 1); +lean_inc(x_1272); +lean_inc(x_1271); +lean_dec(x_1269); +x_1273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1273, 0, x_1271); +lean_ctor_set(x_1273, 1, x_1272); +return x_1273; +} +} +} +} +else +{ +lean_object* x_1274; lean_object* x_1275; uint8_t x_1276; +x_1274 = l_Lean_Syntax_getArg(x_1227, x_128); +x_1275 = l_Lean_identKind___closed__2; +lean_inc(x_1274); +x_1276 = l_Lean_Syntax_isOfKind(x_1274, x_1275); +if (x_1276 == 0) +{ +lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; +lean_dec(x_1274); +lean_dec(x_1227); +lean_dec(x_1133); +lean_dec(x_223); +x_1277 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1278 = lean_ctor_get(x_1277, 0); +lean_inc(x_1278); +x_1279 = lean_ctor_get(x_1277, 1); +lean_inc(x_1279); +lean_dec(x_1277); +x_1280 = l_Lean_Elab_Term_getEnv___rarg(x_1279); +x_1281 = lean_ctor_get(x_1280, 1); +lean_inc(x_1281); +x_1282 = lean_ctor_get(x_1280, 0); +lean_inc(x_1282); +lean_dec(x_1280); +x_1283 = lean_ctor_get(x_1281, 0); +lean_inc(x_1283); +x_1284 = lean_ctor_get(x_1281, 1); +lean_inc(x_1284); +x_1285 = lean_ctor_get(x_1281, 2); +lean_inc(x_1285); +x_1286 = lean_ctor_get(x_1281, 3); +lean_inc(x_1286); +x_1287 = lean_ctor_get(x_1281, 4); +lean_inc(x_1287); +x_1288 = lean_ctor_get(x_1281, 5); +lean_inc(x_1288); +x_1289 = lean_ctor_get(x_3, 0); +lean_inc(x_1289); +x_1290 = lean_ctor_get(x_1289, 3); +lean_inc(x_1290); +x_1291 = lean_ctor_get(x_1289, 4); +lean_inc(x_1291); +lean_dec(x_1289); +x_1292 = lean_environment_main_module(x_1282); +x_1293 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1293, 0, x_1292); +lean_ctor_set(x_1293, 1, x_1278); +lean_ctor_set(x_1293, 2, x_1290); +lean_ctor_set(x_1293, 3, x_1291); +lean_inc(x_1); +x_1294 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1293, x_1288); +if (lean_obj_tag(x_1294) == 0) +{ +uint8_t x_1295; +x_1295 = !lean_is_exclusive(x_1281); +if (x_1295 == 0) +{ +lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; +x_1296 = lean_ctor_get(x_1281, 5); +lean_dec(x_1296); +x_1297 = lean_ctor_get(x_1281, 4); +lean_dec(x_1297); +x_1298 = lean_ctor_get(x_1281, 3); +lean_dec(x_1298); +x_1299 = lean_ctor_get(x_1281, 2); +lean_dec(x_1299); +x_1300 = lean_ctor_get(x_1281, 1); +lean_dec(x_1300); +x_1301 = lean_ctor_get(x_1281, 0); +lean_dec(x_1301); +x_1302 = lean_ctor_get(x_1294, 0); +lean_inc(x_1302); +x_1303 = lean_ctor_get(x_1294, 1); +lean_inc(x_1303); +lean_dec(x_1294); +lean_ctor_set(x_1281, 5, x_1303); +x_5 = x_1302; +x_6 = x_1281; +goto block_33; +} +else +{ +lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; +lean_dec(x_1281); +x_1304 = lean_ctor_get(x_1294, 0); +lean_inc(x_1304); +x_1305 = lean_ctor_get(x_1294, 1); +lean_inc(x_1305); +lean_dec(x_1294); +x_1306 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1306, 0, x_1283); +lean_ctor_set(x_1306, 1, x_1284); +lean_ctor_set(x_1306, 2, x_1285); +lean_ctor_set(x_1306, 3, x_1286); +lean_ctor_set(x_1306, 4, x_1287); +lean_ctor_set(x_1306, 5, x_1305); +x_5 = x_1304; +x_6 = x_1306; +goto block_33; +} +} +else +{ +lean_object* x_1307; +lean_dec(x_1287); +lean_dec(x_1286); +lean_dec(x_1285); +lean_dec(x_1284); +lean_dec(x_1283); +lean_dec(x_2); +lean_dec(x_1); +x_1307 = lean_ctor_get(x_1294, 0); +lean_inc(x_1307); +lean_dec(x_1294); +if (lean_obj_tag(x_1307) == 0) +{ +lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; uint8_t x_1313; +x_1308 = lean_ctor_get(x_1307, 0); +lean_inc(x_1308); +x_1309 = lean_ctor_get(x_1307, 1); +lean_inc(x_1309); +lean_dec(x_1307); +x_1310 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1310, 0, x_1309); +x_1311 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1311, 0, x_1310); +x_1312 = l_Lean_Elab_Term_throwError___rarg(x_1308, x_1311, x_3, x_1281); +lean_dec(x_1308); +x_1313 = !lean_is_exclusive(x_1312); +if (x_1313 == 0) +{ +return x_1312; +} +else +{ +lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; +x_1314 = lean_ctor_get(x_1312, 0); +x_1315 = lean_ctor_get(x_1312, 1); +lean_inc(x_1315); +lean_inc(x_1314); +lean_dec(x_1312); +x_1316 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1316, 0, x_1314); +lean_ctor_set(x_1316, 1, x_1315); +return x_1316; +} +} +else +{ +lean_object* x_1317; uint8_t x_1318; +lean_dec(x_3); +x_1317 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1281); +x_1318 = !lean_is_exclusive(x_1317); +if (x_1318 == 0) +{ +return x_1317; +} +else +{ +lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; +x_1319 = lean_ctor_get(x_1317, 0); +x_1320 = lean_ctor_get(x_1317, 1); +lean_inc(x_1320); +lean_inc(x_1319); +lean_dec(x_1317); +x_1321 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1321, 0, x_1319); +lean_ctor_set(x_1321, 1, x_1320); +return x_1321; +} +} +} +} +else +{ +lean_object* x_1322; uint8_t x_1323; uint8_t x_1372; +x_1322 = l_Lean_Syntax_getArg(x_1227, x_80); +lean_dec(x_1227); +lean_inc(x_1322); +x_1372 = l_Lean_Syntax_isOfKind(x_1322, x_1030); +if (x_1372 == 0) +{ +uint8_t x_1373; +lean_dec(x_1322); +x_1373 = 0; +x_1323 = x_1373; +goto block_1371; +} +else +{ +lean_object* x_1374; lean_object* x_1375; uint8_t x_1376; +x_1374 = l_Lean_Syntax_getArgs(x_1322); +lean_dec(x_1322); +x_1375 = lean_array_get_size(x_1374); +lean_dec(x_1374); +x_1376 = lean_nat_dec_eq(x_1375, x_128); +lean_dec(x_1375); +x_1323 = x_1376; +goto block_1371; +} +block_1371: +{ +if (x_1323 == 0) +{ +lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; +lean_dec(x_1274); +lean_dec(x_1133); +lean_dec(x_223); +x_1324 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1325 = lean_ctor_get(x_1324, 0); +lean_inc(x_1325); +x_1326 = lean_ctor_get(x_1324, 1); +lean_inc(x_1326); +lean_dec(x_1324); +x_1327 = l_Lean_Elab_Term_getEnv___rarg(x_1326); +x_1328 = lean_ctor_get(x_1327, 1); +lean_inc(x_1328); +x_1329 = lean_ctor_get(x_1327, 0); +lean_inc(x_1329); +lean_dec(x_1327); +x_1330 = lean_ctor_get(x_1328, 0); +lean_inc(x_1330); +x_1331 = lean_ctor_get(x_1328, 1); +lean_inc(x_1331); +x_1332 = lean_ctor_get(x_1328, 2); +lean_inc(x_1332); +x_1333 = lean_ctor_get(x_1328, 3); +lean_inc(x_1333); +x_1334 = lean_ctor_get(x_1328, 4); +lean_inc(x_1334); +x_1335 = lean_ctor_get(x_1328, 5); +lean_inc(x_1335); +x_1336 = lean_ctor_get(x_3, 0); +lean_inc(x_1336); +x_1337 = lean_ctor_get(x_1336, 3); +lean_inc(x_1337); +x_1338 = lean_ctor_get(x_1336, 4); +lean_inc(x_1338); +lean_dec(x_1336); +x_1339 = lean_environment_main_module(x_1329); +x_1340 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1340, 0, x_1339); +lean_ctor_set(x_1340, 1, x_1325); +lean_ctor_set(x_1340, 2, x_1337); +lean_ctor_set(x_1340, 3, x_1338); +lean_inc(x_1); +x_1341 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1340, x_1335); +if (lean_obj_tag(x_1341) == 0) +{ +uint8_t x_1342; +x_1342 = !lean_is_exclusive(x_1328); +if (x_1342 == 0) +{ +lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; +x_1343 = lean_ctor_get(x_1328, 5); +lean_dec(x_1343); +x_1344 = lean_ctor_get(x_1328, 4); +lean_dec(x_1344); +x_1345 = lean_ctor_get(x_1328, 3); +lean_dec(x_1345); +x_1346 = lean_ctor_get(x_1328, 2); +lean_dec(x_1346); +x_1347 = lean_ctor_get(x_1328, 1); +lean_dec(x_1347); +x_1348 = lean_ctor_get(x_1328, 0); +lean_dec(x_1348); +x_1349 = lean_ctor_get(x_1341, 0); +lean_inc(x_1349); +x_1350 = lean_ctor_get(x_1341, 1); +lean_inc(x_1350); +lean_dec(x_1341); +lean_ctor_set(x_1328, 5, x_1350); +x_5 = x_1349; +x_6 = x_1328; +goto block_33; +} +else +{ +lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; +lean_dec(x_1328); +x_1351 = lean_ctor_get(x_1341, 0); +lean_inc(x_1351); +x_1352 = lean_ctor_get(x_1341, 1); +lean_inc(x_1352); +lean_dec(x_1341); +x_1353 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1353, 0, x_1330); +lean_ctor_set(x_1353, 1, x_1331); +lean_ctor_set(x_1353, 2, x_1332); +lean_ctor_set(x_1353, 3, x_1333); +lean_ctor_set(x_1353, 4, x_1334); +lean_ctor_set(x_1353, 5, x_1352); +x_5 = x_1351; +x_6 = x_1353; +goto block_33; +} +} +else +{ +lean_object* x_1354; +lean_dec(x_1334); +lean_dec(x_1333); +lean_dec(x_1332); +lean_dec(x_1331); +lean_dec(x_1330); +lean_dec(x_2); +lean_dec(x_1); +x_1354 = lean_ctor_get(x_1341, 0); +lean_inc(x_1354); +lean_dec(x_1341); +if (lean_obj_tag(x_1354) == 0) +{ +lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; uint8_t x_1360; +x_1355 = lean_ctor_get(x_1354, 0); +lean_inc(x_1355); +x_1356 = lean_ctor_get(x_1354, 1); +lean_inc(x_1356); +lean_dec(x_1354); +x_1357 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1357, 0, x_1356); +x_1358 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1358, 0, x_1357); +x_1359 = l_Lean_Elab_Term_throwError___rarg(x_1355, x_1358, x_3, x_1328); +lean_dec(x_1355); +x_1360 = !lean_is_exclusive(x_1359); +if (x_1360 == 0) +{ +return x_1359; +} +else +{ +lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; +x_1361 = lean_ctor_get(x_1359, 0); +x_1362 = lean_ctor_get(x_1359, 1); +lean_inc(x_1362); +lean_inc(x_1361); +lean_dec(x_1359); +x_1363 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1363, 0, x_1361); +lean_ctor_set(x_1363, 1, x_1362); +return x_1363; +} +} +else +{ +lean_object* x_1364; uint8_t x_1365; +lean_dec(x_3); +x_1364 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1328); +x_1365 = !lean_is_exclusive(x_1364); +if (x_1365 == 0) +{ +return x_1364; +} +else +{ +lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; +x_1366 = lean_ctor_get(x_1364, 0); +x_1367 = lean_ctor_get(x_1364, 1); +lean_inc(x_1367); +lean_inc(x_1366); +lean_dec(x_1364); +x_1368 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1368, 0, x_1366); +lean_ctor_set(x_1368, 1, x_1367); +return x_1368; +} +} +} +} +else +{ +lean_object* x_1369; lean_object* x_1370; +x_1369 = l_Lean_Syntax_getArg(x_1133, x_224); +lean_dec(x_1133); +x_1370 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_223, x_1274, x_1369, x_2, x_3, x_4); +return x_1370; +} +} +} +} +} +} +} +} +} +} +} +} +} +block_1730: +{ +if (x_1406 == 0) +{ +if (x_1405 == 0) +{ +uint8_t x_1407; +lean_dec(x_1038); +x_1407 = 0; +x_1039 = x_1407; +goto block_1404; +} +else +{ +lean_object* x_1408; lean_object* x_1409; uint8_t x_1410; +x_1408 = l_Lean_Syntax_getArgs(x_1038); +lean_dec(x_1038); +x_1409 = lean_array_get_size(x_1408); +lean_dec(x_1408); +x_1410 = lean_nat_dec_eq(x_1409, x_80); +lean_dec(x_1409); +x_1039 = x_1410; +goto block_1404; +} +} +else +{ +lean_object* x_1411; lean_object* x_1412; uint8_t x_1413; uint8_t x_1725; +lean_dec(x_1038); +x_1411 = lean_unsigned_to_nat(5u); +x_1412 = l_Lean_Syntax_getArg(x_1, x_1411); +lean_inc(x_1412); +x_1725 = l_Lean_Syntax_isOfKind(x_1412, x_1030); +if (x_1725 == 0) +{ +uint8_t x_1726; +x_1726 = 0; +x_1413 = x_1726; +goto block_1724; +} +else +{ +lean_object* x_1727; lean_object* x_1728; uint8_t x_1729; +x_1727 = l_Lean_Syntax_getArgs(x_1412); +x_1728 = lean_array_get_size(x_1727); +lean_dec(x_1727); +x_1729 = lean_nat_dec_eq(x_1728, x_80); +lean_dec(x_1728); +x_1413 = x_1729; +goto block_1724; +} +block_1724: +{ +if (x_1413 == 0) +{ +lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; +lean_dec(x_1412); +lean_dec(x_223); +x_1414 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1415 = lean_ctor_get(x_1414, 0); +lean_inc(x_1415); +x_1416 = lean_ctor_get(x_1414, 1); +lean_inc(x_1416); +lean_dec(x_1414); +x_1417 = l_Lean_Elab_Term_getEnv___rarg(x_1416); +x_1418 = lean_ctor_get(x_1417, 1); +lean_inc(x_1418); +x_1419 = lean_ctor_get(x_1417, 0); +lean_inc(x_1419); +lean_dec(x_1417); +x_1420 = lean_ctor_get(x_1418, 0); +lean_inc(x_1420); +x_1421 = lean_ctor_get(x_1418, 1); +lean_inc(x_1421); +x_1422 = lean_ctor_get(x_1418, 2); +lean_inc(x_1422); +x_1423 = lean_ctor_get(x_1418, 3); +lean_inc(x_1423); +x_1424 = lean_ctor_get(x_1418, 4); +lean_inc(x_1424); +x_1425 = lean_ctor_get(x_1418, 5); +lean_inc(x_1425); +x_1426 = lean_ctor_get(x_3, 0); +lean_inc(x_1426); +x_1427 = lean_ctor_get(x_1426, 3); +lean_inc(x_1427); +x_1428 = lean_ctor_get(x_1426, 4); +lean_inc(x_1428); +lean_dec(x_1426); +x_1429 = lean_environment_main_module(x_1419); +x_1430 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1430, 0, x_1429); +lean_ctor_set(x_1430, 1, x_1415); +lean_ctor_set(x_1430, 2, x_1427); +lean_ctor_set(x_1430, 3, x_1428); +lean_inc(x_1); +x_1431 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1430, x_1425); +if (lean_obj_tag(x_1431) == 0) +{ +uint8_t x_1432; +x_1432 = !lean_is_exclusive(x_1418); +if (x_1432 == 0) +{ +lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; +x_1433 = lean_ctor_get(x_1418, 5); +lean_dec(x_1433); +x_1434 = lean_ctor_get(x_1418, 4); +lean_dec(x_1434); +x_1435 = lean_ctor_get(x_1418, 3); +lean_dec(x_1435); +x_1436 = lean_ctor_get(x_1418, 2); +lean_dec(x_1436); +x_1437 = lean_ctor_get(x_1418, 1); +lean_dec(x_1437); +x_1438 = lean_ctor_get(x_1418, 0); +lean_dec(x_1438); +x_1439 = lean_ctor_get(x_1431, 0); +lean_inc(x_1439); +x_1440 = lean_ctor_get(x_1431, 1); +lean_inc(x_1440); +lean_dec(x_1431); +lean_ctor_set(x_1418, 5, x_1440); +x_5 = x_1439; +x_6 = x_1418; +goto block_33; +} +else +{ +lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; +lean_dec(x_1418); +x_1441 = lean_ctor_get(x_1431, 0); +lean_inc(x_1441); +x_1442 = lean_ctor_get(x_1431, 1); +lean_inc(x_1442); +lean_dec(x_1431); +x_1443 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1443, 0, x_1420); +lean_ctor_set(x_1443, 1, x_1421); +lean_ctor_set(x_1443, 2, x_1422); +lean_ctor_set(x_1443, 3, x_1423); +lean_ctor_set(x_1443, 4, x_1424); +lean_ctor_set(x_1443, 5, x_1442); +x_5 = x_1441; +x_6 = x_1443; +goto block_33; +} +} +else +{ +lean_object* x_1444; +lean_dec(x_1424); +lean_dec(x_1423); +lean_dec(x_1422); +lean_dec(x_1421); +lean_dec(x_1420); +lean_dec(x_2); +lean_dec(x_1); +x_1444 = lean_ctor_get(x_1431, 0); +lean_inc(x_1444); +lean_dec(x_1431); +if (lean_obj_tag(x_1444) == 0) +{ +lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; uint8_t x_1450; +x_1445 = lean_ctor_get(x_1444, 0); +lean_inc(x_1445); +x_1446 = lean_ctor_get(x_1444, 1); +lean_inc(x_1446); +lean_dec(x_1444); +x_1447 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1447, 0, x_1446); +x_1448 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1448, 0, x_1447); +x_1449 = l_Lean_Elab_Term_throwError___rarg(x_1445, x_1448, x_3, x_1418); +lean_dec(x_1445); +x_1450 = !lean_is_exclusive(x_1449); +if (x_1450 == 0) +{ +return x_1449; +} +else +{ +lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; +x_1451 = lean_ctor_get(x_1449, 0); +x_1452 = lean_ctor_get(x_1449, 1); +lean_inc(x_1452); +lean_inc(x_1451); +lean_dec(x_1449); +x_1453 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1453, 0, x_1451); +lean_ctor_set(x_1453, 1, x_1452); +return x_1453; +} +} +else +{ +lean_object* x_1454; uint8_t x_1455; +lean_dec(x_3); +x_1454 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1418); +x_1455 = !lean_is_exclusive(x_1454); +if (x_1455 == 0) +{ +return x_1454; +} +else +{ +lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; +x_1456 = lean_ctor_get(x_1454, 0); +x_1457 = lean_ctor_get(x_1454, 1); +lean_inc(x_1457); +lean_inc(x_1456); +lean_dec(x_1454); +x_1458 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1458, 0, x_1456); +lean_ctor_set(x_1458, 1, x_1457); +return x_1458; +} +} +} +} +else +{ +lean_object* x_1459; uint8_t x_1460; lean_object* x_1717; uint8_t x_1718; +x_1459 = l_Lean_Syntax_getArg(x_1412, x_128); +lean_dec(x_1412); +x_1717 = l_Lean_Parser_Term_matchAlt___closed__2; +lean_inc(x_1459); +x_1718 = l_Lean_Syntax_isOfKind(x_1459, x_1717); +if (x_1718 == 0) +{ +uint8_t x_1719; +x_1719 = 0; +x_1460 = x_1719; +goto block_1716; +} +else +{ +lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; uint8_t x_1723; +x_1720 = l_Lean_Syntax_getArgs(x_1459); +x_1721 = lean_array_get_size(x_1720); +lean_dec(x_1720); +x_1722 = lean_unsigned_to_nat(3u); +x_1723 = lean_nat_dec_eq(x_1721, x_1722); +lean_dec(x_1721); +x_1460 = x_1723; +goto block_1716; +} +block_1716: +{ +if (x_1460 == 0) +{ +lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; +lean_dec(x_1459); +lean_dec(x_223); +x_1461 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1462 = lean_ctor_get(x_1461, 0); +lean_inc(x_1462); +x_1463 = lean_ctor_get(x_1461, 1); +lean_inc(x_1463); +lean_dec(x_1461); +x_1464 = l_Lean_Elab_Term_getEnv___rarg(x_1463); +x_1465 = lean_ctor_get(x_1464, 1); +lean_inc(x_1465); +x_1466 = lean_ctor_get(x_1464, 0); +lean_inc(x_1466); +lean_dec(x_1464); +x_1467 = lean_ctor_get(x_1465, 0); +lean_inc(x_1467); +x_1468 = lean_ctor_get(x_1465, 1); +lean_inc(x_1468); +x_1469 = lean_ctor_get(x_1465, 2); +lean_inc(x_1469); +x_1470 = lean_ctor_get(x_1465, 3); +lean_inc(x_1470); +x_1471 = lean_ctor_get(x_1465, 4); +lean_inc(x_1471); +x_1472 = lean_ctor_get(x_1465, 5); +lean_inc(x_1472); +x_1473 = lean_ctor_get(x_3, 0); +lean_inc(x_1473); +x_1474 = lean_ctor_get(x_1473, 3); +lean_inc(x_1474); +x_1475 = lean_ctor_get(x_1473, 4); +lean_inc(x_1475); +lean_dec(x_1473); +x_1476 = lean_environment_main_module(x_1466); +x_1477 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1477, 0, x_1476); +lean_ctor_set(x_1477, 1, x_1462); +lean_ctor_set(x_1477, 2, x_1474); +lean_ctor_set(x_1477, 3, x_1475); +lean_inc(x_1); +x_1478 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1477, x_1472); +if (lean_obj_tag(x_1478) == 0) +{ +uint8_t x_1479; +x_1479 = !lean_is_exclusive(x_1465); +if (x_1479 == 0) +{ +lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; +x_1480 = lean_ctor_get(x_1465, 5); +lean_dec(x_1480); +x_1481 = lean_ctor_get(x_1465, 4); +lean_dec(x_1481); +x_1482 = lean_ctor_get(x_1465, 3); +lean_dec(x_1482); +x_1483 = lean_ctor_get(x_1465, 2); +lean_dec(x_1483); +x_1484 = lean_ctor_get(x_1465, 1); +lean_dec(x_1484); +x_1485 = lean_ctor_get(x_1465, 0); +lean_dec(x_1485); +x_1486 = lean_ctor_get(x_1478, 0); +lean_inc(x_1486); +x_1487 = lean_ctor_get(x_1478, 1); +lean_inc(x_1487); +lean_dec(x_1478); +lean_ctor_set(x_1465, 5, x_1487); +x_5 = x_1486; +x_6 = x_1465; +goto block_33; +} +else +{ +lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; +lean_dec(x_1465); +x_1488 = lean_ctor_get(x_1478, 0); +lean_inc(x_1488); +x_1489 = lean_ctor_get(x_1478, 1); +lean_inc(x_1489); +lean_dec(x_1478); +x_1490 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1490, 0, x_1467); +lean_ctor_set(x_1490, 1, x_1468); +lean_ctor_set(x_1490, 2, x_1469); +lean_ctor_set(x_1490, 3, x_1470); +lean_ctor_set(x_1490, 4, x_1471); +lean_ctor_set(x_1490, 5, x_1489); +x_5 = x_1488; +x_6 = x_1490; +goto block_33; +} +} +else +{ +lean_object* x_1491; +lean_dec(x_1471); +lean_dec(x_1470); +lean_dec(x_1469); +lean_dec(x_1468); +lean_dec(x_1467); +lean_dec(x_2); +lean_dec(x_1); +x_1491 = lean_ctor_get(x_1478, 0); +lean_inc(x_1491); +lean_dec(x_1478); +if (lean_obj_tag(x_1491) == 0) +{ +lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; uint8_t x_1497; +x_1492 = lean_ctor_get(x_1491, 0); +lean_inc(x_1492); +x_1493 = lean_ctor_get(x_1491, 1); +lean_inc(x_1493); +lean_dec(x_1491); +x_1494 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1494, 0, x_1493); +x_1495 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1495, 0, x_1494); +x_1496 = l_Lean_Elab_Term_throwError___rarg(x_1492, x_1495, x_3, x_1465); +lean_dec(x_1492); +x_1497 = !lean_is_exclusive(x_1496); +if (x_1497 == 0) +{ +return x_1496; +} +else +{ +lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; +x_1498 = lean_ctor_get(x_1496, 0); +x_1499 = lean_ctor_get(x_1496, 1); +lean_inc(x_1499); +lean_inc(x_1498); +lean_dec(x_1496); +x_1500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1500, 0, x_1498); +lean_ctor_set(x_1500, 1, x_1499); +return x_1500; +} +} +else +{ +lean_object* x_1501; uint8_t x_1502; +lean_dec(x_3); +x_1501 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1465); +x_1502 = !lean_is_exclusive(x_1501); +if (x_1502 == 0) +{ +return x_1501; +} +else +{ +lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; +x_1503 = lean_ctor_get(x_1501, 0); +x_1504 = lean_ctor_get(x_1501, 1); +lean_inc(x_1504); +lean_inc(x_1503); +lean_dec(x_1501); +x_1505 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1505, 0, x_1503); +lean_ctor_set(x_1505, 1, x_1504); +return x_1505; +} +} +} +} +else +{ +lean_object* x_1506; uint8_t x_1507; uint8_t x_1711; +x_1506 = l_Lean_Syntax_getArg(x_1459, x_128); +lean_inc(x_1506); +x_1711 = l_Lean_Syntax_isOfKind(x_1506, x_1030); +if (x_1711 == 0) +{ +uint8_t x_1712; +x_1712 = 0; +x_1507 = x_1712; +goto block_1710; +} +else +{ +lean_object* x_1713; lean_object* x_1714; uint8_t x_1715; +x_1713 = l_Lean_Syntax_getArgs(x_1506); +x_1714 = lean_array_get_size(x_1713); +lean_dec(x_1713); +x_1715 = lean_nat_dec_eq(x_1714, x_80); +lean_dec(x_1714); +x_1507 = x_1715; +goto block_1710; +} +block_1710: +{ +if (x_1507 == 0) +{ +lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; +lean_dec(x_1506); +lean_dec(x_1459); +lean_dec(x_223); +x_1508 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1509 = lean_ctor_get(x_1508, 0); +lean_inc(x_1509); +x_1510 = lean_ctor_get(x_1508, 1); +lean_inc(x_1510); +lean_dec(x_1508); +x_1511 = l_Lean_Elab_Term_getEnv___rarg(x_1510); +x_1512 = lean_ctor_get(x_1511, 1); +lean_inc(x_1512); +x_1513 = lean_ctor_get(x_1511, 0); +lean_inc(x_1513); +lean_dec(x_1511); +x_1514 = lean_ctor_get(x_1512, 0); +lean_inc(x_1514); +x_1515 = lean_ctor_get(x_1512, 1); +lean_inc(x_1515); +x_1516 = lean_ctor_get(x_1512, 2); +lean_inc(x_1516); +x_1517 = lean_ctor_get(x_1512, 3); +lean_inc(x_1517); +x_1518 = lean_ctor_get(x_1512, 4); +lean_inc(x_1518); +x_1519 = lean_ctor_get(x_1512, 5); +lean_inc(x_1519); +x_1520 = lean_ctor_get(x_3, 0); +lean_inc(x_1520); +x_1521 = lean_ctor_get(x_1520, 3); +lean_inc(x_1521); +x_1522 = lean_ctor_get(x_1520, 4); +lean_inc(x_1522); +lean_dec(x_1520); +x_1523 = lean_environment_main_module(x_1513); +x_1524 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1524, 0, x_1523); +lean_ctor_set(x_1524, 1, x_1509); +lean_ctor_set(x_1524, 2, x_1521); +lean_ctor_set(x_1524, 3, x_1522); +lean_inc(x_1); +x_1525 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1524, x_1519); +if (lean_obj_tag(x_1525) == 0) +{ +uint8_t x_1526; +x_1526 = !lean_is_exclusive(x_1512); +if (x_1526 == 0) +{ +lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; +x_1527 = lean_ctor_get(x_1512, 5); +lean_dec(x_1527); +x_1528 = lean_ctor_get(x_1512, 4); +lean_dec(x_1528); +x_1529 = lean_ctor_get(x_1512, 3); +lean_dec(x_1529); +x_1530 = lean_ctor_get(x_1512, 2); +lean_dec(x_1530); +x_1531 = lean_ctor_get(x_1512, 1); +lean_dec(x_1531); +x_1532 = lean_ctor_get(x_1512, 0); +lean_dec(x_1532); +x_1533 = lean_ctor_get(x_1525, 0); +lean_inc(x_1533); +x_1534 = lean_ctor_get(x_1525, 1); +lean_inc(x_1534); +lean_dec(x_1525); +lean_ctor_set(x_1512, 5, x_1534); +x_5 = x_1533; +x_6 = x_1512; +goto block_33; +} +else +{ +lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; +lean_dec(x_1512); +x_1535 = lean_ctor_get(x_1525, 0); +lean_inc(x_1535); +x_1536 = lean_ctor_get(x_1525, 1); +lean_inc(x_1536); +lean_dec(x_1525); +x_1537 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1537, 0, x_1514); +lean_ctor_set(x_1537, 1, x_1515); +lean_ctor_set(x_1537, 2, x_1516); +lean_ctor_set(x_1537, 3, x_1517); +lean_ctor_set(x_1537, 4, x_1518); +lean_ctor_set(x_1537, 5, x_1536); +x_5 = x_1535; +x_6 = x_1537; +goto block_33; +} +} +else +{ +lean_object* x_1538; +lean_dec(x_1518); +lean_dec(x_1517); +lean_dec(x_1516); +lean_dec(x_1515); +lean_dec(x_1514); +lean_dec(x_2); +lean_dec(x_1); +x_1538 = lean_ctor_get(x_1525, 0); +lean_inc(x_1538); +lean_dec(x_1525); +if (lean_obj_tag(x_1538) == 0) +{ +lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; uint8_t x_1544; +x_1539 = lean_ctor_get(x_1538, 0); +lean_inc(x_1539); +x_1540 = lean_ctor_get(x_1538, 1); +lean_inc(x_1540); +lean_dec(x_1538); +x_1541 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1541, 0, x_1540); +x_1542 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1542, 0, x_1541); +x_1543 = l_Lean_Elab_Term_throwError___rarg(x_1539, x_1542, x_3, x_1512); +lean_dec(x_1539); +x_1544 = !lean_is_exclusive(x_1543); +if (x_1544 == 0) +{ +return x_1543; +} +else +{ +lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; +x_1545 = lean_ctor_get(x_1543, 0); +x_1546 = lean_ctor_get(x_1543, 1); +lean_inc(x_1546); +lean_inc(x_1545); +lean_dec(x_1543); +x_1547 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1547, 0, x_1545); +lean_ctor_set(x_1547, 1, x_1546); +return x_1547; +} +} +else +{ +lean_object* x_1548; uint8_t x_1549; +lean_dec(x_3); +x_1548 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1512); +x_1549 = !lean_is_exclusive(x_1548); +if (x_1549 == 0) +{ +return x_1548; +} +else +{ +lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; +x_1550 = lean_ctor_get(x_1548, 0); +x_1551 = lean_ctor_get(x_1548, 1); +lean_inc(x_1551); +lean_inc(x_1550); +lean_dec(x_1548); +x_1552 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1552, 0, x_1550); +lean_ctor_set(x_1552, 1, x_1551); +return x_1552; +} +} +} +} +else +{ +lean_object* x_1553; uint8_t x_1554; lean_object* x_1704; uint8_t x_1705; +x_1553 = l_Lean_Syntax_getArg(x_1506, x_128); +lean_dec(x_1506); +x_1704 = l_Lean_mkTermIdFromIdent___closed__2; +lean_inc(x_1553); +x_1705 = l_Lean_Syntax_isOfKind(x_1553, x_1704); +if (x_1705 == 0) +{ +uint8_t x_1706; +x_1706 = 0; +x_1554 = x_1706; +goto block_1703; +} +else +{ +lean_object* x_1707; lean_object* x_1708; uint8_t x_1709; +x_1707 = l_Lean_Syntax_getArgs(x_1553); +x_1708 = lean_array_get_size(x_1707); +lean_dec(x_1707); +x_1709 = lean_nat_dec_eq(x_1708, x_224); +lean_dec(x_1708); +x_1554 = x_1709; +goto block_1703; +} +block_1703: +{ +if (x_1554 == 0) +{ +lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; +lean_dec(x_1553); +lean_dec(x_1459); +lean_dec(x_223); +x_1555 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1556 = lean_ctor_get(x_1555, 0); +lean_inc(x_1556); +x_1557 = lean_ctor_get(x_1555, 1); +lean_inc(x_1557); +lean_dec(x_1555); +x_1558 = l_Lean_Elab_Term_getEnv___rarg(x_1557); +x_1559 = lean_ctor_get(x_1558, 1); +lean_inc(x_1559); +x_1560 = lean_ctor_get(x_1558, 0); +lean_inc(x_1560); +lean_dec(x_1558); +x_1561 = lean_ctor_get(x_1559, 0); +lean_inc(x_1561); +x_1562 = lean_ctor_get(x_1559, 1); +lean_inc(x_1562); +x_1563 = lean_ctor_get(x_1559, 2); +lean_inc(x_1563); +x_1564 = lean_ctor_get(x_1559, 3); +lean_inc(x_1564); +x_1565 = lean_ctor_get(x_1559, 4); +lean_inc(x_1565); +x_1566 = lean_ctor_get(x_1559, 5); +lean_inc(x_1566); +x_1567 = lean_ctor_get(x_3, 0); +lean_inc(x_1567); +x_1568 = lean_ctor_get(x_1567, 3); +lean_inc(x_1568); +x_1569 = lean_ctor_get(x_1567, 4); +lean_inc(x_1569); +lean_dec(x_1567); +x_1570 = lean_environment_main_module(x_1560); +x_1571 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1571, 0, x_1570); +lean_ctor_set(x_1571, 1, x_1556); +lean_ctor_set(x_1571, 2, x_1568); +lean_ctor_set(x_1571, 3, x_1569); +lean_inc(x_1); +x_1572 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1571, x_1566); +if (lean_obj_tag(x_1572) == 0) +{ +uint8_t x_1573; +x_1573 = !lean_is_exclusive(x_1559); +if (x_1573 == 0) +{ +lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; +x_1574 = lean_ctor_get(x_1559, 5); +lean_dec(x_1574); +x_1575 = lean_ctor_get(x_1559, 4); +lean_dec(x_1575); +x_1576 = lean_ctor_get(x_1559, 3); +lean_dec(x_1576); +x_1577 = lean_ctor_get(x_1559, 2); +lean_dec(x_1577); +x_1578 = lean_ctor_get(x_1559, 1); +lean_dec(x_1578); +x_1579 = lean_ctor_get(x_1559, 0); +lean_dec(x_1579); +x_1580 = lean_ctor_get(x_1572, 0); +lean_inc(x_1580); +x_1581 = lean_ctor_get(x_1572, 1); +lean_inc(x_1581); +lean_dec(x_1572); +lean_ctor_set(x_1559, 5, x_1581); +x_5 = x_1580; +x_6 = x_1559; +goto block_33; +} +else +{ +lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; +lean_dec(x_1559); +x_1582 = lean_ctor_get(x_1572, 0); +lean_inc(x_1582); +x_1583 = lean_ctor_get(x_1572, 1); +lean_inc(x_1583); +lean_dec(x_1572); +x_1584 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1584, 0, x_1561); +lean_ctor_set(x_1584, 1, x_1562); +lean_ctor_set(x_1584, 2, x_1563); +lean_ctor_set(x_1584, 3, x_1564); +lean_ctor_set(x_1584, 4, x_1565); +lean_ctor_set(x_1584, 5, x_1583); +x_5 = x_1582; +x_6 = x_1584; +goto block_33; +} +} +else +{ +lean_object* x_1585; +lean_dec(x_1565); +lean_dec(x_1564); +lean_dec(x_1563); +lean_dec(x_1562); +lean_dec(x_1561); +lean_dec(x_2); +lean_dec(x_1); +x_1585 = lean_ctor_get(x_1572, 0); +lean_inc(x_1585); +lean_dec(x_1572); +if (lean_obj_tag(x_1585) == 0) +{ +lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; uint8_t x_1591; +x_1586 = lean_ctor_get(x_1585, 0); +lean_inc(x_1586); +x_1587 = lean_ctor_get(x_1585, 1); +lean_inc(x_1587); +lean_dec(x_1585); +x_1588 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1588, 0, x_1587); +x_1589 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1589, 0, x_1588); +x_1590 = l_Lean_Elab_Term_throwError___rarg(x_1586, x_1589, x_3, x_1559); +lean_dec(x_1586); +x_1591 = !lean_is_exclusive(x_1590); +if (x_1591 == 0) +{ +return x_1590; +} +else +{ +lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; +x_1592 = lean_ctor_get(x_1590, 0); +x_1593 = lean_ctor_get(x_1590, 1); +lean_inc(x_1593); +lean_inc(x_1592); +lean_dec(x_1590); +x_1594 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1594, 0, x_1592); +lean_ctor_set(x_1594, 1, x_1593); +return x_1594; +} +} +else +{ +lean_object* x_1595; uint8_t x_1596; +lean_dec(x_3); +x_1595 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1559); +x_1596 = !lean_is_exclusive(x_1595); +if (x_1596 == 0) +{ +return x_1595; +} +else +{ +lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; +x_1597 = lean_ctor_get(x_1595, 0); +x_1598 = lean_ctor_get(x_1595, 1); +lean_inc(x_1598); +lean_inc(x_1597); +lean_dec(x_1595); +x_1599 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1599, 0, x_1597); +lean_ctor_set(x_1599, 1, x_1598); +return x_1599; +} +} +} +} +else +{ +lean_object* x_1600; lean_object* x_1601; uint8_t x_1602; +x_1600 = l_Lean_Syntax_getArg(x_1553, x_128); +x_1601 = l_Lean_identKind___closed__2; +lean_inc(x_1600); +x_1602 = l_Lean_Syntax_isOfKind(x_1600, x_1601); +if (x_1602 == 0) +{ +lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; +lean_dec(x_1600); +lean_dec(x_1553); +lean_dec(x_1459); +lean_dec(x_223); +x_1603 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1604 = lean_ctor_get(x_1603, 0); +lean_inc(x_1604); +x_1605 = lean_ctor_get(x_1603, 1); +lean_inc(x_1605); +lean_dec(x_1603); +x_1606 = l_Lean_Elab_Term_getEnv___rarg(x_1605); +x_1607 = lean_ctor_get(x_1606, 1); +lean_inc(x_1607); +x_1608 = lean_ctor_get(x_1606, 0); +lean_inc(x_1608); +lean_dec(x_1606); +x_1609 = lean_ctor_get(x_1607, 0); +lean_inc(x_1609); +x_1610 = lean_ctor_get(x_1607, 1); +lean_inc(x_1610); +x_1611 = lean_ctor_get(x_1607, 2); +lean_inc(x_1611); +x_1612 = lean_ctor_get(x_1607, 3); +lean_inc(x_1612); +x_1613 = lean_ctor_get(x_1607, 4); +lean_inc(x_1613); +x_1614 = lean_ctor_get(x_1607, 5); +lean_inc(x_1614); +x_1615 = lean_ctor_get(x_3, 0); +lean_inc(x_1615); +x_1616 = lean_ctor_get(x_1615, 3); +lean_inc(x_1616); +x_1617 = lean_ctor_get(x_1615, 4); +lean_inc(x_1617); +lean_dec(x_1615); +x_1618 = lean_environment_main_module(x_1608); +x_1619 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1619, 0, x_1618); +lean_ctor_set(x_1619, 1, x_1604); +lean_ctor_set(x_1619, 2, x_1616); +lean_ctor_set(x_1619, 3, x_1617); +lean_inc(x_1); +x_1620 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1619, x_1614); +if (lean_obj_tag(x_1620) == 0) +{ +uint8_t x_1621; +x_1621 = !lean_is_exclusive(x_1607); +if (x_1621 == 0) +{ +lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; +x_1622 = lean_ctor_get(x_1607, 5); +lean_dec(x_1622); +x_1623 = lean_ctor_get(x_1607, 4); +lean_dec(x_1623); +x_1624 = lean_ctor_get(x_1607, 3); +lean_dec(x_1624); +x_1625 = lean_ctor_get(x_1607, 2); +lean_dec(x_1625); +x_1626 = lean_ctor_get(x_1607, 1); +lean_dec(x_1626); +x_1627 = lean_ctor_get(x_1607, 0); +lean_dec(x_1627); +x_1628 = lean_ctor_get(x_1620, 0); +lean_inc(x_1628); +x_1629 = lean_ctor_get(x_1620, 1); +lean_inc(x_1629); +lean_dec(x_1620); +lean_ctor_set(x_1607, 5, x_1629); +x_5 = x_1628; +x_6 = x_1607; +goto block_33; +} +else +{ +lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; +lean_dec(x_1607); +x_1630 = lean_ctor_get(x_1620, 0); +lean_inc(x_1630); +x_1631 = lean_ctor_get(x_1620, 1); +lean_inc(x_1631); +lean_dec(x_1620); +x_1632 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1632, 0, x_1609); +lean_ctor_set(x_1632, 1, x_1610); +lean_ctor_set(x_1632, 2, x_1611); +lean_ctor_set(x_1632, 3, x_1612); +lean_ctor_set(x_1632, 4, x_1613); +lean_ctor_set(x_1632, 5, x_1631); +x_5 = x_1630; +x_6 = x_1632; +goto block_33; +} +} +else +{ +lean_object* x_1633; +lean_dec(x_1613); +lean_dec(x_1612); +lean_dec(x_1611); +lean_dec(x_1610); +lean_dec(x_1609); +lean_dec(x_2); +lean_dec(x_1); +x_1633 = lean_ctor_get(x_1620, 0); +lean_inc(x_1633); +lean_dec(x_1620); +if (lean_obj_tag(x_1633) == 0) +{ +lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; uint8_t x_1639; +x_1634 = lean_ctor_get(x_1633, 0); +lean_inc(x_1634); +x_1635 = lean_ctor_get(x_1633, 1); +lean_inc(x_1635); +lean_dec(x_1633); +x_1636 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1636, 0, x_1635); +x_1637 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1637, 0, x_1636); +x_1638 = l_Lean_Elab_Term_throwError___rarg(x_1634, x_1637, x_3, x_1607); +lean_dec(x_1634); +x_1639 = !lean_is_exclusive(x_1638); +if (x_1639 == 0) +{ +return x_1638; +} +else +{ +lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; +x_1640 = lean_ctor_get(x_1638, 0); +x_1641 = lean_ctor_get(x_1638, 1); +lean_inc(x_1641); +lean_inc(x_1640); +lean_dec(x_1638); +x_1642 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1642, 0, x_1640); +lean_ctor_set(x_1642, 1, x_1641); +return x_1642; +} +} +else +{ +lean_object* x_1643; uint8_t x_1644; +lean_dec(x_3); +x_1643 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1607); +x_1644 = !lean_is_exclusive(x_1643); +if (x_1644 == 0) +{ +return x_1643; +} +else +{ +lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; +x_1645 = lean_ctor_get(x_1643, 0); +x_1646 = lean_ctor_get(x_1643, 1); +lean_inc(x_1646); +lean_inc(x_1645); +lean_dec(x_1643); +x_1647 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1647, 0, x_1645); +lean_ctor_set(x_1647, 1, x_1646); +return x_1647; +} +} +} +} +else +{ +lean_object* x_1648; uint8_t x_1649; uint8_t x_1698; +x_1648 = l_Lean_Syntax_getArg(x_1553, x_80); +lean_dec(x_1553); +lean_inc(x_1648); +x_1698 = l_Lean_Syntax_isOfKind(x_1648, x_1030); +if (x_1698 == 0) +{ +uint8_t x_1699; +lean_dec(x_1648); +x_1699 = 0; +x_1649 = x_1699; +goto block_1697; +} +else +{ +lean_object* x_1700; lean_object* x_1701; uint8_t x_1702; +x_1700 = l_Lean_Syntax_getArgs(x_1648); +lean_dec(x_1648); +x_1701 = lean_array_get_size(x_1700); +lean_dec(x_1700); +x_1702 = lean_nat_dec_eq(x_1701, x_128); +lean_dec(x_1701); +x_1649 = x_1702; +goto block_1697; +} +block_1697: +{ +if (x_1649 == 0) +{ +lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; +lean_dec(x_1600); +lean_dec(x_1459); +lean_dec(x_223); +x_1650 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); +x_1651 = lean_ctor_get(x_1650, 0); +lean_inc(x_1651); +x_1652 = lean_ctor_get(x_1650, 1); +lean_inc(x_1652); +lean_dec(x_1650); +x_1653 = l_Lean_Elab_Term_getEnv___rarg(x_1652); +x_1654 = lean_ctor_get(x_1653, 1); +lean_inc(x_1654); +x_1655 = lean_ctor_get(x_1653, 0); +lean_inc(x_1655); +lean_dec(x_1653); +x_1656 = lean_ctor_get(x_1654, 0); +lean_inc(x_1656); +x_1657 = lean_ctor_get(x_1654, 1); +lean_inc(x_1657); +x_1658 = lean_ctor_get(x_1654, 2); +lean_inc(x_1658); +x_1659 = lean_ctor_get(x_1654, 3); +lean_inc(x_1659); +x_1660 = lean_ctor_get(x_1654, 4); +lean_inc(x_1660); +x_1661 = lean_ctor_get(x_1654, 5); +lean_inc(x_1661); +x_1662 = lean_ctor_get(x_3, 0); +lean_inc(x_1662); +x_1663 = lean_ctor_get(x_1662, 3); +lean_inc(x_1663); +x_1664 = lean_ctor_get(x_1662, 4); +lean_inc(x_1664); +lean_dec(x_1662); +x_1665 = lean_environment_main_module(x_1655); +x_1666 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1666, 0, x_1665); +lean_ctor_set(x_1666, 1, x_1651); +lean_ctor_set(x_1666, 2, x_1663); +lean_ctor_set(x_1666, 3, x_1664); +lean_inc(x_1); +x_1667 = l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f(x_1, x_1666, x_1661); +if (lean_obj_tag(x_1667) == 0) +{ +uint8_t x_1668; +x_1668 = !lean_is_exclusive(x_1654); +if (x_1668 == 0) +{ +lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; +x_1669 = lean_ctor_get(x_1654, 5); +lean_dec(x_1669); +x_1670 = lean_ctor_get(x_1654, 4); +lean_dec(x_1670); +x_1671 = lean_ctor_get(x_1654, 3); +lean_dec(x_1671); +x_1672 = lean_ctor_get(x_1654, 2); +lean_dec(x_1672); +x_1673 = lean_ctor_get(x_1654, 1); +lean_dec(x_1673); +x_1674 = lean_ctor_get(x_1654, 0); +lean_dec(x_1674); +x_1675 = lean_ctor_get(x_1667, 0); +lean_inc(x_1675); +x_1676 = lean_ctor_get(x_1667, 1); +lean_inc(x_1676); +lean_dec(x_1667); +lean_ctor_set(x_1654, 5, x_1676); +x_5 = x_1675; +x_6 = x_1654; +goto block_33; +} +else +{ +lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; +lean_dec(x_1654); +x_1677 = lean_ctor_get(x_1667, 0); +lean_inc(x_1677); +x_1678 = lean_ctor_get(x_1667, 1); +lean_inc(x_1678); +lean_dec(x_1667); +x_1679 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1679, 0, x_1656); +lean_ctor_set(x_1679, 1, x_1657); +lean_ctor_set(x_1679, 2, x_1658); +lean_ctor_set(x_1679, 3, x_1659); +lean_ctor_set(x_1679, 4, x_1660); +lean_ctor_set(x_1679, 5, x_1678); +x_5 = x_1677; +x_6 = x_1679; +goto block_33; +} +} +else +{ +lean_object* x_1680; +lean_dec(x_1660); +lean_dec(x_1659); +lean_dec(x_1658); +lean_dec(x_1657); +lean_dec(x_1656); +lean_dec(x_2); +lean_dec(x_1); +x_1680 = lean_ctor_get(x_1667, 0); +lean_inc(x_1680); +lean_dec(x_1667); +if (lean_obj_tag(x_1680) == 0) +{ +lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; uint8_t x_1686; +x_1681 = lean_ctor_get(x_1680, 0); +lean_inc(x_1681); +x_1682 = lean_ctor_get(x_1680, 1); +lean_inc(x_1682); +lean_dec(x_1680); +x_1683 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1683, 0, x_1682); +x_1684 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1684, 0, x_1683); +x_1685 = l_Lean_Elab_Term_throwError___rarg(x_1681, x_1684, x_3, x_1654); +lean_dec(x_1681); +x_1686 = !lean_is_exclusive(x_1685); +if (x_1686 == 0) +{ +return x_1685; +} +else +{ +lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; +x_1687 = lean_ctor_get(x_1685, 0); +x_1688 = lean_ctor_get(x_1685, 1); +lean_inc(x_1688); +lean_inc(x_1687); +lean_dec(x_1685); +x_1689 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1689, 0, x_1687); +lean_ctor_set(x_1689, 1, x_1688); +return x_1689; +} +} +else +{ +lean_object* x_1690; uint8_t x_1691; +lean_dec(x_3); +x_1690 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_1654); +x_1691 = !lean_is_exclusive(x_1690); +if (x_1691 == 0) +{ +return x_1690; +} +else +{ +lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; +x_1692 = lean_ctor_get(x_1690, 0); +x_1693 = lean_ctor_get(x_1690, 1); +lean_inc(x_1693); +lean_inc(x_1692); +lean_dec(x_1690); +x_1694 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1694, 0, x_1692); +lean_ctor_set(x_1694, 1, x_1693); +return x_1694; +} +} +} +} +else +{ +lean_object* x_1695; lean_object* x_1696; +x_1695 = l_Lean_Syntax_getArg(x_1459, x_224); +lean_dec(x_1459); +x_1696 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_223, x_1600, x_1695, x_2, x_3, x_4); +return x_1696; +} +} +} +} } } } @@ -4943,8 +25941,66 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } +lean_object* l___private_Lean_Elab_Match_31__regTraceClasses(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1; +x_3 = l_Lean_registerTraceClass(x_2, x_1); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; +x_5 = lean_ctor_get(x_3, 0); +lean_dec(x_5); +x_6 = lean_box(0); +lean_ctor_set(x_3, 0, x_6); +return x_3; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_3, 1); +lean_inc(x_7); +lean_dec(x_3); +x_8 = lean_box(0); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +} +else +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_3); +if (x_10 == 0) +{ +return x_3; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_3, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_3); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +return x_13; +} +} +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Meta_EqnCompiler_MatchPattern(lean_object*); +lean_object* initialize_Lean_Meta_EqnCompiler_DepElim(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Elab_Match(lean_object* w) { lean_object * res; @@ -4956,6 +26012,12 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_EqnCompiler_MatchPattern(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_EqnCompiler_DepElim(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1 = _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1); l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2 = _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2(); @@ -5000,21 +26062,192 @@ l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__13 = _init lean_mark_persistent(l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__13); l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__14 = _init_l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__14(); lean_mark_persistent(l___private_Lean_Elab_Match_3__expandMatchOptTypeAux___main___closed__14); -l___private_Lean_Elab_Match_6__elabMatchCore___closed__1 = _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Match_6__elabMatchCore___closed__1); -l___private_Lean_Elab_Match_6__elabMatchCore___closed__2 = _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__2(); -lean_mark_persistent(l___private_Lean_Elab_Match_6__elabMatchCore___closed__2); -l___private_Lean_Elab_Match_6__elabMatchCore___closed__3 = _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__3(); -lean_mark_persistent(l___private_Lean_Elab_Match_6__elabMatchCore___closed__3); -l___private_Lean_Elab_Match_6__elabMatchCore___closed__4 = _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__4(); -lean_mark_persistent(l___private_Lean_Elab_Match_6__elabMatchCore___closed__4); -l___private_Lean_Elab_Match_6__elabMatchCore___closed__5 = _init_l___private_Lean_Elab_Match_6__elabMatchCore___closed__5(); -lean_mark_persistent(l___private_Lean_Elab_Match_6__elabMatchCore___closed__5); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__1 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__1); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__2 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__2); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__3 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__3); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__4 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__4); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__5 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__5); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__6 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__6); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__7 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__7); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__8 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__8); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__9 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__9); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__10 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__10); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__11 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__11); +l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__12 = _init_l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_Match_6__elabDiscrsAux___main___closed__12); +l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__1 = _init_l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__1); +l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__2 = _init_l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__2); +l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__3 = _init_l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_9__throwCtorExpected___rarg___closed__3); +l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__1 = _init_l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__1); +l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__2 = _init_l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__2); +l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__3 = _init_l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_11__throwAmbiguous___rarg___closed__3); +l___private_Lean_Elab_Match_12__processVar___closed__1 = _init_l___private_Lean_Elab_Match_12__processVar___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__1); +l___private_Lean_Elab_Match_12__processVar___closed__2 = _init_l___private_Lean_Elab_Match_12__processVar___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__2); +l___private_Lean_Elab_Match_12__processVar___closed__3 = _init_l___private_Lean_Elab_Match_12__processVar___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__3); +l___private_Lean_Elab_Match_12__processVar___closed__4 = _init_l___private_Lean_Elab_Match_12__processVar___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__4); +l___private_Lean_Elab_Match_12__processVar___closed__5 = _init_l___private_Lean_Elab_Match_12__processVar___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__5); +l___private_Lean_Elab_Match_12__processVar___closed__6 = _init_l___private_Lean_Elab_Match_12__processVar___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__6); +l___private_Lean_Elab_Match_12__processVar___closed__7 = _init_l___private_Lean_Elab_Match_12__processVar___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__7); +l___private_Lean_Elab_Match_12__processVar___closed__8 = _init_l___private_Lean_Elab_Match_12__processVar___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__8); +l___private_Lean_Elab_Match_12__processVar___closed__9 = _init_l___private_Lean_Elab_Match_12__processVar___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Match_12__processVar___closed__9); +l___private_Lean_Elab_Match_13__processIdAux___closed__1 = _init_l___private_Lean_Elab_Match_13__processIdAux___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_13__processIdAux___closed__1); +l___private_Lean_Elab_Match_13__processIdAux___closed__2 = _init_l___private_Lean_Elab_Match_13__processIdAux___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_13__processIdAux___closed__2); +l___private_Lean_Elab_Match_13__processIdAux___closed__3 = _init_l___private_Lean_Elab_Match_13__processIdAux___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_13__processIdAux___closed__3); +l___private_Lean_Elab_Match_13__processIdAux___closed__4 = _init_l___private_Lean_Elab_Match_13__processIdAux___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Match_13__processIdAux___closed__4); +l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__1 = _init_l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__1); +l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__2 = _init_l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__2); +l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__3 = _init_l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_16__throwInvalidPattern___rarg___closed__3); +l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__1 = _init_l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__1(); +lean_mark_persistent(l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__1); +l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__2 = _init_l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__2(); +lean_mark_persistent(l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__2); +l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__3 = _init_l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__3(); +lean_mark_persistent(l_Array_forMAux___main___at___private_Lean_Elab_Match_17__collect___main___spec__3___closed__3); +l___private_Lean_Elab_Match_17__collect___main___closed__1 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__1); +l___private_Lean_Elab_Match_17__collect___main___closed__2 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__2); +l___private_Lean_Elab_Match_17__collect___main___closed__3 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__3); +l___private_Lean_Elab_Match_17__collect___main___closed__4 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__4); +l___private_Lean_Elab_Match_17__collect___main___closed__5 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__5); +l___private_Lean_Elab_Match_17__collect___main___closed__6 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__6); +l___private_Lean_Elab_Match_17__collect___main___closed__7 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__7); +l___private_Lean_Elab_Match_17__collect___main___closed__8 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__8); +l___private_Lean_Elab_Match_17__collect___main___closed__9 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__9); +l___private_Lean_Elab_Match_17__collect___main___closed__10 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__10); +l___private_Lean_Elab_Match_17__collect___main___closed__11 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__11); +l___private_Lean_Elab_Match_17__collect___main___closed__12 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__12); +l___private_Lean_Elab_Match_17__collect___main___closed__13 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__13); +l___private_Lean_Elab_Match_17__collect___main___closed__14 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__14); +l___private_Lean_Elab_Match_17__collect___main___closed__15 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__15); +l___private_Lean_Elab_Match_17__collect___main___closed__16 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__16); +l___private_Lean_Elab_Match_17__collect___main___closed__17 = _init_l___private_Lean_Elab_Match_17__collect___main___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_Match_17__collect___main___closed__17); +l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1(); +lean_mark_persistent(l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__1); +l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__2 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__2(); +lean_mark_persistent(l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__2); +l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__3 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__3(); +lean_mark_persistent(l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__3); +l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__4 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__4(); +lean_mark_persistent(l_Array_umapMAux___main___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___closed__4); +l___private_Lean_Elab_Match_18__collectPatternVars___closed__1 = _init_l___private_Lean_Elab_Match_18__collectPatternVars___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_18__collectPatternVars___closed__1); +l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__1 = _init_l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__1); +l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__2 = _init_l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__2); +l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__3 = _init_l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_21__elabPatternsAux___main___closed__3); +l___private_Lean_Elab_Match_22__elabPatterns___closed__1 = _init_l___private_Lean_Elab_Match_22__elabPatterns___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_22__elabPatterns___closed__1); +l___private_Lean_Elab_Match_22__elabPatterns___closed__2 = _init_l___private_Lean_Elab_Match_22__elabPatterns___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_22__elabPatterns___closed__2); +l___private_Lean_Elab_Match_22__elabPatterns___closed__3 = _init_l___private_Lean_Elab_Match_22__elabPatterns___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_22__elabPatterns___closed__3); +l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__1 = _init_l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__1); +l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__2 = _init_l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__2); +l_Lean_Elab_Term_elabMatchAltView___closed__1 = _init_l_Lean_Elab_Term_elabMatchAltView___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_elabMatchAltView___closed__1); +l_Lean_Elab_Term_elabMatchAltView___closed__2 = _init_l_Lean_Elab_Term_elabMatchAltView___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_elabMatchAltView___closed__2); +l_Lean_Elab_Term_elabMatchAltView___closed__3 = _init_l_Lean_Elab_Term_elabMatchAltView___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_elabMatchAltView___closed__3); +l_Lean_Elab_Term_elabMatchAltView___closed__4 = _init_l_Lean_Elab_Term_elabMatchAltView___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_elabMatchAltView___closed__4); +l___private_Lean_Elab_Match_23__elabMatchCore___closed__1 = _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_23__elabMatchCore___closed__1); +l___private_Lean_Elab_Match_23__elabMatchCore___closed__2 = _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_23__elabMatchCore___closed__2); +l___private_Lean_Elab_Match_23__elabMatchCore___closed__3 = _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_23__elabMatchCore___closed__3); +l___private_Lean_Elab_Match_23__elabMatchCore___closed__4 = _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Match_23__elabMatchCore___closed__4); +l___private_Lean_Elab_Match_23__elabMatchCore___closed__5 = _init_l___private_Lean_Elab_Match_23__elabMatchCore___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Match_23__elabMatchCore___closed__5); +l___private_Lean_Elab_Match_24__mkMatchType___main___closed__1 = _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_24__mkMatchType___main___closed__1); +l___private_Lean_Elab_Match_24__mkMatchType___main___closed__2 = _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_24__mkMatchType___main___closed__2); +l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3 = _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_24__mkMatchType___main___closed__3); +l___private_Lean_Elab_Match_24__mkMatchType___main___closed__4 = _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Match_24__mkMatchType___main___closed__4); +l___private_Lean_Elab_Match_24__mkMatchType___main___closed__5 = _init_l___private_Lean_Elab_Match_24__mkMatchType___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Match_24__mkMatchType___main___closed__5); +l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__1 = _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__1); +l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__2 = _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__2); +l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__3 = _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__3); +l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__4 = _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__4); +l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__5 = _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__5); +l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__6 = _init_l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Match_26__mkNewDiscrs___main___closed__6); +l___private_Lean_Elab_Match_27__mkNewPatterns___main___closed__1 = _init_l___private_Lean_Elab_Match_27__mkNewPatterns___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_27__mkNewPatterns___main___closed__1); +l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___closed__1 = _init_l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_30__expandMatchDiscr_x3f___closed__1); l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabMatch(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = l___private_Lean_Elab_Match_31__regTraceClasses(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 2e4ecf145c..5679ca5b6e 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -254,7 +254,6 @@ lean_object* l_Lean_Elab_Command_expandElab___closed__49; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__61; lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntaxAbbrev(lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__11; extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Elab_Command_expandElab___closed__33; extern lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__1; @@ -380,6 +379,7 @@ lean_object* l_Lean_Elab_Command_expandElab___closed__53; lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__12; extern lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_mkKindName___closed__1; +extern lean_object* l_Lean_Elab_Term_expandArrayLit___closed__9; lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__26; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__89; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__47; @@ -409,6 +409,7 @@ extern lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__25; lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__3; +extern lean_object* l_Lean_Elab_Term_expandArrayLit___closed__8; extern lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; extern lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; @@ -452,7 +453,6 @@ extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Command_expandElab___closed__41; lean_object* l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__7; extern lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1; -extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__10; extern lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__2; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__1; @@ -9313,7 +9313,7 @@ lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); x_30 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__2; x_31 = lean_array_push(x_30, x_29); -x_32 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_32 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_33 = lean_array_push(x_31, x_32); x_34 = l_Lean_Parser_Command_attributes___elambda__1___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); @@ -10880,7 +10880,7 @@ lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__2; x_46 = lean_array_push(x_45, x_44); -x_47 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_47 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_48 = lean_array_push(x_46, x_47); x_49 = l_Lean_Parser_Command_attributes___elambda__1___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); @@ -11217,7 +11217,7 @@ lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_178); x_181 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__2; x_182 = lean_array_push(x_181, x_180); -x_183 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_183 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_184 = lean_array_push(x_182, x_183); x_185 = l_Lean_Parser_Command_attributes___elambda__1___closed__2; x_186 = lean_alloc_ctor(1, 2, 0); @@ -13278,7 +13278,7 @@ lean_ctor_set(x_31, 0, x_25); lean_ctor_set(x_31, 1, x_30); x_32 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__2; x_33 = lean_array_push(x_32, x_31); -x_34 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_34 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_35 = lean_array_push(x_33, x_34); x_36 = l_Lean_Parser_Command_attributes___elambda__1___closed__2; x_37 = lean_alloc_ctor(1, 2, 0); @@ -13503,7 +13503,7 @@ lean_ctor_set(x_163, 0, x_157); lean_ctor_set(x_163, 1, x_162); x_164 = l___private_Lean_Elab_Syntax_6__declareSyntaxCatQuotParser___closed__2; x_165 = lean_array_push(x_164, x_163); -x_166 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_166 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_167 = lean_array_push(x_165, x_166); x_168 = l_Lean_Parser_Command_attributes___elambda__1___closed__2; x_169 = lean_alloc_ctor(1, 2, 0); @@ -16127,9 +16127,9 @@ if (lean_obj_tag(x_2) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; x_30 = l_Lean_mkIdentFrom(x_1, x_9); -x_31 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_31 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_32 = lean_array_push(x_31, x_30); -x_33 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_33 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_34 = lean_array_push(x_32, x_33); x_35 = l_Lean_nullKind___closed__2; x_36 = lean_alloc_ctor(1, 2, 0); @@ -16215,9 +16215,9 @@ lean_ctor_set(x_82, 1, x_80); x_83 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_84 = lean_array_push(x_83, x_82); x_85 = l_Lean_mkIdentFrom(x_1, x_9); -x_86 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_86 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_87 = lean_array_push(x_86, x_85); -x_88 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_88 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_89 = lean_array_push(x_87, x_88); x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_81); @@ -16296,9 +16296,9 @@ if (lean_obj_tag(x_2) == 0) { lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_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; x_129 = l_Lean_mkIdentFrom(x_1, x_9); -x_130 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_130 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_131 = lean_array_push(x_130, x_129); -x_132 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_132 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_133 = lean_array_push(x_131, x_132); x_134 = l_Lean_nullKind___closed__2; x_135 = lean_alloc_ctor(1, 2, 0); @@ -16386,9 +16386,9 @@ lean_ctor_set(x_182, 1, x_180); x_183 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_184 = lean_array_push(x_183, x_182); x_185 = l_Lean_mkIdentFrom(x_1, x_9); -x_186 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_186 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_187 = lean_array_push(x_186, x_185); -x_188 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_188 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_189 = lean_array_push(x_187, x_188); x_190 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_190, 0, x_181); @@ -17213,9 +17213,9 @@ lean_ctor_set(x_51, 1, x_49); x_52 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_53 = lean_array_push(x_52, x_51); x_54 = l_Lean_mkIdentFrom(x_1, x_17); -x_55 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_55 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_56 = lean_array_push(x_55, x_54); -x_57 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_57 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_58 = lean_array_push(x_56, x_57); x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_50); @@ -17292,9 +17292,9 @@ lean_ctor_set(x_100, 1, x_98); x_101 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_102 = lean_array_push(x_101, x_100); x_103 = l_Lean_mkIdentFrom(x_1, x_17); -x_104 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_104 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_105 = lean_array_push(x_104, x_103); -x_106 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_106 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_107 = lean_array_push(x_105, x_106); x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_99); @@ -17387,9 +17387,9 @@ lean_ctor_set(x_154, 1, x_152); x_155 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_156 = lean_array_push(x_155, x_154); x_157 = l_Lean_mkIdentFrom(x_1, x_17); -x_158 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_158 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_159 = lean_array_push(x_158, x_157); -x_160 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_160 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_161 = lean_array_push(x_159, x_160); x_162 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_162, 0, x_153); @@ -17468,9 +17468,9 @@ lean_ctor_set(x_204, 1, x_202); x_205 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_206 = lean_array_push(x_205, x_204); x_207 = l_Lean_mkIdentFrom(x_1, x_17); -x_208 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_208 = l_Lean_Elab_Term_expandArrayLit___closed__8; x_209 = lean_array_push(x_208, x_207); -x_210 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_210 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_211 = lean_array_push(x_209, x_210); x_212 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_212, 0, x_203); @@ -18642,10 +18642,10 @@ lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); x_69 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_70 = lean_array_push(x_69, x_68); -x_71 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_71 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_48); x_72 = lean_array_push(x_71, x_48); -x_73 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_73 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_74 = lean_array_push(x_72, x_73); x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_67); @@ -18892,10 +18892,10 @@ lean_ctor_set(x_216, 0, x_215); lean_ctor_set(x_216, 1, x_214); x_217 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_218 = lean_array_push(x_217, x_216); -x_219 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_219 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_48); x_220 = lean_array_push(x_219, x_48); -x_221 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_221 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_222 = lean_array_push(x_220, x_221); x_223 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_223, 0, x_215); @@ -19143,10 +19143,10 @@ lean_ctor_set(x_365, 0, x_364); lean_ctor_set(x_365, 1, x_363); x_366 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_367 = lean_array_push(x_366, x_365); -x_368 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_368 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_48); x_369 = lean_array_push(x_368, x_48); -x_370 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_370 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_371 = lean_array_push(x_369, x_370); x_372 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_372, 0, x_364); @@ -19424,10 +19424,10 @@ lean_ctor_set(x_526, 0, x_525); lean_ctor_set(x_526, 1, x_524); x_527 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_528 = lean_array_push(x_527, x_526); -x_529 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_529 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_48); x_530 = lean_array_push(x_529, x_48); -x_531 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_531 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_532 = lean_array_push(x_530, x_531); x_533 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_533, 0, x_525); @@ -19782,10 +19782,10 @@ lean_ctor_set(x_723, 0, x_722); lean_ctor_set(x_723, 1, x_721); x_724 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_725 = lean_array_push(x_724, x_723); -x_726 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_726 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_703); x_727 = lean_array_push(x_726, x_703); -x_728 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_728 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_729 = lean_array_push(x_727, x_728); x_730 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_730, 0, x_722); @@ -20034,10 +20034,10 @@ lean_ctor_set(x_872, 0, x_871); lean_ctor_set(x_872, 1, x_870); x_873 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_874 = lean_array_push(x_873, x_872); -x_875 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_875 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_703); x_876 = lean_array_push(x_875, x_703); -x_877 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_877 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_878 = lean_array_push(x_876, x_877); x_879 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_879, 0, x_871); @@ -20287,10 +20287,10 @@ lean_ctor_set(x_1022, 0, x_1021); lean_ctor_set(x_1022, 1, x_1020); x_1023 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_1024 = lean_array_push(x_1023, x_1022); -x_1025 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_1025 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_703); x_1026 = lean_array_push(x_1025, x_703); -x_1027 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_1027 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_1028 = lean_array_push(x_1026, x_1027); x_1029 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1029, 0, x_1021); @@ -20569,10 +20569,10 @@ lean_ctor_set(x_1184, 0, x_1183); lean_ctor_set(x_1184, 1, x_1182); x_1185 = l___private_Lean_Elab_Syntax_9__expandNotationAux___closed__2; x_1186 = lean_array_push(x_1185, x_1184); -x_1187 = l_Lean_Elab_Term_elabArrayLit___closed__10; +x_1187 = l_Lean_Elab_Term_expandArrayLit___closed__8; lean_inc(x_703); x_1188 = lean_array_push(x_1187, x_703); -x_1189 = l_Lean_Elab_Term_elabArrayLit___closed__11; +x_1189 = l_Lean_Elab_Term_expandArrayLit___closed__9; x_1190 = lean_array_push(x_1188, x_1189); x_1191 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1191, 0, x_1183); diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index 1667e67b9b..e0861553c3 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -28,7 +28,6 @@ lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__1; extern lean_object* l_Lean_Expr_prod_x3f___closed__2; lean_object* l_Lean_mkAppStx(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadQuotation; -lean_object* l___regBuiltin_Lean_Elab_Term_elabArrayLit___closed__1; lean_object* l_Lean_Elab_Term_elabRawNumLit___closed__1; extern lean_object* l_Lean_Closure_mkNewLevelParam___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabTypeStx___closed__1; @@ -36,11 +35,9 @@ lean_object* l_Lean_extractMacroScopes(lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__8; lean_object* l_Lean_Elab_Term_instantiateLevelMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasSyntheticSorry___main(lean_object*); -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__1; lean_object* l_Lean_Elab_Term_elabImplicitLambdaAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabStr(lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__8; lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabImplicitLambdaAux___closed__1; @@ -91,6 +88,7 @@ lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); lean_object* l_ReaderT_read___at_Lean_Elab_Term_monadLog___spec__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabQuotedName___closed__1; lean_object* lean_local_ctx_mk_let_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__7; lean_object* l_Lean_Elab_Term_getLocalInsts___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resettingSynthInstanceCacheWhen___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getPos___at_Lean_Elab_Term_throwError___spec__2___boxed(lean_object*, lean_object*, lean_object*); @@ -98,7 +96,6 @@ lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__7; uint8_t l_List_elem___main___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_18__mkPairsAux___main___closed__5; lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__2; extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2; extern lean_object* l_Prod_HasRepr___rarg___closed__1; lean_object* l___private_Lean_Elab_Term_22__mkFreshLevelMVars(lean_object*, lean_object*, lean_object*, lean_object*); @@ -167,7 +164,6 @@ lean_object* l___private_Lean_Elab_Term_18__mkPairsAux(lean_object*, lean_object lean_object* l___regBuiltin_Lean_Elab_Term_elabProp(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toStr___closed__1; -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabListLit___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBadCDot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__3; @@ -196,7 +192,6 @@ size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Lean_Elab_Term_withLCtx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__5; lean_object* l_Lean_Elab_Term_synthesizeInst(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__6; lean_object* l_Std_PersistentHashMap_empty___at_Lean_Elab_Term_termElabAttribute___spec__3; lean_object* l_Lean_Elab_Term_monadLog___closed__10; lean_object* l_Lean_Elab_Term_resolveName___closed__6; @@ -254,7 +249,6 @@ lean_object* l_Lean_Elab_Term_elabTermAux___main___boxed(lean_object*, lean_obje lean_object* l_Lean_Elab_Term_elabImplicitLambdaAux(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_whnf(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_caseValueAux___lambda__2___closed__8; -lean_object* l_Lean_Elab_Term_elabArrayLit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadLog___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_7__isMonad_x3f___closed__1; @@ -325,7 +319,6 @@ lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___closed__4; extern lean_object* l_Lean_EnvExtension_Inhabited___rarg___closed__1; lean_object* l_Lean_Elab_Term_dbgTrace(lean_object*); lean_object* l___private_Lean_Elab_Term_22__mkFreshLevelMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__11; lean_object* l_Lean_Elab_Term_decLevel_x3f(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Elab_Term_elabTermWithoutImplicitLambdas(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); @@ -398,7 +391,6 @@ lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallUsedOnly(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabNum(lean_object*); lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_elabListLit(lean_object*); lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Term_elabUsingElabFns___spec__5(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_blockImplicitLambda___boxed(lean_object*); lean_object* l_Lean_Elab_Term_monadQuotation___closed__1; @@ -488,6 +480,7 @@ lean_object* l_Lean_Elab_Term_getCurrMacroScope___boxed(lean_object*, lean_objec extern lean_object* l_Lean_mkAppStx___closed__6; lean_object* l_Lean_Meta_isTypeFormerType___main(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Options_empty; +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__9; lean_object* l_Lean_Elab_Term_useImplicitLambda_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshFVarId(lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -495,6 +488,7 @@ lean_object* l_Lean_Elab_Term_elabLevel___boxed(lean_object*, lean_object*, lean size_t lean_usize_modn(size_t, lean_object*); lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__2; lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Term_elabUsingElabFns___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__4; lean_object* l_Lean_Elab_Term_elabImplicitLambda___main___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__2; lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); @@ -509,10 +503,12 @@ extern lean_object* l_Lean_firstFrontendMacroScope; lean_object* l_Lean_Elab_Term_elabTermAux(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isLevelDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_termElabAttribute___closed__5; +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__8; lean_object* l_Lean_Elab_mkElabAttribute___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabRawNumLit___closed__1; lean_object* l_Std_PersistentArray_foldlMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMessageAt___at_Lean_Elab_Term_throwError___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_expandListLit___closed__1; lean_object* l_Lean_Elab_Term_whnfCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrNamespace___boxed(lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; @@ -529,14 +525,16 @@ lean_object* l_Lean_Elab_Term_TermElabResult_inhabited; lean_object* l_Lean_Elab_Term_withMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_listLitAux___main___closed__4; lean_object* l_Lean_mkFVar(lean_object*); -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__4; +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_expandListLit___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__1; lean_object* l_Lean_Elab_Term_TermElabM_inhabited___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkPure(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; lean_object* l_Lean_Elab_Term_mkFreshAnonymousIdent___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabRawNumLit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Term_elabUsingElabFns___spec__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_expandListLit(lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__3; lean_object* l_Lean_Elab_Term_tryLiftAndCoe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__4; @@ -545,7 +543,6 @@ extern lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2; lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError(lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__9; lean_object* l___regBuiltin_Lean_Elab_Term_elabSort(lean_object*); lean_object* l_Lean_Elab_Term_resolveName___closed__9; lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax(lean_object*, lean_object*); @@ -553,16 +550,17 @@ lean_object* l_Std_AssocList_find_x3f___main___at_Lean_Elab_Term_elabUsingElabFn size_t l_USize_land(size_t, size_t); extern lean_object* l_Lean_String_HasQuote___closed__2; lean_object* l_Lean_Elab_Term_mkConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__2; lean_object* l_Lean_Elab_Term_mkConst___closed__3; lean_object* l_Lean_Elab_Term_resolveName___closed__4; extern lean_object* l_Lean_nullKind___closed__2; uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg___closed__2; +lean_object* l_Lean_Elab_Term_expandListLit___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNamedHole___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInst___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_termElabAttribute; lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__1; -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__10; lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__2; lean_object* l_Lean_Elab_Term_monadLog___closed__2; extern lean_object* l_Lean_Meta_Exception_toStr___closed__7; @@ -575,6 +573,7 @@ lean_object* l_Lean_Elab_Term_isDefEq(lean_object*, lean_object*, lean_object*, lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__10; lean_object* l_Std_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__5; +lean_object* l___regBuiltin_Lean_Elab_Term_expandArrayLit(lean_object*); lean_object* l_Lean_ConstantInfo_lparams(lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__9; lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); @@ -606,6 +605,7 @@ lean_object* l_Lean_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(lean_ lean_object* l___private_Lean_Elab_Term_16__mkAuxNameAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_setMCtx(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStr(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_macroAttribute; lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___closed__1; lean_object* l_Lean_mkLevelSucc(lean_object*); lean_object* l_Lean_Elab_Term_getLCtx(lean_object*, lean_object*); @@ -636,6 +636,7 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); lean_object* l_Lean_Elab_Term_registerSyntheticMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Lean_Elab_Term_expandArrayLit(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabSort___closed__1; lean_object* l___private_Lean_Elab_Term_4__hasCDot___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__9; @@ -676,6 +677,7 @@ lean_object* l_Lean_Elab_Term_modifyEnv___boxed(lean_object*, lean_object*, lean lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Term_logTrace___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_4__hasCDot___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveGlobalName___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__6; lean_object* l___regBuiltin_Lean_Elab_Term_elabProp___closed__1; lean_object* l_Lean_Elab_Term_mkConst___closed__1; lean_object* l_Lean_Elab_Term_isExprMVarAssigned(lean_object*, lean_object*, lean_object*); @@ -697,7 +699,6 @@ lean_object* l_Lean_Elab_Term_elabImplicitLambda___main___lambda__1___boxed(lean extern lean_object* l_Lean_Meta_evalNat___main___closed__7; lean_object* l_Lean_Syntax_getPos(lean_object*); lean_object* l_Lean_Elab_Term_mkExpectedTypeHint___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabListLit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_4__hasCDot___main___boxed(lean_object*); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*); @@ -722,7 +723,6 @@ lean_object* l___private_Lean_Elab_Term_18__mkPairsAux___main___closed__6; lean_object* l_Lean_mkTermIdFrom(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabRawCharLit___closed__1; extern lean_object* l_Lean_FileMap_Inhabited___closed__1; -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__3; extern lean_object* l_Lean_mkOptionalNode___closed__1; extern lean_object* l_Lean_prodToExpr___rarg___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_logDbgTrace(lean_object*, lean_object*, lean_object*); @@ -752,8 +752,8 @@ lean_object* l_Lean_Elab_Term_getTraceState___boxed(lean_object*); lean_object* l_List_foldlM___main___at___private_Lean_Elab_Term_23__mkConsts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withLetDecl(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_elabListLit___closed__1; lean_object* l_Lean_Elab_Term_mkFreshLevelMVar(lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_expandArrayLit___closed__1; lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__4; lean_object* l_Lean_Elab_Term_withoutMacroStackAtErr___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___closed__1; @@ -762,7 +762,6 @@ extern lean_object* l_Lean_mkHole___closed__2; lean_object* l_Lean_Elab_Term_withLocalDecl(lean_object*); lean_object* l_Lean_Elab_Term_resolveName___closed__2; extern lean_object* l_Lean_Expr_arrayLit_x3f___closed__2; -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabListLit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withLocalDecl___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkPairs___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__11; @@ -835,6 +834,7 @@ lean_object* l_Lean_Elab_Term_mkTacticMVar(lean_object*, lean_object*, lean_obje lean_object* l___regBuiltin_Lean_Elab_Term_elabRawStrLit___closed__1; lean_object* lean_usize_to_nat(size_t); extern lean_object* l_Lean_Elab_mkMacroAttribute___closed__2; +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__3; uint8_t l_Array_isEqvAux___main___at_Lean_Elab_Term_withMVarContext___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_lift___at_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Message_toString(lean_object*); @@ -855,7 +855,6 @@ lean_object* l_Lean_Elab_Term_mkFreshInstanceName___boxed(lean_object*); lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2; lean_object* l_Lean_Elab_Term_resolveName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_elabArrayLit(lean_object*); lean_object* l___private_Lean_Elab_Term_18__mkPairsAux___main___closed__1; lean_object* l_Lean_Elab_Term_resolveName___closed__1; lean_object* l_Lean_Elab_Term_mkAuxName___closed__1; @@ -875,16 +874,17 @@ lean_object* l___private_Lean_Elab_Term_17__elabOptLevel(lean_object*, lean_obje lean_object* l_Lean_Elab_Term_mkTacticMVar___closed__1; lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldlM___main___at___private_Lean_Elab_Term_23__mkConsts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_expandListLit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__4; extern lean_object* l_Lean_Meta_mkSorry___closed__2; extern lean_object* l_EStateM_MonadState___closed__2; extern lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_getOptions___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBadCDot___closed__3; -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__5; lean_object* l_Lean_Elab_Term_tryLiftAndCoe___closed__7; lean_object* l_Lean_Elab_mkMessageAt___at_Lean_Elab_Term_throwError___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandListLit(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkForall___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadLog; lean_object* l_Lean_Elab_Term_getMCtx___rarg(lean_object*); @@ -893,7 +893,6 @@ lean_object* l_Lean_Elab_Term_monadLog___closed__4; lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Term_elabUsingElabFns___spec__5___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_liftMetaM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabArrayLit___closed__7; lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__1; lean_object* l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__2; lean_object* l_Lean_Elab_Term_elabTermWithoutImplicitLambdas___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -914,6 +913,7 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_IO_println___at_IO_runMeta___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__6; lean_object* l_Lean_Elab_Term_tryLiftAndCoe___closed__3; +lean_object* l_Lean_Elab_Term_expandArrayLit___closed__5; lean_object* lean_add_decl(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryCoe___closed__3; lean_object* _init_l_Lean_Elab_Term_State_inhabited___closed__1() { @@ -28390,7 +28390,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabListLit___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_expandListLit___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -28421,131 +28421,76 @@ return x_6; } } } -lean_object* l_Lean_Elab_Term_elabListLit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Elab_Term_expandListLit(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Lean_Syntax_getArg(x_1, x_5); -x_7 = lean_unsigned_to_nat(1u); -x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = lean_unsigned_to_nat(2u); -x_10 = l_Lean_Syntax_getArg(x_1, x_9); -x_11 = l_Lean_Expr_listLitAux___main___closed__6; -x_12 = l_Lean_mkTermIdFrom(x_6, x_11); -lean_dec(x_6); -x_13 = l_Lean_Expr_listLitAux___main___closed__4; -x_14 = l_Lean_mkTermIdFrom(x_10, x_13); -lean_dec(x_10); -x_15 = l_Lean_Syntax_getArgs(x_8); -lean_dec(x_8); -x_16 = l_Array_empty___closed__1; -x_17 = l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__1(x_9, x_15, x_5, x_16); -lean_dec(x_15); -x_18 = lean_array_get_size(x_17); -x_19 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabListLit___spec__1(x_1, x_12, x_17, x_18, lean_box(0), x_14); -lean_dec(x_17); -x_20 = !lean_is_exclusive(x_3); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; -x_21 = lean_ctor_get(x_3, 8); -lean_inc(x_19); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_1); -lean_ctor_set(x_22, 1, x_19); -x_23 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_21); -lean_ctor_set(x_3, 8, x_23); -x_24 = 1; -x_25 = l_Lean_Elab_Term_elabTermAux___main(x_2, x_24, x_24, x_19, x_3, x_4); -return x_25; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; lean_object* x_43; -x_26 = lean_ctor_get(x_3, 0); -x_27 = lean_ctor_get(x_3, 1); -x_28 = lean_ctor_get(x_3, 2); -x_29 = lean_ctor_get(x_3, 3); -x_30 = lean_ctor_get(x_3, 4); -x_31 = lean_ctor_get(x_3, 5); -x_32 = lean_ctor_get(x_3, 6); -x_33 = lean_ctor_get(x_3, 7); -x_34 = lean_ctor_get(x_3, 8); -x_35 = lean_ctor_get(x_3, 9); -x_36 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); -x_37 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 1); -x_38 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 2); -lean_inc(x_35); -lean_inc(x_34); -lean_inc(x_33); -lean_inc(x_32); -lean_inc(x_31); -lean_inc(x_30); -lean_inc(x_29); -lean_inc(x_28); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_3); -lean_inc(x_19); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_1); -lean_ctor_set(x_39, 1, x_19); -x_40 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_34); -x_41 = lean_alloc_ctor(0, 10, 3); -lean_ctor_set(x_41, 0, x_26); -lean_ctor_set(x_41, 1, x_27); -lean_ctor_set(x_41, 2, x_28); -lean_ctor_set(x_41, 3, x_29); -lean_ctor_set(x_41, 4, x_30); -lean_ctor_set(x_41, 5, x_31); -lean_ctor_set(x_41, 6, x_32); -lean_ctor_set(x_41, 7, x_33); -lean_ctor_set(x_41, 8, x_40); -lean_ctor_set(x_41, 9, x_35); -lean_ctor_set_uint8(x_41, sizeof(void*)*10, x_36); -lean_ctor_set_uint8(x_41, sizeof(void*)*10 + 1, x_37); -lean_ctor_set_uint8(x_41, sizeof(void*)*10 + 2, x_38); -x_42 = 1; -x_43 = l_Lean_Elab_Term_elabTermAux___main(x_2, x_42, x_42, x_19, x_41, x_4); -return x_43; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_4 = lean_unsigned_to_nat(0u); +x_5 = l_Lean_Syntax_getArg(x_1, x_4); +x_6 = lean_unsigned_to_nat(1u); +x_7 = l_Lean_Syntax_getArg(x_1, x_6); +x_8 = lean_unsigned_to_nat(2u); +x_9 = l_Lean_Syntax_getArg(x_1, x_8); +x_10 = l_Lean_Expr_listLitAux___main___closed__6; +x_11 = l_Lean_mkTermIdFrom(x_5, x_10); +lean_dec(x_5); +x_12 = l_Lean_Expr_listLitAux___main___closed__4; +x_13 = l_Lean_mkTermIdFrom(x_9, x_12); +lean_dec(x_9); +x_14 = l_Lean_Syntax_getArgs(x_7); +lean_dec(x_7); +x_15 = l_Array_empty___closed__1; +x_16 = l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__1(x_8, x_14, x_4, x_15); +lean_dec(x_14); +x_17 = lean_array_get_size(x_16); +x_18 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_expandListLit___spec__1(x_1, x_11, x_16, x_17, lean_box(0), x_13); +lean_dec(x_16); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_3); +return x_19; } } -} -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabListLit___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_expandListLit___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabListLit___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_expandListLit___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_1); return x_7; } } -lean_object* _init_l___regBuiltin_Lean_Elab_Term_elabListLit___closed__1() { +lean_object* l_Lean_Elab_Term_expandListLit___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Term_expandListLit(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* _init_l___regBuiltin_Lean_Elab_Term_expandListLit___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabListLit), 4, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandListLit___boxed), 3, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_elabListLit(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_expandListLit(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_Term_termElabAttribute; +x_2 = l_Lean_Elab_macroAttribute; x_3 = l_Lean_Parser_Term_listLit___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_elabListLit___closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_expandListLit___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__1() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__1() { _start: { lean_object* x_1; @@ -28553,27 +28498,7 @@ x_1 = lean_mk_string("unexpected array literal syntax"); return x_1; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_elabArrayLit___closed__1; -x_2 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_elabArrayLit___closed__2; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__4() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__2() { _start: { lean_object* x_1; @@ -28581,22 +28506,22 @@ x_1 = lean_mk_string("List.toArray"); return x_1; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__5() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_elabArrayLit___closed__4; +x_1 = l_Lean_Elab_Term_expandArrayLit___closed__2; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__6() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_elabArrayLit___closed__4; +x_1 = l_Lean_Elab_Term_expandArrayLit___closed__2; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_elabArrayLit___closed__5; +x_3 = l_Lean_Elab_Term_expandArrayLit___closed__3; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -28604,7 +28529,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__7() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -28616,19 +28541,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__8() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_elabArrayLit___closed__7; +x_2 = l_Lean_Elab_Term_expandArrayLit___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; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__9() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -28640,17 +28565,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__10() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Elab_Term_elabArrayLit___closed__9; +x_2 = l_Lean_Elab_Term_expandArrayLit___closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l_Lean_Elab_Term_elabArrayLit___closed__11() { +lean_object* _init_l_Lean_Elab_Term_expandArrayLit___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -28662,193 +28587,126 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Term_elabArrayLit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Elab_Term_expandArrayLit(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -uint8_t x_5; lean_object* x_70; uint8_t x_71; -x_70 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; +uint8_t x_4; lean_object* x_43; uint8_t x_44; +x_43 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; lean_inc(x_1); -x_71 = l_Lean_Syntax_isOfKind(x_1, x_70); -if (x_71 == 0) +x_44 = l_Lean_Syntax_isOfKind(x_1, x_43); +if (x_44 == 0) { -uint8_t x_72; -x_72 = 0; -x_5 = x_72; -goto block_69; +uint8_t x_45; +x_45 = 0; +x_4 = x_45; +goto block_42; } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; -x_73 = l_Lean_Syntax_getArgs(x_1); -x_74 = lean_array_get_size(x_73); -lean_dec(x_73); -x_75 = lean_unsigned_to_nat(3u); -x_76 = lean_nat_dec_eq(x_74, x_75); -lean_dec(x_74); -x_5 = x_76; -goto block_69; +lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; +x_46 = l_Lean_Syntax_getArgs(x_1); +x_47 = lean_array_get_size(x_46); +lean_dec(x_46); +x_48 = lean_unsigned_to_nat(3u); +x_49 = lean_nat_dec_eq(x_47, x_48); +lean_dec(x_47); +x_4 = x_49; +goto block_42; } -block_69: +block_42: { -if (x_5 == 0) +if (x_4 == 0) { -lean_object* x_6; lean_object* x_7; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_dec(x_2); -x_6 = l_Lean_Elab_Term_elabArrayLit___closed__3; -x_7 = l_Lean_Elab_Term_throwError___rarg(x_1, x_6, x_3, x_4); -lean_dec(x_1); +x_5 = l_Lean_Elab_Term_expandArrayLit___closed__1; +x_6 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_6, 0, x_1); +lean_ctor_set(x_6, 1, x_5); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); return x_7; } else { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); +lean_dec(x_1); x_10 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_11 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4); -x_12 = lean_ctor_get(x_11, 0); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); +x_12 = lean_ctor_get(x_2, 0); lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); -lean_inc(x_13); -lean_dec(x_11); -x_14 = l_Lean_Elab_Term_getMainModule___rarg(x_13); -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec(x_14); -x_17 = l_Lean_Expr_arrayLit_x3f___closed__2; -x_18 = l_Lean_addMacroScope(x_15, x_17, x_12); -x_19 = l_Lean_SourceInfo_inhabited___closed__1; -x_20 = l_Lean_Elab_Term_elabArrayLit___closed__6; -x_21 = l_Lean_Elab_Term_elabArrayLit___closed__8; -x_22 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_22, 0, x_19); -lean_ctor_set(x_22, 1, x_20); -lean_ctor_set(x_22, 2, x_18); -lean_ctor_set(x_22, 3, x_21); -x_23 = l_Array_empty___closed__1; -x_24 = lean_array_push(x_23, x_22); -x_25 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; -x_26 = lean_array_push(x_24, x_25); -x_27 = l_Lean_mkTermIdFromIdent___closed__2; -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_27); -lean_ctor_set(x_28, 1, x_26); -x_29 = lean_array_push(x_23, x_28); -x_30 = lean_unsigned_to_nat(0u); -x_31 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_10, x_10, x_30, x_23); +lean_dec(x_2); +x_13 = l_Lean_Expr_arrayLit_x3f___closed__2; +x_14 = l_Lean_addMacroScope(x_12, x_13, x_11); +x_15 = l_Lean_SourceInfo_inhabited___closed__1; +x_16 = l_Lean_Elab_Term_expandArrayLit___closed__4; +x_17 = l_Lean_Elab_Term_expandArrayLit___closed__6; +x_18 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_16); +lean_ctor_set(x_18, 2, x_14); +lean_ctor_set(x_18, 3, x_17); +x_19 = l_Array_empty___closed__1; +x_20 = lean_array_push(x_19, x_18); +x_21 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__5; +x_22 = lean_array_push(x_20, x_21); +x_23 = l_Lean_mkTermIdFromIdent___closed__2; +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +x_25 = lean_array_push(x_19, x_24); +x_26 = lean_unsigned_to_nat(0u); +x_27 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_10, x_10, x_26, x_19); lean_dec(x_10); -x_32 = l_Lean_nullKind___closed__2; -x_33 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_33, 0, x_32); -lean_ctor_set(x_33, 1, x_31); -x_34 = l_Lean_Elab_Term_elabArrayLit___closed__10; -x_35 = lean_array_push(x_34, x_33); -x_36 = l_Lean_Elab_Term_elabArrayLit___closed__11; -x_37 = lean_array_push(x_35, x_36); -x_38 = l_Lean_Parser_Term_listLit___elambda__1___closed__2; -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_37); -x_40 = lean_array_push(x_23, x_39); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_32); -lean_ctor_set(x_41, 1, x_40); -x_42 = lean_array_push(x_29, x_41); -x_43 = l_Lean_mkAppStx___closed__8; -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_44, 1, x_42); -x_45 = !lean_is_exclusive(x_3); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; -x_46 = lean_ctor_get(x_3, 8); -lean_inc(x_44); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_1); -lean_ctor_set(x_47, 1, x_44); -x_48 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_46); -lean_ctor_set(x_3, 8, x_48); -x_49 = 1; -x_50 = l_Lean_Elab_Term_elabTermAux___main(x_2, x_49, x_49, x_44, x_3, x_16); -return x_50; -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; uint8_t x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; lean_object* x_68; -x_51 = lean_ctor_get(x_3, 0); -x_52 = lean_ctor_get(x_3, 1); -x_53 = lean_ctor_get(x_3, 2); -x_54 = lean_ctor_get(x_3, 3); -x_55 = lean_ctor_get(x_3, 4); -x_56 = lean_ctor_get(x_3, 5); -x_57 = lean_ctor_get(x_3, 6); -x_58 = lean_ctor_get(x_3, 7); -x_59 = lean_ctor_get(x_3, 8); -x_60 = lean_ctor_get(x_3, 9); -x_61 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); -x_62 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 1); -x_63 = lean_ctor_get_uint8(x_3, sizeof(void*)*10 + 2); -lean_inc(x_60); -lean_inc(x_59); -lean_inc(x_58); -lean_inc(x_57); -lean_inc(x_56); -lean_inc(x_55); -lean_inc(x_54); -lean_inc(x_53); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_3); -lean_inc(x_44); -x_64 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_64, 0, x_1); -lean_ctor_set(x_64, 1, x_44); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_59); -x_66 = lean_alloc_ctor(0, 10, 3); -lean_ctor_set(x_66, 0, x_51); -lean_ctor_set(x_66, 1, x_52); -lean_ctor_set(x_66, 2, x_53); -lean_ctor_set(x_66, 3, x_54); -lean_ctor_set(x_66, 4, x_55); -lean_ctor_set(x_66, 5, x_56); -lean_ctor_set(x_66, 6, x_57); -lean_ctor_set(x_66, 7, x_58); -lean_ctor_set(x_66, 8, x_65); -lean_ctor_set(x_66, 9, x_60); -lean_ctor_set_uint8(x_66, sizeof(void*)*10, x_61); -lean_ctor_set_uint8(x_66, sizeof(void*)*10 + 1, x_62); -lean_ctor_set_uint8(x_66, sizeof(void*)*10 + 2, x_63); -x_67 = 1; -x_68 = l_Lean_Elab_Term_elabTermAux___main(x_2, x_67, x_67, x_44, x_66, x_16); -return x_68; +x_28 = l_Lean_nullKind___closed__2; +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +x_30 = l_Lean_Elab_Term_expandArrayLit___closed__8; +x_31 = lean_array_push(x_30, x_29); +x_32 = l_Lean_Elab_Term_expandArrayLit___closed__9; +x_33 = lean_array_push(x_31, x_32); +x_34 = l_Lean_Parser_Term_listLit___elambda__1___closed__2; +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +x_36 = lean_array_push(x_19, x_35); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_28); +lean_ctor_set(x_37, 1, x_36); +x_38 = lean_array_push(x_25, x_37); +x_39 = l_Lean_mkAppStx___closed__8; +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_38); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_3); +return x_41; } } } } -} -lean_object* _init_l___regBuiltin_Lean_Elab_Term_elabArrayLit___closed__1() { +lean_object* _init_l___regBuiltin_Lean_Elab_Term_expandArrayLit___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabArrayLit), 4, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandArrayLit), 3, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_elabArrayLit(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_expandArrayLit(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_Term_termElabAttribute; +x_2 = l_Lean_Elab_macroAttribute; x_3 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_elabArrayLit___closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_expandArrayLit___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } @@ -29901,43 +29759,37 @@ lean_ctor_set(x_39, 0, x_32); lean_ctor_set(x_39, 1, x_38); if (x_37 == 0) { -lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_dec(x_39); lean_free_object(x_7); -x_40 = l_Lean_Expr_fvarId_x21(x_36); -lean_dec(x_36); -x_41 = l_Lean_Name_toString___closed__1; -x_42 = l_Lean_Name_toStringWithSep___main(x_41, x_40); -x_43 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_43, 0, x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -x_45 = l_Lean_Elab_Term_resolveName___closed__6; -x_46 = lean_alloc_ctor(9, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_44); -x_47 = l_Lean_Elab_Term_resolveName___closed__9; -x_48 = lean_alloc_ctor(9, 2, 0); -lean_ctor_set(x_48, 0, x_46); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Lean_Elab_Term_throwError___rarg(x_1, x_48, x_5, x_34); -x_50 = !lean_is_exclusive(x_49); -if (x_50 == 0) +x_40 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_40, 0, x_36); +x_41 = l_Lean_Elab_Term_resolveName___closed__6; +x_42 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_40); +x_43 = l_Lean_Elab_Term_resolveName___closed__9; +x_44 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +x_45 = l_Lean_Elab_Term_throwError___rarg(x_1, x_44, x_5, x_34); +x_46 = !lean_is_exclusive(x_45); +if (x_46 == 0) { -return x_49; +return x_45; } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_49, 0); -x_52 = lean_ctor_get(x_49, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_49); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -return x_53; +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_45, 0); +x_48 = lean_ctor_get(x_45, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_45); +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 @@ -29950,69 +29802,63 @@ return x_7; } else { -lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; -x_54 = lean_ctor_get(x_7, 1); -lean_inc(x_54); +lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; +x_50 = lean_ctor_get(x_7, 1); +lean_inc(x_50); lean_dec(x_7); -x_55 = lean_ctor_get(x_32, 0); -lean_inc(x_55); -x_56 = l_List_isEmpty___rarg(x_4); +x_51 = lean_ctor_get(x_32, 0); +lean_inc(x_51); +x_52 = l_List_isEmpty___rarg(x_4); lean_dec(x_4); -x_57 = lean_box(0); -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_32); -lean_ctor_set(x_58, 1, x_57); -if (x_56 == 0) +x_53 = lean_box(0); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_32); +lean_ctor_set(x_54, 1, x_53); +if (x_52 == 0) { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; -lean_dec(x_58); -x_59 = l_Lean_Expr_fvarId_x21(x_55); -lean_dec(x_55); -x_60 = l_Lean_Name_toString___closed__1; -x_61 = l_Lean_Name_toStringWithSep___main(x_60, x_59); -x_62 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_62, 0, x_61); -x_63 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_63, 0, x_62); -x_64 = l_Lean_Elab_Term_resolveName___closed__6; -x_65 = lean_alloc_ctor(9, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); -x_66 = l_Lean_Elab_Term_resolveName___closed__9; -x_67 = lean_alloc_ctor(9, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -x_68 = l_Lean_Elab_Term_throwError___rarg(x_1, x_67, x_5, x_54); -x_69 = lean_ctor_get(x_68, 0); -lean_inc(x_69); -x_70 = lean_ctor_get(x_68, 1); -lean_inc(x_70); -if (lean_is_exclusive(x_68)) { - lean_ctor_release(x_68, 0); - lean_ctor_release(x_68, 1); - x_71 = x_68; +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_dec(x_54); +x_55 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_55, 0, x_51); +x_56 = l_Lean_Elab_Term_resolveName___closed__6; +x_57 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_55); +x_58 = l_Lean_Elab_Term_resolveName___closed__9; +x_59 = lean_alloc_ctor(9, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +x_60 = l_Lean_Elab_Term_throwError___rarg(x_1, x_59, x_5, x_50); +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_60)) { + lean_ctor_release(x_60, 0); + lean_ctor_release(x_60, 1); + x_63 = x_60; } else { - lean_dec_ref(x_68); - x_71 = lean_box(0); + lean_dec_ref(x_60); + x_63 = lean_box(0); } -if (lean_is_scalar(x_71)) { - x_72 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); } else { - x_72 = x_71; + x_64 = x_63; } -lean_ctor_set(x_72, 0, x_69); -lean_ctor_set(x_72, 1, x_70); -return x_72; +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_62); +return x_64; } else { -lean_object* x_73; -lean_dec(x_55); +lean_object* x_65; +lean_dec(x_51); lean_dec(x_5); -x_73 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_73, 0, x_58); -lean_ctor_set(x_73, 1, x_54); -return x_73; +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_54); +lean_ctor_set(x_65, 1, x_50); +return x_65; } } } @@ -31668,36 +31514,32 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabParen___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabParen(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_elabListLit___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabListLit___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabListLit___closed__1); -res = l___regBuiltin_Lean_Elab_Term_elabListLit(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_expandListLit___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandListLit___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_expandListLit___closed__1); +res = l___regBuiltin_Lean_Elab_Term_expandListLit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Term_elabArrayLit___closed__1 = _init_l_Lean_Elab_Term_elabArrayLit___closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__1); -l_Lean_Elab_Term_elabArrayLit___closed__2 = _init_l_Lean_Elab_Term_elabArrayLit___closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__2); -l_Lean_Elab_Term_elabArrayLit___closed__3 = _init_l_Lean_Elab_Term_elabArrayLit___closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__3); -l_Lean_Elab_Term_elabArrayLit___closed__4 = _init_l_Lean_Elab_Term_elabArrayLit___closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__4); -l_Lean_Elab_Term_elabArrayLit___closed__5 = _init_l_Lean_Elab_Term_elabArrayLit___closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__5); -l_Lean_Elab_Term_elabArrayLit___closed__6 = _init_l_Lean_Elab_Term_elabArrayLit___closed__6(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__6); -l_Lean_Elab_Term_elabArrayLit___closed__7 = _init_l_Lean_Elab_Term_elabArrayLit___closed__7(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__7); -l_Lean_Elab_Term_elabArrayLit___closed__8 = _init_l_Lean_Elab_Term_elabArrayLit___closed__8(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__8); -l_Lean_Elab_Term_elabArrayLit___closed__9 = _init_l_Lean_Elab_Term_elabArrayLit___closed__9(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__9); -l_Lean_Elab_Term_elabArrayLit___closed__10 = _init_l_Lean_Elab_Term_elabArrayLit___closed__10(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__10); -l_Lean_Elab_Term_elabArrayLit___closed__11 = _init_l_Lean_Elab_Term_elabArrayLit___closed__11(); -lean_mark_persistent(l_Lean_Elab_Term_elabArrayLit___closed__11); -l___regBuiltin_Lean_Elab_Term_elabArrayLit___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabArrayLit___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabArrayLit___closed__1); -res = l___regBuiltin_Lean_Elab_Term_elabArrayLit(lean_io_mk_world()); +l_Lean_Elab_Term_expandArrayLit___closed__1 = _init_l_Lean_Elab_Term_expandArrayLit___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__1); +l_Lean_Elab_Term_expandArrayLit___closed__2 = _init_l_Lean_Elab_Term_expandArrayLit___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__2); +l_Lean_Elab_Term_expandArrayLit___closed__3 = _init_l_Lean_Elab_Term_expandArrayLit___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__3); +l_Lean_Elab_Term_expandArrayLit___closed__4 = _init_l_Lean_Elab_Term_expandArrayLit___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__4); +l_Lean_Elab_Term_expandArrayLit___closed__5 = _init_l_Lean_Elab_Term_expandArrayLit___closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__5); +l_Lean_Elab_Term_expandArrayLit___closed__6 = _init_l_Lean_Elab_Term_expandArrayLit___closed__6(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__6); +l_Lean_Elab_Term_expandArrayLit___closed__7 = _init_l_Lean_Elab_Term_expandArrayLit___closed__7(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__7); +l_Lean_Elab_Term_expandArrayLit___closed__8 = _init_l_Lean_Elab_Term_expandArrayLit___closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__8); +l_Lean_Elab_Term_expandArrayLit___closed__9 = _init_l_Lean_Elab_Term_expandArrayLit___closed__9(); +lean_mark_persistent(l_Lean_Elab_Term_expandArrayLit___closed__9); +l___regBuiltin_Lean_Elab_Term_expandArrayLit___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandArrayLit___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_expandArrayLit___closed__1); +res = l___regBuiltin_Lean_Elab_Term_expandArrayLit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_mkConst___closed__1 = _init_l_Lean_Elab_Term_mkConst___closed__1(); diff --git a/stage0/stdlib/Lean/Parser.c b/stage0/stdlib/Lean/Parser.c index da1f764ea8..61fcaca60c 100644 --- a/stage0/stdlib/Lean/Parser.c +++ b/stage0/stdlib/Lean/Parser.c @@ -13,6 +13,28 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* lean_mk_antiquot_parenthesizer(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_antiquot_parenthesizer(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +lean_dec(x_1); +x_8 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer_x27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_3); +lean_dec(x_3); +x_9 = lean_mk_antiquot_parenthesizer(x_1, x_2, x_8, x_4, x_5, x_6, x_7); +return x_9; +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Parser_Parser(lean_object*); lean_object* initialize_Lean_Parser_Level(lean_object*); diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 2cb2f47871..919f971821 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -26,28 +26,39 @@ lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_structInstBinder___closed__10; lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_print___closed__6; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Command_resolve__name(lean_object*); +lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_def___closed__5; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_eval___closed__1; lean_object* l_Lean_Parser_Command_structure___closed__7; +lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_open___closed__3; lean_object* l_Lean_Parser_Command_structCtor___closed__8; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_theorem___closed__9; +lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_check___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__8; lean_object* l_Lean_Parser_Command_structureTk___closed__2; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_instance___closed__2; extern lean_object* l_Lean_Parser_manyAux___main___closed__1; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__9; lean_object* l_Lean_Parser_Command_declModifiers___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_ctor; lean_object* l_Lean_Parser_Command_structure___closed__3; +lean_object* l_Lean_Parser_Command_declSig_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_exit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_constant___closed__6; lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_visibility___elambda__1(lean_object*, lean_object*); @@ -60,6 +71,7 @@ lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_axiom___closed__5; lean_object* l_Lean_Parser_Command_section___closed__3; lean_object* l_Lean_Parser_Command_mutual___closed__4; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Command_openRenaming___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_check___closed__1; lean_object* l_Lean_Parser_Command_exit___elambda__1(lean_object*, lean_object*); @@ -67,8 +79,11 @@ lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_extends___closed__2; lean_object* l_Lean_Parser_Command_open___closed__5; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_docComment___closed__3; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__7; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__8; lean_object* l_Lean_Parser_regBuiltinCommandParserAttr___closed__1; lean_object* l_Lean_Parser_Command_instance___closed__4; lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__4; @@ -76,12 +91,17 @@ lean_object* l___regBuiltinParser_Lean_Parser_Command_variable(lean_object*); lean_object* l_Lean_Parser_Command_visibility; lean_object* l_Lean_Parser_Command_inductive___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Command_attributes___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_stxQuot___closed__8; +lean_object* l_Lean_Parser_Command_declSig_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_attrArg_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__9; extern lean_object* l_Lean_Parser_Term_matchAlt___closed__3; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__2; lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_end___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__4; +extern lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_extends___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_section(lean_object*); lean_object* l_Lean_Parser_Command_print___elambda__1___closed__8; @@ -92,6 +112,7 @@ lean_object* l_Lean_Parser_Command_structCtor___closed__9; lean_object* l_Lean_Parser_Command_structureTk___closed__4; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__1; lean_object* l_Lean_Parser_Command_declId___closed__5; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__13; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_theorem___closed__8; extern lean_object* l_Lean_nullKind; @@ -99,6 +120,9 @@ lean_object* l_Lean_Parser_Command_classInductive; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_instance___closed__1; lean_object* l_Lean_Parser_Command_export___closed__3; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_attribute___closed__7; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_noncomputable; @@ -111,14 +135,22 @@ lean_object* l_Lean_Parser_Command_declModifiers___closed__1; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_structCtor___closed__4; lean_object* l_Lean_Parser_Command_inferMod___closed__6; +lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_end_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_stxQuot___elambda__1___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_haveAssign___closed__2; +extern lean_object* l_Lean_Parser_Term_optType_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__11; lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__6; +extern lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_openRenaming; lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__3; @@ -127,26 +159,37 @@ lean_object* l_Lean_Parser_Command_openHiding; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_declModifiers___closed__8; +lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_attribute_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mutual___closed__8; lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_export___closed__8; lean_object* l_Lean_Parser_Command_mutualElement___closed__5; lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_structInstBinder___closed__5; +lean_object* l_Lean_Parser_Command_section_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_eval_parenthesizer___closed__2; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Command_inductive___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_universe___closed__7; +lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_example___closed__5; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_openOnly; +lean_object* l___regBuiltin_Lean_Parser_Command_print_parenthesizer(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_export___closed__7; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_attrInstance___closed__4; +lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__5; extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_print___elambda__1___closed__5; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Command_structFields___elambda__1___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_attrInstance_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_init__quot___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Command_eval(lean_object*); lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__8; @@ -160,31 +203,45 @@ lean_object* l___regBuiltinParser_Lean_Parser_Command_attribute(lean_object*); lean_object* l_Lean_Parser_Command_attributes___closed__7; lean_object* l_Lean_Parser_Command_section___closed__5; lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Command_universe_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_exit___closed__1; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_export___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_print___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_declVal___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_openRenamingItem___closed__3; lean_object* l_Lean_Parser_Command_structInstBinder___closed__3; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__16; lean_object* l_Lean_Parser_Command_export___elambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__12; +lean_object* l_Lean_Parser_Command_eval_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__4; lean_object* l_Lean_Parser_Command_synth___closed__2; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_attrInstance___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_inferMod___closed__1; +lean_object* l_Lean_Parser_Command_universe_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_declaration___closed__3; lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__9; lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_abbrev; +lean_object* l_Lean_Parser_Command_variable_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_mutual_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_attrInstance_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_ident; lean_object* l_Lean_Parser_Command_private___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__5; @@ -194,25 +251,30 @@ lean_object* l_Lean_Parser_Command_declModifiers___closed__2; lean_object* l_Lean_Parser_Command_unsafe___closed__2; lean_object* l_Lean_Parser_Command_open; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__8; +lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_section___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_axiom___closed__6; lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_theorem___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_inferMod___closed__2; lean_object* l_Lean_Parser_Command_abbrev___closed__5; lean_object* l_Lean_Parser_Command_section___closed__1; lean_object* l_Lean_Parser_Command_example___closed__6; lean_object* l_Lean_Parser_Command_extends___closed__7; lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_private_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_variables___closed__2; lean_object* l_Lean_Parser_Command_private___elambda__1___closed__3; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_visibility___closed__1; +lean_object* l_Lean_Parser_Command_mutualElement_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_universes___closed__2; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_declValSimple___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Command_export(lean_object*); lean_object* l_Lean_Parser_Command_inductive___closed__5; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__14; lean_object* l_Lean_Parser_Command_section___closed__4; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__3; @@ -227,6 +289,7 @@ lean_object* l_Lean_Parser_Command_structFields___closed__4; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_mutual; lean_object* l_Lean_Parser_Command_constant___closed__9; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; lean_object* l_Lean_Parser_Command_structure___closed__1; lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_check___closed__5; @@ -234,23 +297,32 @@ lean_object* l_Lean_Parser_Command_def___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_ctor___closed__3; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attrArg___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_resolve__name_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_visibility_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__17; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__9; +lean_object* l___regBuiltin_Lean_Parser_Command_universes_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_structFields___closed__8; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_example; lean_object* l_Lean_Parser_Command_classTk___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_theorem___closed__3; lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_visibility___closed__2; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_classTk_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_declId___closed__4; lean_object* l_Lean_Parser_Command_end; lean_object* l_Lean_Parser_Command_inferMod___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_openHiding___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__4; @@ -259,26 +331,36 @@ lean_object* l_Lean_Parser_Command_openRenaming___closed__4; lean_object* l_Lean_Parser_Command_openRenaming___closed__9; lean_object* l_Lean_Parser_Command_example___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_attribute___closed__10; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__3; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attrInstance___elambda__1___closed__4; lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Parser_Command_structFields; +lean_object* l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_abbrev___closed__3; lean_object* l_Lean_Parser_Command_declId___closed__9; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_declId___closed__8; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_abbrev___closed__7; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__9; lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Command_attributes___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_def_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_visibility_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_exit___closed__6; lean_object* l_Lean_Parser_Command_print___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__17; +lean_object* l_Lean_Parser_Command_universe_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declModifiers___closed__13; +lean_object* l_Lean_Parser_commandParser_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_declaration___closed__10; lean_object* l_Lean_Parser_Command_commentBody___closed__1; @@ -286,26 +368,37 @@ lean_object* l_Lean_Parser_Command_attribute___closed__12; lean_object* l_Lean_Parser_Command_export___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_synth___closed__7; lean_object* l_Lean_Parser_Command_extends; +lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_unsafe_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_structInstBinder___closed__6; lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_openSimple; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_classTk_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_print___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_instance; +lean_object* l_Lean_Parser_Command_attrInstance_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_instance___closed__8; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_inferMod___closed__4; lean_object* l_Lean_Parser_Command_openOnly___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_structFields___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_export___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_variables___closed__1; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_def_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_check__failure___closed__3; lean_object* l_Lean_Parser_Command_eval___closed__6; +lean_object* l_Lean_Parser_Command_unsafe_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_instance___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_docComment___closed__2; lean_object* l_Lean_Parser_regBuiltinCommandParserAttr___closed__2; @@ -315,6 +408,7 @@ extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l_Lean_Parser_ParserState_mkErrorsAt(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_resolve__name___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__20; lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_set__option___closed__7; lean_object* l_Lean_Parser_Command_example___elambda__1___closed__2; @@ -324,10 +418,16 @@ lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_attributes___closed__5; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_namespace___closed__5; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__9; +lean_object* l_Lean_Parser_Command_structureTk_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_universe_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_ctor___closed__10; lean_object* l_Lean_Parser_Command_commentBody___closed__2; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__10; lean_object* l_Lean_Parser_Command_example___elambda__1___closed__8; +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_classTk___closed__5; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__2; @@ -336,12 +436,15 @@ lean_object* l_Lean_Parser_Command_declSig___closed__4; lean_object* l_Lean_Parser_Command_declValEqns___closed__4; lean_object* l_Lean_Parser_Command_constant___closed__7; lean_object* l_Lean_Parser_Command_def___closed__6; +lean_object* l_Lean_Parser_Command_attributes_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_stxQuot___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declSig___closed__1; lean_object* l_Lean_Parser_Command_mutual___closed__1; extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_declId___closed__3; +extern lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_namespace___closed__3; lean_object* l_Lean_Parser_Command_instance___closed__9; lean_object* l_Lean_Parser_Command_openHiding___closed__3; @@ -349,103 +452,158 @@ lean_object* l_Lean_Parser_Command_init__quot___elambda__1(lean_object*, lean_ob lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_openHiding___closed__5; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Command_end_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_variables_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_example___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_universes_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_openRenamingItem___closed__4; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_extends___closed__5; lean_object* l_Lean_Parser_Command_mutual___closed__6; lean_object* l_Lean_Parser_Command_private___closed__5; lean_object* l_Lean_Parser_Command_attrInstance___closed__7; +lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__4; lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__9; +lean_object* l_Lean_Parser_Command_docComment_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_variables___closed__6; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__7; lean_object* l_Lean_Parser_finishCommentBlock___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declId___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_declaration___closed__12; lean_object* l_Lean_Parser_Command_protected; +lean_object* l_Lean_Parser_Command_def_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_universes___closed__6; lean_object* l_Lean_Parser_Command_namespace___closed__2; +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_theorem___closed__6; lean_object* l_Lean_Parser_Command_openHiding___closed__4; lean_object* l_Lean_Parser_Command_docComment___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_inductive___closed__7; +lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_unsafe; lean_object* l_Lean_Parser_Command_structure___closed__6; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_attrInstance___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_print___closed__7; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_axiom_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_structure; lean_object* l_Lean_Parser_Command_declModifiers___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Command_declaration(lean_object*); +lean_object* l_Lean_Parser_Command_openSimple_parenthesizer___closed__2; +extern lean_object* l_Lean_Parser_Level_num_parenthesizer___closed__2; lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_private_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_mutualElement_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_openRenamingItem___closed__7; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__9; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_inferMod___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__19; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_section_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_inferMod_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_private___closed__3; lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__4; +lean_object* l_Lean_Parser_Command_openHiding_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_inferMod___closed__3; lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__3; +extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; lean_object* l_Lean_Parser_Command_noncomputable___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_inferMod___closed__5; lean_object* l_Lean_Parser_Command_variables___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Command_universes_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_synth; lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__7; extern lean_object* l_Lean_Parser_Term_binderDefault; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Command_openSimple_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__4; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_resolve__name; lean_object* l_Lean_Parser_Command_declValEqns___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__9; +lean_object* l_Lean_Parser_Command_check__failure_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attribute___closed__6; lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_openHiding___closed__8; +lean_object* l_Lean_Parser_Command_declSig_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_visibility_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_inferMod_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_attrArg___closed__4; lean_object* l_Lean_Parser_Command_declaration___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_forall___elambda__1___spec__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_check(lean_object*); lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_constant___closed__8; +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__7; +lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Command_open_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__9; lean_object* l_Lean_Parser_Command_attribute___closed__5; lean_object* l_Lean_Parser_Command_classInductive___closed__7; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__19; lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openSimple___closed__1; lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_structInstBinder; +lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__3; lean_object* l_Lean_Parser_manyAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_attrInstance_parenthesizer___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawIdent_parenthesizer___boxed(lean_object*); extern lean_object* l_Lean_PrettyPrinter_parenthesizeCommand___closed__2; lean_object* l_Lean_Parser_Command_attribute; lean_object* l_Lean_Parser_Command_docComment___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structure___closed__10; +lean_object* l_Lean_Parser_Command_attrArg_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_docComment___closed__1; lean_object* l_Lean_Parser_Command_set__option___closed__10; lean_object* l_Lean_Parser_Command_end___closed__5; extern lean_object* l_Lean_Parser_Term_optType; +lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_declId___closed__2; lean_object* l_Lean_Parser_Command_commentBody_parenthesizer___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__15; +lean_object* l_Lean_Parser_Command_exit_parenthesizer___closed__1; +extern lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Command_example_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_classInductive___closed__5; lean_object* l_Lean_Parser_Command_open___closed__2; lean_object* l_Lean_Parser_Command_structCtor___closed__6; @@ -453,6 +611,8 @@ lean_object* l_Lean_Parser_regBuiltinCommandParserAttr(lean_object*); lean_object* l_Lean_Parser_Command_synth___closed__3; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_eval_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attribute___closed__3; lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__1; @@ -463,34 +623,44 @@ lean_object* l_Lean_Parser_Command_init__quot___closed__1; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_universes___closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_unsafe_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__12; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_mutual___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_declModifiers___closed__14; lean_object* l_Lean_Parser_Command_constant___closed__2; +lean_object* l_Lean_Parser_Command_attributes_parenthesizer___closed__5; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; lean_object* l___private_Lean_Parser_Parser_3__rawAux(lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__2; lean_object* l_Lean_Parser_Command_export___closed__9; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_Command_check__failure___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_init__quot_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_commentBody_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__6; lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); lean_object* l_Lean_Parser_Command_example___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declId___closed__1; lean_object* l_Lean_Parser_Command_declModifiers___closed__15; lean_object* l_Lean_Parser_Command_attributes___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_noncomputable_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_export___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_commandParser(lean_object*); lean_object* l_Lean_Parser_Command_classTk___closed__1; lean_object* l_Lean_Parser_Command_eval___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_set__option___closed__12; lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__3; lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_SynthInstance_generate___closed__3; +lean_object* l_Lean_Parser_Command_theorem_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_export___closed__4; lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_openHiding___elambda__1(lean_object*, lean_object*); @@ -506,6 +676,7 @@ lean_object* l_Lean_Parser_Command_protected___closed__4; lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_attributes_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_print___closed__3; @@ -513,6 +684,7 @@ lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Command_declId___elambda__1 lean_object* l_Lean_Parser_Term_stxQuot___closed__10; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_structExplicitBinder; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_inferMod___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_axiom___closed__7; lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__2; @@ -520,19 +692,26 @@ lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_check__failure___closed__4; lean_object* l_Lean_Parser_Command_print___closed__5; extern lean_object* l_Lean_Meta_registerInstanceAttr___closed__1; +lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__4; uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Command_exit(lean_object*); lean_object* l_Lean_Parser_Command_attrInstance; lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_inductive___closed__9; +lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__2; lean_object* l_Lean_Parser_optionaInfo(lean_object*); lean_object* l_Lean_Parser_Command_def___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_mutualElement___closed__1; +lean_object* l_Lean_Parser_Command_example_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_classTk___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_variable___closed__1; lean_object* l_Lean_Parser_regCommandParserAttribute___closed__2; lean_object* l_Lean_Parser_Command_namespace___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_attrArg; extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; @@ -540,25 +719,41 @@ lean_object* l_Lean_Parser_Command_variables___closed__4; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__15; +lean_object* l_Lean_Parser_Command_section_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_openSimple___closed__3; +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openRenamingItem___closed__2; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_unsafe___closed__5; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__14; lean_object* l_Lean_Parser_Command_classInductive___closed__3; lean_object* l_Lean_Parser_Command_resolve__name___closed__7; +lean_object* l_Lean_Parser_Command_attributes_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_optDeclSig; lean_object* l_Lean_Parser_Command_def___closed__3; +lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_extends___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Command_check__failure(lean_object*); lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_variable_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_inferMod___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_check_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_end___closed__3; lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_inductive___closed__2; lean_object* l_Lean_Parser_Command_structure___closed__11; lean_object* l_Lean_Parser_Command_axiom___closed__3; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__10; +lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_section_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_protected___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_exit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_declValEqns___closed__2; lean_object* l_Lean_Parser_Command_abbrev___elambda__1(lean_object*, lean_object*); @@ -566,53 +761,74 @@ lean_object* l_Lean_Parser_Command_declModifiers___closed__3; lean_object* l_Lean_Parser_Command_end___closed__7; lean_object* l_Lean_Parser_Command_classInductive___closed__1; extern lean_object* l_Char_HasRepr___closed__1; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__14; lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_export___closed__1; lean_object* l_Lean_Parser_Command_set__option___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_exit_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_section___closed__2; lean_object* l_Lean_Parser_Command_attrInstance___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_structInstBinder___closed__8; lean_object* l_Lean_Parser_Command_theorem; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__5; lean_object* l_Lean_Parser_regCommandParserAttribute___closed__1; lean_object* l_Lean_Parser_Command_mutualElement___closed__4; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__14; +lean_object* l_Lean_Parser_Command_end_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__5; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_tupleTail___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_variable___elambda__1(lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_synth___closed__6; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Command_attrInstance___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structCtor___closed__2; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_openOnly_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_namespace(lean_object*); +lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_export___closed__2; lean_object* l_Lean_Parser_Command_classTk___closed__4; lean_object* l_Lean_Parser_Command_declValEqns___closed__1; lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_variables___closed__3; +lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_variable_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_openRenaming___closed__5; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__15; +lean_object* l_Lean_Parser_Command_attrInstance_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_stxQuot; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__6; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_variable___closed__4; lean_object* l_Lean_Parser_Command_example___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_partial___closed__3; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__18; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__2; +lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_stxQuot___closed__2; lean_object* l_Lean_Parser_Command_eval; +lean_object* l_Lean_Parser_Command_end_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_visibility___closed__3; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__22; +lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_unsafe___closed__1; lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_partial___closed__5; lean_object* l_Lean_Parser_Command_check__failure___closed__1; lean_object* l_Lean_Parser_Command_classTk___closed__2; +lean_object* l_Lean_Parser_Command_noncomputable_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__9; extern lean_object* l_Lean_Parser_rawIdent; lean_object* l_Lean_Parser_Command_set__option___closed__5; @@ -622,18 +838,28 @@ lean_object* l_Lean_Parser_Command_noncomputable___closed__6; lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_declaration___closed__11; extern lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_declVal___closed__2; +lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__10; +lean_object* l_Lean_Parser_Command_partial_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__3; +lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_open___closed__7; lean_object* l_Lean_Parser_Command_structCtor___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_universes(lean_object*); +lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_stxQuot___closed__7; lean_object* l_Lean_Parser_Command_structInstBinder___closed__4; lean_object* l_Lean_Parser_Command_inductive___closed__3; +extern lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_section; +lean_object* l_Lean_Parser_Command_openOnly_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__11; +extern lean_object* l_Lean_Parser_Term_subtype_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__1; lean_object* l_Lean_Parser_Command_protected___closed__2; lean_object* l_Lean_Parser_Command_declVal; @@ -641,16 +867,22 @@ lean_object* l___regBuiltinParser_Lean_Parser_Command_variables(lean_object*); lean_object* l_Lean_Parser_Command_optDeclSig___closed__4; lean_object* l_Lean_Parser_Command_classInductive___closed__2; lean_object* l_Lean_Parser_Command_def___closed__7; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +lean_object* l_Lean_Parser_Command_extends_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_optDeclSig___closed__1; lean_object* l_Lean_Parser_Command_unsafe___closed__4; lean_object* l_Lean_Parser_Command_structFields___closed__6; +lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_attrInstance_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_inductive; +lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_end___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_mutual___closed__7; lean_object* l_Lean_Parser_Command_declaration___closed__4; lean_object* l_Lean_Parser_Command_theorem___closed__7; lean_object* l_Lean_Parser_Command_structInstBinder___closed__2; +lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_variables___closed__7; lean_object* l_Lean_Parser_Command_inferMod; @@ -658,12 +890,17 @@ lean_object* l___regBuiltinParser_Lean_Parser_Command_print(lean_object*); lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_variable_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_universe(lean_object*); +lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_partial___closed__1; +lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Command_synth_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_private___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_classInductive___closed__4; lean_object* l_Lean_Parser_Command_constant___closed__5; @@ -676,6 +913,9 @@ lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_commentBody___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_open___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Command_end_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_declModifiers; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__3; @@ -686,8 +926,10 @@ lean_object* l_Lean_Parser_Command_private___closed__6; lean_object* l_Lean_Parser_Command_declModifiers___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__9; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_declaration___closed__9; lean_object* l_Lean_Parser_Command_declModifiers___closed__7; lean_object* l_Lean_Parser_Command_set__option___closed__3; @@ -695,12 +937,17 @@ lean_object* l_Lean_Parser_Command_universe___closed__1; lean_object* l_Lean_Parser_Command_protected___closed__5; lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_eval___closed__3; +lean_object* l_Lean_Parser_Command_attributes_parenthesizer___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Command_variable_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__8; +lean_object* l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__12; lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_theorem___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_check_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_attributes___closed__8; lean_object* l___regBuiltinParser_Lean_Parser_Command_set__option(lean_object*); lean_object* l_Lean_Parser_Command_private___elambda__1___closed__8; @@ -716,6 +963,8 @@ lean_object* l_Lean_Parser_Command_classTk___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__6; extern lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_abbrev___closed__9; +lean_object* l_Lean_Parser_Command_noncomputable_parenthesizer___closed__1; +extern lean_object* l_Lean_Parser_Term_str_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_declSig___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_ctor___elambda__1(lean_object*, lean_object*); @@ -725,18 +974,25 @@ lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_abbrev___closed__8; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__8; +lean_object* l___regBuiltin_Lean_Parser_Command_exit_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_classTk___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__9; lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attributes___closed__9; lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_check_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_variable___closed__6; +lean_object* l_Lean_Parser_Command_resolve__name_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; +lean_object* l_Lean_Parser_Command_variables_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_protected___closed__3; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_structCtor; +lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_declModifiers___closed__16; lean_object* l_Lean_Parser_Command_structFields___closed__1; lean_object* l_Lean_Parser_Command_inductive___closed__8; @@ -748,13 +1004,17 @@ lean_object* l_Lean_Parser_Command_partial___closed__4; lean_object* l_Lean_Parser_Command_declModifiers___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__5; lean_object* l_Lean_Parser_Command_private___closed__2; +lean_object* l_Lean_Parser_Command_declSig_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_open___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__12; lean_object* l_Lean_Parser_Command_declValSimple___closed__2; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__13; lean_object* l_Lean_Parser_Command_attributes___closed__4; lean_object* l_Lean_Parser_Command_export; +lean_object* l_Lean_Parser_Command_instance_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openRenaming___closed__3; +lean_object* l_Lean_Parser_Command_synth_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Command_init__quot(lean_object*); lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1(lean_object*, lean_object*); @@ -767,35 +1027,52 @@ lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_example___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_docComment_parenthesizer___closed__3; extern lean_object* l_Lean_Parser_Term_letIdLhs___closed__1; lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__10; lean_object* l_Lean_Parser_Term_optType___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_mutualElement_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_stxQuot___closed__3; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__9; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_noncomputable___closed__3; lean_object* l_Lean_Parser_Command_unsafe___closed__6; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__12; lean_object* l_Lean_Parser_Command_private___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_resolve__name___closed__3; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__6; lean_object* l_Lean_Parser_Command_def___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_abbrev___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Command_print_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__4; +extern lean_object* l_Lean_Parser_Level_ident_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_structInstBinder___closed__1; extern lean_object* l_Lean_Parser_Term_letIdLhs___closed__2; +lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_noncomputable___closed__5; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__9; +lean_object* l_Lean_Parser_Command_variables_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_classInductive___closed__8; lean_object* l_Lean_Parser_Command_structCtor___closed__7; +lean_object* l_Lean_Parser_Command_check_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__13; lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__3; lean_object* l_Lean_Parser_sepBy1Info(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_example_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_resolve__name___closed__1; lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_inductive___closed__4; lean_object* l_Lean_Parser_Command_attribute___closed__13; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_private; lean_object* l_Lean_Parser_Command_check___closed__6; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__7; @@ -804,72 +1081,107 @@ lean_object* l_Lean_Parser_Command_attrInstance___closed__5; lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_unsafe___closed__3; lean_object* l_Lean_Parser_Command_set__option___closed__9; +lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_structureTk_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_stxQuot___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Command_eval_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_eval___closed__5; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_declValEqns___closed__3; lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_universe___closed__4; lean_object* l_Lean_Parser_Command_declModifiers___closed__10; lean_object* l_Lean_Parser_Command_resolve__name___closed__2; +lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_openRenamingItem; lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_attrInstance_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_partial___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_synth___closed__1; lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__4; lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_set__option___closed__4; lean_object* l_Lean_Parser_Command_example___elambda__1___closed__9; +lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_declVal___closed__1; lean_object* l_Lean_Parser_Command_openRenaming___closed__1; extern lean_object* l_Bool_HasRepr___closed__1; lean_object* l_Lean_Parser_Command_check; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_inferMod_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_numLit; lean_object* l_Lean_Parser_Command_noncomputable___closed__1; lean_object* l_Lean_Parser_Command_openRenamingItem___closed__5; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__2; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_declVal_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__10; lean_object* l_Lean_Parser_Command_init__quot___closed__2; lean_object* l_Lean_Parser_Command_mutual___closed__2; lean_object* l_Lean_Parser_Command_openSimple___closed__4; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__8; extern lean_object* l_Lean_Parser_Term_haveAssign___closed__1; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__10; +lean_object* l_Lean_Parser_Command_example_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_declSig___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_attribute___closed__1; +lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_end___elambda__1___closed__2; lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_abbrev___closed__1; lean_object* l_Lean_Parser_Command_open___closed__1; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__7; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__11; lean_object* l_Lean_Parser_Command_structImplicitBinder; lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_set__option___closed__8; +lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_attributes___closed__3; lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_private___closed__1; +lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_universe___elambda__1(lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderDefault___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_resolve__name_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_constant___closed__3; lean_object* l_Lean_Parser_Command_classInductive___closed__6; +lean_object* l_Lean_Parser_Command_namespace_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mutualElement___closed__6; lean_object* l_Lean_Parser_Command_end___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_namespace_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_structFields___closed__2; +lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__16; lean_object* l_Lean_Parser_Command_mutualElement; lean_object* l_Lean_Parser_Command_attribute___closed__2; lean_object* l_Lean_Parser_Command_synth___closed__4; +lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_resolve__name___closed__6; lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_init__quot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__7; @@ -880,10 +1192,12 @@ lean_object* l_Lean_Parser_Command_structCtor___closed__5; lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_private___closed__4; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_structure_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__5; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_private___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_universes_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_ctor___closed__1; lean_object* l_Lean_Parser_Command_declModifiers___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_check__failure___closed__6; @@ -896,7 +1210,9 @@ lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_ctor___closed__2; lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__1; +lean_object* l_Lean_Parser_commandParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structCtor___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Command_variables_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_structure___closed__8; lean_object* l_Lean_Parser_Command_end___elambda__1___closed__8; @@ -904,8 +1220,10 @@ lean_object* l_Lean_Parser_Command_end___closed__6; extern lean_object* l_Bool_HasRepr___closed__2; lean_object* l_Lean_Parser_Command_instance___closed__6; lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openSimple___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_openOnly_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_declSig___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_check__failure___closed__2; @@ -913,6 +1231,8 @@ lean_object* l_Lean_Parser_Command_declaration; lean_object* l_Lean_Parser_Command_optDeclSig___closed__5; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__6; lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__16; lean_object* l_Lean_Parser_Command_declId___closed__7; lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__8; @@ -923,11 +1243,14 @@ lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_declaration___closed__1; lean_object* l_Lean_Parser_Command_declSig___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_inductive___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_declValSimple___closed__4; lean_object* l_Lean_Parser_Command_ctor___closed__8; lean_object* l_Lean_Parser_Command_theorem___closed__1; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_theorem___closed__4; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__21; +lean_object* l_Lean_Parser_Command_variables_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_init__quot___closed__6; @@ -937,6 +1260,7 @@ lean_object* l_Lean_Parser_Command_classTk; lean_object* l_Lean_Parser_Command_end___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_axiom___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openRenaming___closed__8; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_docComment; extern lean_object* l_Lean_Parser_Term_explicitUniv___closed__2; lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__7; @@ -944,6 +1268,7 @@ extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Command_def___closed__1; lean_object* l_Lean_Parser_Command_attrInstance___closed__3; lean_object* l_Lean_Parser_Command_export___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_docComment_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_structure___closed__4; lean_object* l_Lean_Parser_Command_declModifiers___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_explicitUniv___closed__1; @@ -957,10 +1282,12 @@ lean_object* l_Lean_Parser_Command_attribute___closed__8; lean_object* l_Lean_Parser_Command_structureTk___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_open___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_variables_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_ctor___closed__9; lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_mutualElement___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_print_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_noncomputable___closed__4; lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__2; @@ -974,23 +1301,32 @@ lean_object* l_Lean_Parser_Command_export___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_section___closed__7; lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_structure___closed__9; +lean_object* l_Lean_Parser_Command_set__option_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declaration___closed__2; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_end___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_attribute___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_protected_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_variable___closed__3; +lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_check___closed__3; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_synth___closed__5; +lean_object* l_Lean_Parser_Command_namespace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_axiom___closed__8; lean_object* l_Lean_Parser_Command_openOnly___closed__2; extern lean_object* l_Lean_Parser_unicodeSymbolFn___closed__1; +lean_object* l_Lean_Parser_Command_partial_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_cons___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_stxQuot___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__4; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_mutualElement_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__12; lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__4; @@ -1001,39 +1337,57 @@ lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_openHiding___closed__2; lean_object* l_Lean_Parser_Command_constant___closed__4; extern lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_attrArg___closed__1; lean_object* l_Lean_Parser_Command_partial___closed__2; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_mutualElement_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_openHiding___closed__1; lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_export___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_ctor___closed__5; lean_object* l_Lean_Parser_Command_structureTk___closed__3; +lean_object* l_Lean_Parser_Command_declVal_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_openRenaming___closed__2; +lean_object* l_Lean_Parser_Command_protected_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_print___closed__8; +lean_object* l_Lean_Parser_Command_openOnly_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__9; +lean_object* l_Lean_Parser_Command_docComment_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_print___closed__4; lean_object* l_Lean_Parser_Command_declaration___closed__8; lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_openSimple_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); +lean_object* l_Lean_Parser_Command_attributes_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_commentBody_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structure___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_axiom___closed__4; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_exit___closed__5; +lean_object* l_Lean_Parser_Command_section_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declValSimple; lean_object* l_Lean_Parser_Command_attributes; +lean_object* l_Lean_Parser_Command_constant_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_resolve__name___closed__5; lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_axiom___closed__1; +lean_object* l_Lean_Parser_Command_partial_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_exit___closed__3; lean_object* l_Lean_Parser_Command_unsafe___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_implicitBinder___closed__1; @@ -1047,23 +1401,32 @@ lean_object* l_Lean_Parser_Command_check___closed__2; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_declSig___closed__5; +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_structureTk___closed__5; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__9; extern lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_print___closed__1; +lean_object* l_Lean_Parser_Command_universes_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_set__option___closed__1; lean_object* l_Lean_Parser_Command_protected___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Command_export_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__1; +extern lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_open_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_classTk___closed__3; lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_structFields___closed__5; lean_object* l_Lean_Parser_Command_variable___closed__2; +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_set__option___closed__2; @@ -1076,11 +1439,15 @@ lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_universe___closed__6; lean_object* l_Lean_Parser_Command_universes; lean_object* l_Lean_Parser_Command_attribute___closed__11; +lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_variables; +lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_typeSpec___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_docComment_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_init__quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_structureTk; @@ -1093,6 +1460,7 @@ lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_variables___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_export___closed__6; lean_object* l_Lean_Parser_Command_declSig___closed__3; lean_object* l_Lean_Parser_Command_attributes___closed__6; @@ -1100,6 +1468,7 @@ lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_openRenamingItem___closed__8; +lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Command_end(lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mutual___closed__3; @@ -1116,6 +1485,7 @@ lean_object* l_Lean_Parser_Command_end___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_declaration___closed__6; lean_object* l_Lean_Parser_Command_private___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_check___closed__7; lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_mutualElement___closed__8; @@ -1123,71 +1493,105 @@ lean_object* l_Lean_Parser_Command_optDeclSig___closed__3; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attrArg___closed__2; lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_structFields_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_exit; lean_object* l_Lean_Parser_Command_namespace___closed__1; lean_object* l_Lean_Parser_Command_partial___closed__6; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__7; +lean_object* l_Lean_Parser_Command_synth_parenthesizer___closed__2; +extern lean_object* l_Lean_Parser_Term_optIdent_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_attributes_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_namespace; lean_object* l_Lean_Parser_Command_print___closed__2; lean_object* l_Lean_Parser_Command_print___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_universes_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_axiom___closed__2; lean_object* l_Lean_Parser_Command_constant___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_declaration___closed__15; +lean_object* l_Lean_Parser_Command_private_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_declValSimple___closed__3; lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_openHiding___closed__6; +lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_structureTk___closed__6; +extern lean_object* l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_stxQuot___closed__1; lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_openOnly___closed__7; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__14; lean_object* l_Lean_Parser_Command_attrArg___closed__3; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__9; +lean_object* l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_export___elambda__1___closed__6; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Command_structExplicitBinder___elambda__1___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_def___closed__4; lean_object* l_Lean_Parser_Command_declaration___closed__5; lean_object* l_Lean_Parser_Command_extends___closed__6; lean_object* l_Lean_Parser_unicodeSymbolInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_init__quot; lean_object* l_Lean_Parser_Command_openRenaming___closed__6; +lean_object* l_Lean_Parser_Command_inductive_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_constant___closed__10; +extern lean_object* l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_axiom; lean_object* l_Lean_Parser_Command_exit___closed__2; lean_object* l_Lean_Parser_Command_openOnly___closed__4; lean_object* l_Lean_Parser_Command_noncomputable___closed__2; lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_synth_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_synth_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__5; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_check__failure; +lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_print___elambda__1___closed__3; +extern lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_open___closed__8; lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__8; +extern lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Command_export_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__3; +lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__3; +extern lean_object* l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__7; lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_declVal_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_optDeclSig___closed__2; lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_end___closed__1; lean_object* l_Lean_Parser_Command_mutualElement___closed__7; lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__11; lean_object* l_Lean_Parser_Command_example___closed__4; lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_Parser_Command_structure___closed__14; +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_instance___closed__3; extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_docComment___closed__6; @@ -1196,40 +1600,54 @@ lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_universes___closed__5; lean_object* l_Lean_Parser_Command_attrInstance___closed__1; +lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_openOnly___closed__3; lean_object* l_Lean_Parser_Command_inductive___closed__10; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Command_mutual___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_example___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__11; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__2; lean_object* l_Lean_Parser_regCommandParserAttribute(lean_object*); +lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_structureTk_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_check__failure___closed__7; lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_declaration___closed__13; lean_object* l_Lean_Parser_Command_namespace___closed__6; +lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_init__quot___closed__4; lean_object* l_Lean_Parser_Command_structure___closed__5; lean_object* l_Lean_Parser_Command_abbrev___closed__6; lean_object* l_Lean_Parser_Term_stxQuot___closed__9; lean_object* l_Lean_Parser_Command_open___closed__9; lean_object* l_Lean_Parser_Command_example___closed__2; +lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mutual___closed__5; lean_object* l_Lean_Parser_Command_mutualElement___closed__3; lean_object* l_Lean_Parser_Command_instance___closed__7; lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_attribute___closed__4; lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__7; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declSig; +lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__11; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__17; +lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Parser_inhabited___closed__1; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_declId___closed__6; lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__7; lean_object* l_Lean_Parser_Command_declSig___closed__6; lean_object* l_Lean_Parser_Command_print; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__8; +lean_object* l_Lean_Parser_Command_variables_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_universe; lean_object* l_Lean_Parser_Command_eval___closed__2; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__9; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__12; +lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_resolve__name___closed__4; lean_object* l_Lean_Parser_Command_structInstBinder___closed__7; lean_object* l_Lean_Parser_Term_stxQuot___closed__4; @@ -1240,10 +1658,14 @@ lean_object* l_Lean_Parser_Command_check___closed__4; lean_object* l_Lean_Parser_Command_classTk___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_open___closed__4; lean_object* l_Lean_Parser_Command_attribute___closed__9; +lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_classInductive_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_export___closed__10; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__2; lean_object* l_Lean_Parser_unicodeSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_ctor___closed__7; +lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_attributes___closed__2; lean_object* l_Lean_Parser_Command_private___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_section___elambda__1(lean_object*, lean_object*); @@ -1254,30 +1676,49 @@ lean_object* l_Lean_Parser_Command_export___closed__5; lean_object* l_Lean_Parser_Command_eval___closed__7; lean_object* l_Lean_Parser_Command_check___closed__1; extern lean_object* l_Lean_Parser_strLit; +lean_object* l_Lean_Parser_Command_structCtor_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_exit___closed__4; lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_commentBody; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_set__option___closed__6; lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__6; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Command_declId___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_universe___closed__3; +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_structure___closed__12; +lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__10; lean_object* l_Lean_Parser_Command_declValEqns___closed__5; lean_object* l_Lean_Parser_Command_universes___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_declValEqns; lean_object* l_Lean_Parser_Command_declModifiers___closed__9; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_declaration___closed__14; lean_object* l_Lean_Parser_Command_example___closed__1; +lean_object* l_Lean_Parser_Command_protected_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Command_synth(lean_object*); +lean_object* l_Lean_Parser_Command_classTk_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_export_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_end___closed__2; +lean_object* l_Lean_Parser_Command_declId_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__18; lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__7; +extern lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Command_eval_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__15; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__5; uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__10; @@ -1290,9 +1731,12 @@ lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_declModifiers___closed__4; lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_set__option___closed__11; +lean_object* l_Lean_Parser_Command_mutualElement_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_theorem___closed__2; +lean_object* l_Lean_Parser_Command_check_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_constant; lean_object* _init_l_Lean_Parser_regBuiltinCommandParserAttr___closed__1() { _start: @@ -2284,6 +2728,136 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_commandParser_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_Lean_PrettyPrinter_parenthesizeCommand___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* l_Lean_Parser_commandParser_parenthesizer___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_Parser_commandParser_parenthesizer(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_stxQuot___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_commandParser_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_stxQuot_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_stxQuot_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_stxQuot_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_stxQuot_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_stxQuot_parenthesizer___closed__6; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer(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; +x_5 = l_Lean_Parser_Term_stxQuot_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_stxQuot_parenthesizer___closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_stxQuot_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_Command_commentBody___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -24322,6 +24896,2704 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_docComment_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_docComment___elambda__1___closed__5; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_docComment_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_commentBody_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_docComment_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_docComment_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_docComment_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_docComment___elambda__1___closed__4; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_docComment_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_docComment_parenthesizer(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; +x_5 = l_Lean_Parser_Command_docComment_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_docComment_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_attrArg_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_str_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Level_num_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Command_attrArg_parenthesizer(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; +x_5 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_6 = l_Lean_Parser_Command_attrArg_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_attrInstance___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_attrArg_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_attrInstance_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_rawIdent_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_attrInstance_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_attrInstance_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_attrInstance___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_attrInstance_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_attrInstance_parenthesizer(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; +x_5 = l_Lean_Parser_Command_attrInstance_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_attrInstance_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_attributes___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_attrInstance_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_attributes_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_attributes_parenthesizer___closed__3; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_attributes_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_attributes___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_attributes_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_attributes_parenthesizer(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; +x_5 = l_Lean_Parser_Command_attributes_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_attributes_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_private_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_private___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_private_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_private___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_private_parenthesizer(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; +x_5 = l_Lean_Parser_Command_private_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_private_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_protected_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_protected___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_protected_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_protected___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_protected_parenthesizer(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; +x_5 = l_Lean_Parser_Command_protected_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_protected_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_visibility_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_private_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_visibility_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_protected_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Command_visibility_parenthesizer(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; +x_5 = l_Lean_Parser_Command_visibility_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_visibility_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_noncomputable_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_noncomputable___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_noncomputable_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_noncomputable___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_noncomputable_parenthesizer(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; +x_5 = l_Lean_Parser_Command_noncomputable_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_noncomputable_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_unsafe_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_unsafe___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_unsafe_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_unsafe___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_unsafe_parenthesizer(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; +x_5 = l_Lean_Parser_Command_unsafe_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_unsafe_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_partial_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_partial___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_partial_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_partial___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_partial_parenthesizer(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; +x_5 = l_Lean_Parser_Command_partial_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_partial_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declModifiers___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_docComment_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_attributes_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_visibility_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_noncomputable_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__8; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_unsafe_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__10; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_partial_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__12; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__11; +x_2 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__13; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__9; +x_2 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__14; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__7; +x_2 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__15; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__16; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__17; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declModifiers___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__18; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer(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; +x_5 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__19; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declId___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declId___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__6; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_declId_parenthesizer(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; +x_5 = l_Lean_Parser_Command_declId_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_declId_parenthesizer___closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_optDeclSig___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_optDeclSig___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer(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; +x_5 = l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_declValSimple_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declValSimple___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_declValSimple_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declValSimple___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer(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; +x_5 = l_Lean_Parser_Command_declValSimple_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_declValSimple_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer(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; +x_5 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_declVal_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declValSimple_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declVal_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declValEqns_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Command_declVal_parenthesizer(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; +x_5 = l_Lean_Parser_Command_declVal_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_declVal_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_abbrev___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optDeclSig_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declVal_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declId_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_abbrev___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_abbrev_parenthesizer(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; +x_5 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__8; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_def_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_def___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_def_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_def___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_def_parenthesizer(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; +x_5 = l_Lean_Parser_Command_def_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_def_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_declSig_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declSig___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_declSig_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_optType_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declSig_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declSig___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_declSig_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_declSig_parenthesizer(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; +x_5 = l_Lean_Parser_Command_declSig_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_declSig_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_theorem___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declSig_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_theorem_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_theorem_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_theorem_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_theorem___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_theorem_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_theorem_parenthesizer(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; +x_5 = l_Lean_Parser_Command_theorem_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_theorem_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declVal_parenthesizer___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_theorem_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_constant_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_constant_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_constant_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_constant_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_constant_parenthesizer(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; +x_5 = l_Lean_Parser_Command_constant_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_constant_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_instance_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_instance___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_instance_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_instance_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_instance_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_theorem_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_instance_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_instance_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_instance_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_instance___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_instance_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_instance_parenthesizer(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; +x_5 = l_Lean_Parser_Command_instance_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_instance_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_axiom___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_theorem_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_axiom_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_axiom___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_axiom_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_axiom_parenthesizer(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; +x_5 = l_Lean_Parser_Command_axiom_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_axiom_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_example_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_example___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_example_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_theorem_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_example_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_example___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_example_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_example_parenthesizer(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; +x_5 = l_Lean_Parser_Command_example_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_example_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_inferMod_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_inferMod___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_inferMod_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_inferMod___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_inferMod_parenthesizer(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; +x_5 = l_Lean_Parser_Command_inferMod_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_inferMod_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_ctor___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_inferMod_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_ctor_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiers_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_ctor_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_ctor_parenthesizer___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_ctor___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_ctor_parenthesizer___closed__8; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_ctor_parenthesizer(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; +x_5 = l_Lean_Parser_Command_ctor_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_ctor_parenthesizer___closed__9; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_inductive___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_ctor_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_inductive_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_inductive_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_inductive_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_inductive_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_inductive___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_inductive_parenthesizer___closed__6; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_inductive_parenthesizer(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; +x_5 = l_Lean_Parser_Command_inductive_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_inductive_parenthesizer___closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_classInductive_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_classInductive___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_classInductive_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_inductive_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_classInductive_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_classInductive___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_classInductive_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_classInductive_parenthesizer(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; +x_5 = l_Lean_Parser_Command_classInductive_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_classInductive_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_structureTk_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structureTk___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_structureTk_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structureTk___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_structureTk_parenthesizer(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; +x_5 = l_Lean_Parser_Command_structureTk_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_structureTk_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_classTk_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_classTk___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_classTk_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_classTk___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_classTk_parenthesizer(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; +x_5 = l_Lean_Parser_Command_classTk_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_classTk_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_extends_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_extends___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_extends_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_extends___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_tupleTail_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_extends_parenthesizer(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; +x_5 = l_Lean_Parser_Command_extends_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_extends_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structCtor___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__3; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_structCtor_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_structCtor_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_structCtor_parenthesizer___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structCtor___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_structCtor_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_structCtor_parenthesizer(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; +x_5 = l_Lean_Parser_Command_structCtor_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_structCtor_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__6; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__5; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__8; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__10; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer(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; +x_5 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__11; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_theorem_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer(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; +x_5 = l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structInstBinder___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structInstBinder___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer(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; +x_5 = l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structFields___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_structImplicitBinder_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_structInstBinder_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structFields_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_structFields_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_structExplicitBinder_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structFields_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_structFields_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_structFields_parenthesizer___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structFields___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_structFields_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_structFields_parenthesizer(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; +x_5 = l_Lean_Parser_Command_structFields_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_structFields_parenthesizer___closed__8; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structure___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_structureTk_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_classTk_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structure_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_structure_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_extends_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_structure_parenthesizer___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_structCtor_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_structure_parenthesizer___closed__7; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_structFields_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structure_parenthesizer___closed__8; +x_2 = l_Lean_Parser_Command_structure_parenthesizer___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_structure_parenthesizer___closed__10; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_subtype_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_structure_parenthesizer___closed__11; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structure_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_structure_parenthesizer___closed__12; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Command_structure_parenthesizer___closed__13; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_structure_parenthesizer___closed__14; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structure_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_structure_parenthesizer___closed__15; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_structure_parenthesizer___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_structure___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_structure_parenthesizer___closed__16; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_structure_parenthesizer(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; +x_5 = l_Lean_Parser_Command_structure_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_structure_parenthesizer___closed__17; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_classInductive_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_structure_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_inductive_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_example_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__7; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_axiom_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__9; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__8; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_instance_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__11; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__10; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_constant_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__13; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__12; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_theorem_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__15; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__14; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_def_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__17; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__16; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_abbrev_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__19; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__18; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__20; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_declaration_parenthesizer___closed__21; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_declaration_parenthesizer(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; +x_5 = l_Lean_Parser_Command_declaration_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_declaration_parenthesizer___closed__22; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declaration_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_declaration___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_section___elambda__1___closed__1() { _start: { @@ -24869,6 +28141,84 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_section_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_section___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_section_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_section_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_section_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_section_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_section___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_section_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_section_parenthesizer(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; +x_5 = l_Lean_Parser_Command_section_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_section_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_section_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_section___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_namespace___elambda__1___closed__1() { _start: { @@ -25315,6 +28665,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_namespace_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_namespace___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_namespace_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_namespace___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_namespace_parenthesizer(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; +x_5 = l_Lean_Parser_Command_namespace_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_namespace_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_namespace_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_namespace___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_end___elambda__1___closed__1() { _start: { @@ -25843,6 +29249,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_end_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_end___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_end_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_end___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_section_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_end_parenthesizer(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; +x_5 = l_Lean_Parser_Command_end_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_end_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_end_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_end_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_end___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Command_end_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_variable___elambda__1___closed__1() { _start: { @@ -26298,6 +29760,74 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_variable_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_variable___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_variable_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_forall_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_variable_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_variable___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_variable_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_variable_parenthesizer(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; +x_5 = l_Lean_Parser_Command_variable_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_variable_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_variable_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_variable_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_variable___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_variables___elambda__1___closed__1() { _start: { @@ -26809,6 +30339,84 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_variables_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_variables___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_variables_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_forall_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_variables_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_variables_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_variables_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_variables___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_variables_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_variables_parenthesizer(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; +x_5 = l_Lean_Parser_Command_variables_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_variables_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_variables_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_variables_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_variables_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_variables___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_variables_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_universe___elambda__1___closed__1() { _start: { @@ -27255,6 +30863,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_universe_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_universe___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_universe_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_universe___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_universe_parenthesizer(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; +x_5 = l_Lean_Parser_Command_universe_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_universe_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_universe_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_universe_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_universe___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_universes___elambda__1___closed__1() { _start: { @@ -27753,6 +31417,74 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_universes_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_universes___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_universes_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_universes_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_universes___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_universes_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_universes_parenthesizer(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; +x_5 = l_Lean_Parser_Command_universes_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_universes_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_universes_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_universes_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_universes_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_universes___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_universes_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_check___elambda__1___closed__1() { _start: { @@ -28195,6 +31927,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_check_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_check___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_check_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_check___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_check_parenthesizer(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; +x_5 = l_Lean_Parser_Command_check_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_check_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_check_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_check_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_check___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Command_check_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_check__failure___elambda__1___closed__1() { _start: { @@ -28645,6 +32433,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_check__failure_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_check__failure___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_check__failure_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_check__failure___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_check__failure_parenthesizer(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; +x_5 = l_Lean_Parser_Command_check__failure_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_check__failure_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_check__failure_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_check__failure___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_eval___elambda__1___closed__1() { _start: { @@ -29095,6 +32939,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_eval_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_eval___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_eval_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_eval___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_eval_parenthesizer(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; +x_5 = l_Lean_Parser_Command_eval_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_eval_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_eval_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_eval_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_eval___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_eval_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_synth___elambda__1___closed__1() { _start: { @@ -29545,6 +33445,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_synth_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_synth___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_synth_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_synth___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_synth_parenthesizer(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; +x_5 = l_Lean_Parser_Command_synth_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_synth_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_synth_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_synth_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_synth___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_synth_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_exit___elambda__1___closed__1() { _start: { @@ -29945,6 +33901,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_exit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_exit___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_exit_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_exit___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_exit_parenthesizer(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; +x_5 = l_Lean_Parser_Command_exit_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_exit_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_exit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_exit_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_exit___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_exit_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_print___elambda__1___closed__1() { _start: { @@ -30509,6 +34521,86 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_print_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_print___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_print_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_str_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_print_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_print_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_print_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_print___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_print_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_print_parenthesizer(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; +x_5 = l_Lean_Parser_Command_print_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_print_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_print_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_print_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_print___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_print_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_resolve__name___elambda__1___closed__1() { _start: { @@ -30955,6 +35047,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_resolve__name_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_resolve__name___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_resolve__name_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_resolve__name___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_resolve__name_parenthesizer(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; +x_5 = l_Lean_Parser_Command_resolve__name_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_resolve__name_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_resolve__name_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_resolve__name___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_init__quot___elambda__1___closed__1() { _start: { @@ -31347,6 +35495,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_init__quot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_init__quot___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_init__quot_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_init__quot___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_init__quot_parenthesizer(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; +x_5 = l_Lean_Parser_Command_init__quot_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_init__quot_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_init__quot_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_init__quot___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_set__option___elambda__1___closed__1() { _start: { @@ -32263,6 +36467,110 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_set__option___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Command_attrArg_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Command_set__option_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_set__option_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_set__option_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_set__option___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_set__option_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_set__option_parenthesizer(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; +x_5 = l_Lean_Parser_Command_set__option_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_set__option_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_set__option_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_set__option___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_attribute___elambda__1___closed__1() { _start: { @@ -33456,6 +37764,110 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_attributes_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_universes_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_attribute_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_attribute_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInst_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_attribute_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_attribute___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_attribute_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_attribute_parenthesizer(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; +x_5 = l_Lean_Parser_Command_attribute_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_attribute_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_attribute_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_attribute___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_export___elambda__1___closed__1() { _start: { @@ -34334,6 +38746,110 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_export_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_export___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_export_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_export_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_export_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_export_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_export_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_export_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_export_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_export_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_export___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_export_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_export_parenthesizer(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; +x_5 = l_Lean_Parser_Command_export_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_export_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_export_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_export_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_export___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_export_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_openHiding___elambda__1___closed__1() { _start: { @@ -38120,6 +42636,407 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_openHiding_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openHiding___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_openHiding_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_optIdent_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_openHiding_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openHiding___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_openHiding_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_openHiding_parenthesizer(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; +x_5 = l_Lean_Parser_Command_openHiding_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_openHiding_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer(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; +x_5 = l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openRenaming___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_openRenamingItem_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_optIdent_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_openRenaming_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openRenaming___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_openRenaming_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer(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; +x_5 = l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_openRenaming_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_openOnly_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openOnly___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_openOnly_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_optIdent_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_export_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_openOnly_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openOnly___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_openOnly_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_openOnly_parenthesizer(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; +x_5 = l_Lean_Parser_Command_openOnly_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_openOnly_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_openSimple_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openSimple___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_openSimple_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_openSimple___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_openSimple_parenthesizer(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; +x_5 = l_Lean_Parser_Command_openSimple_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_openSimple_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_open___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_openOnly_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_openSimple_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_open_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_open_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_openRenaming_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_open_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_open_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_openHiding_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_open_parenthesizer___closed__7; +x_2 = l_Lean_Parser_Command_open_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_open_parenthesizer___closed__8; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_open_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_open___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_open_parenthesizer___closed__9; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_open_parenthesizer(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; +x_5 = l_Lean_Parser_Command_open_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_open_parenthesizer___closed__10; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_open_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_open_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_open___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_Command_mutualElement___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -39255,6 +44172,174 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1; +x_2 = l___regBuiltin_Lean_Parser_Command_check_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Command_universes_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Command_mutualElement_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Command_mutualElement_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Command_variables_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Command_mutualElement_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Command_mutualElement_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Command_mutualElement_parenthesizer(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; +x_5 = l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_mutualElement_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_mutual___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_mutualElement_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_mutual_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_mutual_parenthesizer___closed__3; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_mutual_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_mutual___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_mutual_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_mutual_parenthesizer(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; +x_5 = l_Lean_Parser_Command_mutual_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_mutual_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_mutual_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_mutual___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Parser_Term(lean_object*); static bool _G_initialized = false; @@ -39321,6 +44406,25 @@ lean_mark_persistent(l_Lean_Parser_Term_stxQuot); res = l___regBuiltinParser_Lean_Parser_Term_stxQuot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_stxQuot_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_stxQuot_parenthesizer___closed__1); +l_Lean_Parser_Term_stxQuot_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_stxQuot_parenthesizer___closed__2); +l_Lean_Parser_Term_stxQuot_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_stxQuot_parenthesizer___closed__3); +l_Lean_Parser_Term_stxQuot_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_stxQuot_parenthesizer___closed__4); +l_Lean_Parser_Term_stxQuot_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_stxQuot_parenthesizer___closed__5); +l_Lean_Parser_Term_stxQuot_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_stxQuot_parenthesizer___closed__6); +l_Lean_Parser_Term_stxQuot_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_stxQuot_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_stxQuot_parenthesizer___closed__7); +l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_stxQuot_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_commentBody___closed__1 = _init_l_Lean_Parser_Command_commentBody___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_commentBody___closed__1); l_Lean_Parser_Command_commentBody___closed__2 = _init_l_Lean_Parser_Command_commentBody___closed__2(); @@ -40474,6 +45578,409 @@ lean_mark_persistent(l_Lean_Parser_Command_declaration); res = l___regBuiltinParser_Lean_Parser_Command_declaration(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_docComment_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_docComment_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_docComment_parenthesizer___closed__1); +l_Lean_Parser_Command_docComment_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_docComment_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_docComment_parenthesizer___closed__2); +l_Lean_Parser_Command_docComment_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_docComment_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_docComment_parenthesizer___closed__3); +l_Lean_Parser_Command_docComment_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_docComment_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_docComment_parenthesizer___closed__4); +l_Lean_Parser_Command_attrArg_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_attrArg_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_attrArg_parenthesizer___closed__1); +l_Lean_Parser_Command_attrInstance_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_attrInstance_parenthesizer___closed__1); +l_Lean_Parser_Command_attrInstance_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_attrInstance_parenthesizer___closed__2); +l_Lean_Parser_Command_attrInstance_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_attrInstance_parenthesizer___closed__3); +l_Lean_Parser_Command_attrInstance_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_attrInstance_parenthesizer___closed__4); +l_Lean_Parser_Command_attrInstance_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_attrInstance_parenthesizer___closed__5); +l_Lean_Parser_Command_attrInstance_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_attrInstance_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_attrInstance_parenthesizer___closed__6); +l_Lean_Parser_Command_attributes_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_attributes_parenthesizer___closed__1); +l_Lean_Parser_Command_attributes_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_attributes_parenthesizer___closed__2); +l_Lean_Parser_Command_attributes_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_attributes_parenthesizer___closed__3); +l_Lean_Parser_Command_attributes_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_attributes_parenthesizer___closed__4); +l_Lean_Parser_Command_attributes_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_attributes_parenthesizer___closed__5); +l_Lean_Parser_Command_attributes_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_attributes_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_attributes_parenthesizer___closed__6); +l_Lean_Parser_Command_private_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_private_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_private_parenthesizer___closed__1); +l_Lean_Parser_Command_private_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_private_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_private_parenthesizer___closed__2); +l_Lean_Parser_Command_protected_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_protected_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_protected_parenthesizer___closed__1); +l_Lean_Parser_Command_protected_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_protected_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_protected_parenthesizer___closed__2); +l_Lean_Parser_Command_visibility_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_visibility_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_visibility_parenthesizer___closed__1); +l_Lean_Parser_Command_visibility_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_visibility_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_visibility_parenthesizer___closed__2); +l_Lean_Parser_Command_noncomputable_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_noncomputable_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_noncomputable_parenthesizer___closed__1); +l_Lean_Parser_Command_noncomputable_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_noncomputable_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_noncomputable_parenthesizer___closed__2); +l_Lean_Parser_Command_unsafe_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_unsafe_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_unsafe_parenthesizer___closed__1); +l_Lean_Parser_Command_unsafe_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_unsafe_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_unsafe_parenthesizer___closed__2); +l_Lean_Parser_Command_partial_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_partial_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_partial_parenthesizer___closed__1); +l_Lean_Parser_Command_partial_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_partial_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_partial_parenthesizer___closed__2); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__1); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__2); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__3); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__4); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__5); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__6); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__7); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__8); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__9); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__10 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__10); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__11 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__11); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__12 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__12); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__13 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__13); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__14 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__14); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__15 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__15); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__16 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__16); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__17 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__17); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__18 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__18); +l_Lean_Parser_Command_declModifiers_parenthesizer___closed__19 = _init_l_Lean_Parser_Command_declModifiers_parenthesizer___closed__19(); +lean_mark_persistent(l_Lean_Parser_Command_declModifiers_parenthesizer___closed__19); +l_Lean_Parser_Command_declId_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__1); +l_Lean_Parser_Command_declId_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__2); +l_Lean_Parser_Command_declId_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__3); +l_Lean_Parser_Command_declId_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__4); +l_Lean_Parser_Command_declId_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__5); +l_Lean_Parser_Command_declId_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__6); +l_Lean_Parser_Command_declId_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__7); +l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__1); +l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__2); +l_Lean_Parser_Command_declValSimple_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_declValSimple_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_declValSimple_parenthesizer___closed__1); +l_Lean_Parser_Command_declValSimple_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_declValSimple_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_declValSimple_parenthesizer___closed__2); +l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1); +l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2); +l_Lean_Parser_Command_declVal_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_declVal_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_declVal_parenthesizer___closed__1); +l_Lean_Parser_Command_declVal_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_declVal_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_declVal_parenthesizer___closed__2); +l_Lean_Parser_Command_abbrev_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_abbrev_parenthesizer___closed__1); +l_Lean_Parser_Command_abbrev_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_abbrev_parenthesizer___closed__2); +l_Lean_Parser_Command_abbrev_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_abbrev_parenthesizer___closed__3); +l_Lean_Parser_Command_abbrev_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_abbrev_parenthesizer___closed__4); +l_Lean_Parser_Command_abbrev_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_abbrev_parenthesizer___closed__5); +l_Lean_Parser_Command_abbrev_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_abbrev_parenthesizer___closed__6); +l_Lean_Parser_Command_abbrev_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_abbrev_parenthesizer___closed__7); +l_Lean_Parser_Command_abbrev_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_abbrev_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_abbrev_parenthesizer___closed__8); +l_Lean_Parser_Command_def_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_def_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_def_parenthesizer___closed__1); +l_Lean_Parser_Command_def_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_def_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_def_parenthesizer___closed__2); +l_Lean_Parser_Command_declSig_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_declSig_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_declSig_parenthesizer___closed__1); +l_Lean_Parser_Command_declSig_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_declSig_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_declSig_parenthesizer___closed__2); +l_Lean_Parser_Command_declSig_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_declSig_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_declSig_parenthesizer___closed__3); +l_Lean_Parser_Command_theorem_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_theorem_parenthesizer___closed__1); +l_Lean_Parser_Command_theorem_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_theorem_parenthesizer___closed__2); +l_Lean_Parser_Command_theorem_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_theorem_parenthesizer___closed__3); +l_Lean_Parser_Command_theorem_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_theorem_parenthesizer___closed__4); +l_Lean_Parser_Command_theorem_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_theorem_parenthesizer___closed__5); +l_Lean_Parser_Command_theorem_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_theorem_parenthesizer___closed__6); +l_Lean_Parser_Command_constant_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__1); +l_Lean_Parser_Command_constant_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__2); +l_Lean_Parser_Command_constant_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__3); +l_Lean_Parser_Command_constant_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__4); +l_Lean_Parser_Command_constant_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__5); +l_Lean_Parser_Command_constant_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__6); +l_Lean_Parser_Command_instance_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_instance_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_instance_parenthesizer___closed__1); +l_Lean_Parser_Command_instance_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_instance_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_instance_parenthesizer___closed__2); +l_Lean_Parser_Command_instance_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_instance_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_instance_parenthesizer___closed__3); +l_Lean_Parser_Command_instance_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_instance_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_instance_parenthesizer___closed__4); +l_Lean_Parser_Command_instance_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_instance_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_instance_parenthesizer___closed__5); +l_Lean_Parser_Command_axiom_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_axiom_parenthesizer___closed__1); +l_Lean_Parser_Command_axiom_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_axiom_parenthesizer___closed__2); +l_Lean_Parser_Command_axiom_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_axiom_parenthesizer___closed__3); +l_Lean_Parser_Command_axiom_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_axiom_parenthesizer___closed__4); +l_Lean_Parser_Command_example_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_example_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_example_parenthesizer___closed__1); +l_Lean_Parser_Command_example_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_example_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_example_parenthesizer___closed__2); +l_Lean_Parser_Command_example_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_example_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_example_parenthesizer___closed__3); +l_Lean_Parser_Command_inferMod_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_inferMod_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_inferMod_parenthesizer___closed__1); +l_Lean_Parser_Command_inferMod_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_inferMod_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_inferMod_parenthesizer___closed__2); +l_Lean_Parser_Command_ctor_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__1); +l_Lean_Parser_Command_ctor_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__2); +l_Lean_Parser_Command_ctor_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__3); +l_Lean_Parser_Command_ctor_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__4); +l_Lean_Parser_Command_ctor_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__5); +l_Lean_Parser_Command_ctor_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__6); +l_Lean_Parser_Command_ctor_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__7); +l_Lean_Parser_Command_ctor_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__8); +l_Lean_Parser_Command_ctor_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_ctor_parenthesizer___closed__9); +l_Lean_Parser_Command_inductive_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_inductive_parenthesizer___closed__1); +l_Lean_Parser_Command_inductive_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_inductive_parenthesizer___closed__2); +l_Lean_Parser_Command_inductive_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_inductive_parenthesizer___closed__3); +l_Lean_Parser_Command_inductive_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_inductive_parenthesizer___closed__4); +l_Lean_Parser_Command_inductive_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_inductive_parenthesizer___closed__5); +l_Lean_Parser_Command_inductive_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_inductive_parenthesizer___closed__6); +l_Lean_Parser_Command_inductive_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_inductive_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_inductive_parenthesizer___closed__7); +l_Lean_Parser_Command_classInductive_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_classInductive_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_classInductive_parenthesizer___closed__1); +l_Lean_Parser_Command_classInductive_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_classInductive_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_classInductive_parenthesizer___closed__2); +l_Lean_Parser_Command_classInductive_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_classInductive_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_classInductive_parenthesizer___closed__3); +l_Lean_Parser_Command_structureTk_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_structureTk_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_structureTk_parenthesizer___closed__1); +l_Lean_Parser_Command_structureTk_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_structureTk_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_structureTk_parenthesizer___closed__2); +l_Lean_Parser_Command_classTk_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_classTk_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_classTk_parenthesizer___closed__1); +l_Lean_Parser_Command_classTk_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_classTk_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_classTk_parenthesizer___closed__2); +l_Lean_Parser_Command_extends_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_extends_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_extends_parenthesizer___closed__1); +l_Lean_Parser_Command_extends_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_extends_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_extends_parenthesizer___closed__2); +l_Lean_Parser_Command_structCtor_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_structCtor_parenthesizer___closed__1); +l_Lean_Parser_Command_structCtor_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_structCtor_parenthesizer___closed__2); +l_Lean_Parser_Command_structCtor_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_structCtor_parenthesizer___closed__3); +l_Lean_Parser_Command_structCtor_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_structCtor_parenthesizer___closed__4); +l_Lean_Parser_Command_structCtor_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_structCtor_parenthesizer___closed__5); +l_Lean_Parser_Command_structCtor_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_structCtor_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_structCtor_parenthesizer___closed__6); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__2); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__3); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__4); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__5); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__6); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__7); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__8); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__9); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__10 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__10); +l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__11 = _init_l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__11); +l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__1); +l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__2); +l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__3); +l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__4); +l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__5); +l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__6); +l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__1); +l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__2); +l_Lean_Parser_Command_structFields_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_structFields_parenthesizer___closed__1); +l_Lean_Parser_Command_structFields_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_structFields_parenthesizer___closed__2); +l_Lean_Parser_Command_structFields_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_structFields_parenthesizer___closed__3); +l_Lean_Parser_Command_structFields_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_structFields_parenthesizer___closed__4); +l_Lean_Parser_Command_structFields_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_structFields_parenthesizer___closed__5); +l_Lean_Parser_Command_structFields_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_structFields_parenthesizer___closed__6); +l_Lean_Parser_Command_structFields_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_structFields_parenthesizer___closed__7); +l_Lean_Parser_Command_structFields_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_structFields_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_structFields_parenthesizer___closed__8); +l_Lean_Parser_Command_structure_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__1); +l_Lean_Parser_Command_structure_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__2); +l_Lean_Parser_Command_structure_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__3); +l_Lean_Parser_Command_structure_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__4); +l_Lean_Parser_Command_structure_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__5); +l_Lean_Parser_Command_structure_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__6); +l_Lean_Parser_Command_structure_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__7); +l_Lean_Parser_Command_structure_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__8); +l_Lean_Parser_Command_structure_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__9); +l_Lean_Parser_Command_structure_parenthesizer___closed__10 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__10); +l_Lean_Parser_Command_structure_parenthesizer___closed__11 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__11); +l_Lean_Parser_Command_structure_parenthesizer___closed__12 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__12); +l_Lean_Parser_Command_structure_parenthesizer___closed__13 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__13); +l_Lean_Parser_Command_structure_parenthesizer___closed__14 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__14); +l_Lean_Parser_Command_structure_parenthesizer___closed__15 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__15); +l_Lean_Parser_Command_structure_parenthesizer___closed__16 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__16); +l_Lean_Parser_Command_structure_parenthesizer___closed__17 = _init_l_Lean_Parser_Command_structure_parenthesizer___closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_structure_parenthesizer___closed__17); +l_Lean_Parser_Command_declaration_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__1); +l_Lean_Parser_Command_declaration_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__2); +l_Lean_Parser_Command_declaration_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__3); +l_Lean_Parser_Command_declaration_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__4); +l_Lean_Parser_Command_declaration_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__5); +l_Lean_Parser_Command_declaration_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__6); +l_Lean_Parser_Command_declaration_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__7); +l_Lean_Parser_Command_declaration_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__8); +l_Lean_Parser_Command_declaration_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__9); +l_Lean_Parser_Command_declaration_parenthesizer___closed__10 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__10); +l_Lean_Parser_Command_declaration_parenthesizer___closed__11 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__11); +l_Lean_Parser_Command_declaration_parenthesizer___closed__12 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__12); +l_Lean_Parser_Command_declaration_parenthesizer___closed__13 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__13); +l_Lean_Parser_Command_declaration_parenthesizer___closed__14 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__14); +l_Lean_Parser_Command_declaration_parenthesizer___closed__15 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__15); +l_Lean_Parser_Command_declaration_parenthesizer___closed__16 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__16); +l_Lean_Parser_Command_declaration_parenthesizer___closed__17 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__17); +l_Lean_Parser_Command_declaration_parenthesizer___closed__18 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__18); +l_Lean_Parser_Command_declaration_parenthesizer___closed__19 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__19(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__19); +l_Lean_Parser_Command_declaration_parenthesizer___closed__20 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__20(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__20); +l_Lean_Parser_Command_declaration_parenthesizer___closed__21 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__21(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__21); +l_Lean_Parser_Command_declaration_parenthesizer___closed__22 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__22(); +lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__22); +l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_section___elambda__1___closed__1 = _init_l_Lean_Parser_Command_section___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_section___elambda__1___closed__1); l_Lean_Parser_Command_section___elambda__1___closed__2 = _init_l_Lean_Parser_Command_section___elambda__1___closed__2(); @@ -40513,6 +46020,19 @@ lean_mark_persistent(l_Lean_Parser_Command_section); res = l___regBuiltinParser_Lean_Parser_Command_section(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_section_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_section_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_section_parenthesizer___closed__1); +l_Lean_Parser_Command_section_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_section_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_section_parenthesizer___closed__2); +l_Lean_Parser_Command_section_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_section_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_section_parenthesizer___closed__3); +l_Lean_Parser_Command_section_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_section_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_section_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_section_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_namespace___elambda__1___closed__1 = _init_l_Lean_Parser_Command_namespace___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_namespace___elambda__1___closed__1); l_Lean_Parser_Command_namespace___elambda__1___closed__2 = _init_l_Lean_Parser_Command_namespace___elambda__1___closed__2(); @@ -40550,6 +46070,15 @@ lean_mark_persistent(l_Lean_Parser_Command_namespace); res = l___regBuiltinParser_Lean_Parser_Command_namespace(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_namespace_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_namespace_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_namespace_parenthesizer___closed__1); +l_Lean_Parser_Command_namespace_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_namespace_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_namespace_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_end___elambda__1___closed__1 = _init_l_Lean_Parser_Command_end___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_end___elambda__1___closed__1); l_Lean_Parser_Command_end___elambda__1___closed__2 = _init_l_Lean_Parser_Command_end___elambda__1___closed__2(); @@ -40585,6 +46114,15 @@ lean_mark_persistent(l_Lean_Parser_Command_end); res = l___regBuiltinParser_Lean_Parser_Command_end(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_end_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_end_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_end_parenthesizer___closed__1); +l_Lean_Parser_Command_end_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_end_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_end_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_end_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_end_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_end_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_end_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_variable___elambda__1___closed__1 = _init_l_Lean_Parser_Command_variable___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_variable___elambda__1___closed__1); l_Lean_Parser_Command_variable___elambda__1___closed__2 = _init_l_Lean_Parser_Command_variable___elambda__1___closed__2(); @@ -40622,6 +46160,17 @@ lean_mark_persistent(l_Lean_Parser_Command_variable); res = l___regBuiltinParser_Lean_Parser_Command_variable(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_variable_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_variable_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_variable_parenthesizer___closed__1); +l_Lean_Parser_Command_variable_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_variable_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_variable_parenthesizer___closed__2); +l_Lean_Parser_Command_variable_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_variable_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_variable_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_variable_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_variables___elambda__1___closed__1 = _init_l_Lean_Parser_Command_variables___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_variables___elambda__1___closed__1); l_Lean_Parser_Command_variables___elambda__1___closed__2 = _init_l_Lean_Parser_Command_variables___elambda__1___closed__2(); @@ -40659,6 +46208,19 @@ lean_mark_persistent(l_Lean_Parser_Command_variables); res = l___regBuiltinParser_Lean_Parser_Command_variables(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_variables_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_variables_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_variables_parenthesizer___closed__1); +l_Lean_Parser_Command_variables_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_variables_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_variables_parenthesizer___closed__2); +l_Lean_Parser_Command_variables_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_variables_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_variables_parenthesizer___closed__3); +l_Lean_Parser_Command_variables_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_variables_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_variables_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Command_variables_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_variables_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_variables_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_variables_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_universe___elambda__1___closed__1 = _init_l_Lean_Parser_Command_universe___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_universe___elambda__1___closed__1); l_Lean_Parser_Command_universe___elambda__1___closed__2 = _init_l_Lean_Parser_Command_universe___elambda__1___closed__2(); @@ -40696,6 +46258,15 @@ lean_mark_persistent(l_Lean_Parser_Command_universe); res = l___regBuiltinParser_Lean_Parser_Command_universe(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_universe_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_universe_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_universe_parenthesizer___closed__1); +l_Lean_Parser_Command_universe_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_universe_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_universe_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_universe_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_universes___elambda__1___closed__1 = _init_l_Lean_Parser_Command_universes___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_universes___elambda__1___closed__1); l_Lean_Parser_Command_universes___elambda__1___closed__2 = _init_l_Lean_Parser_Command_universes___elambda__1___closed__2(); @@ -40733,6 +46304,17 @@ lean_mark_persistent(l_Lean_Parser_Command_universes); res = l___regBuiltinParser_Lean_Parser_Command_universes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_universes_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_universes_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_universes_parenthesizer___closed__1); +l_Lean_Parser_Command_universes_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_universes_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_universes_parenthesizer___closed__2); +l_Lean_Parser_Command_universes_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_universes_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_universes_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Command_universes_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_universes_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_universes_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_universes_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_check___elambda__1___closed__1 = _init_l_Lean_Parser_Command_check___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_check___elambda__1___closed__1); l_Lean_Parser_Command_check___elambda__1___closed__2 = _init_l_Lean_Parser_Command_check___elambda__1___closed__2(); @@ -40768,6 +46350,15 @@ lean_mark_persistent(l_Lean_Parser_Command_check); res = l___regBuiltinParser_Lean_Parser_Command_check(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_check_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_check_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_check_parenthesizer___closed__1); +l_Lean_Parser_Command_check_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_check_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_check_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_check_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_check_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_check_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_check_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_check__failure___elambda__1___closed__1 = _init_l_Lean_Parser_Command_check__failure___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_check__failure___elambda__1___closed__1); l_Lean_Parser_Command_check__failure___elambda__1___closed__2 = _init_l_Lean_Parser_Command_check__failure___elambda__1___closed__2(); @@ -40805,6 +46396,15 @@ lean_mark_persistent(l_Lean_Parser_Command_check__failure); res = l___regBuiltinParser_Lean_Parser_Command_check__failure(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_check__failure_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_check__failure_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_check__failure_parenthesizer___closed__1); +l_Lean_Parser_Command_check__failure_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_check__failure_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_check__failure_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_eval___elambda__1___closed__1 = _init_l_Lean_Parser_Command_eval___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_eval___elambda__1___closed__1); l_Lean_Parser_Command_eval___elambda__1___closed__2 = _init_l_Lean_Parser_Command_eval___elambda__1___closed__2(); @@ -40842,6 +46442,15 @@ lean_mark_persistent(l_Lean_Parser_Command_eval); res = l___regBuiltinParser_Lean_Parser_Command_eval(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_eval_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_eval_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_eval_parenthesizer___closed__1); +l_Lean_Parser_Command_eval_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_eval_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_eval_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_eval_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_eval_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_eval_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_eval_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_synth___elambda__1___closed__1 = _init_l_Lean_Parser_Command_synth___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_synth___elambda__1___closed__1); l_Lean_Parser_Command_synth___elambda__1___closed__2 = _init_l_Lean_Parser_Command_synth___elambda__1___closed__2(); @@ -40879,6 +46488,15 @@ lean_mark_persistent(l_Lean_Parser_Command_synth); res = l___regBuiltinParser_Lean_Parser_Command_synth(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_synth_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_synth_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_synth_parenthesizer___closed__1); +l_Lean_Parser_Command_synth_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_synth_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_synth_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_synth_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_synth_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_synth_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_synth_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_exit___elambda__1___closed__1 = _init_l_Lean_Parser_Command_exit___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_exit___elambda__1___closed__1); l_Lean_Parser_Command_exit___elambda__1___closed__2 = _init_l_Lean_Parser_Command_exit___elambda__1___closed__2(); @@ -40914,6 +46532,15 @@ lean_mark_persistent(l_Lean_Parser_Command_exit); res = l___regBuiltinParser_Lean_Parser_Command_exit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_exit_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_exit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_exit_parenthesizer___closed__1); +l_Lean_Parser_Command_exit_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_exit_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_exit_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_exit_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_exit_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_exit_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_exit_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_print___elambda__1___closed__1 = _init_l_Lean_Parser_Command_print___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_print___elambda__1___closed__1); l_Lean_Parser_Command_print___elambda__1___closed__2 = _init_l_Lean_Parser_Command_print___elambda__1___closed__2(); @@ -40953,6 +46580,19 @@ lean_mark_persistent(l_Lean_Parser_Command_print); res = l___regBuiltinParser_Lean_Parser_Command_print(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_print_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_print_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_print_parenthesizer___closed__1); +l_Lean_Parser_Command_print_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_print_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_print_parenthesizer___closed__2); +l_Lean_Parser_Command_print_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_print_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_print_parenthesizer___closed__3); +l_Lean_Parser_Command_print_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_print_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_print_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Command_print_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_print_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_print_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_print_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_resolve__name___elambda__1___closed__1 = _init_l_Lean_Parser_Command_resolve__name___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_resolve__name___elambda__1___closed__1); l_Lean_Parser_Command_resolve__name___elambda__1___closed__2 = _init_l_Lean_Parser_Command_resolve__name___elambda__1___closed__2(); @@ -40990,6 +46630,15 @@ lean_mark_persistent(l_Lean_Parser_Command_resolve__name); res = l___regBuiltinParser_Lean_Parser_Command_resolve__name(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_resolve__name_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_resolve__name_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_resolve__name_parenthesizer___closed__1); +l_Lean_Parser_Command_resolve__name_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_resolve__name_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_resolve__name_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_resolve__name_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_init__quot___elambda__1___closed__1 = _init_l_Lean_Parser_Command_init__quot___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_init__quot___elambda__1___closed__1); l_Lean_Parser_Command_init__quot___elambda__1___closed__2 = _init_l_Lean_Parser_Command_init__quot___elambda__1___closed__2(); @@ -41023,6 +46672,15 @@ lean_mark_persistent(l_Lean_Parser_Command_init__quot); res = l___regBuiltinParser_Lean_Parser_Command_init__quot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_init__quot_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_init__quot_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_init__quot_parenthesizer___closed__1); +l_Lean_Parser_Command_init__quot_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_init__quot_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_init__quot_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_set__option___elambda__1___closed__1 = _init_l_Lean_Parser_Command_set__option___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_set__option___elambda__1___closed__1); l_Lean_Parser_Command_set__option___elambda__1___closed__2 = _init_l_Lean_Parser_Command_set__option___elambda__1___closed__2(); @@ -41082,6 +46740,23 @@ lean_mark_persistent(l_Lean_Parser_Command_set__option); res = l___regBuiltinParser_Lean_Parser_Command_set__option(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_set__option_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_set__option_parenthesizer___closed__1); +l_Lean_Parser_Command_set__option_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_set__option_parenthesizer___closed__2); +l_Lean_Parser_Command_set__option_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_set__option_parenthesizer___closed__3); +l_Lean_Parser_Command_set__option_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_set__option_parenthesizer___closed__4); +l_Lean_Parser_Command_set__option_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_set__option_parenthesizer___closed__5); +l_Lean_Parser_Command_set__option_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_set__option_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_set__option_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_attribute___elambda__1___closed__1 = _init_l_Lean_Parser_Command_attribute___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_attribute___elambda__1___closed__1); l_Lean_Parser_Command_attribute___elambda__1___closed__2 = _init_l_Lean_Parser_Command_attribute___elambda__1___closed__2(); @@ -41141,6 +46816,23 @@ lean_mark_persistent(l_Lean_Parser_Command_attribute); res = l___regBuiltinParser_Lean_Parser_Command_attribute(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_attribute_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_attribute_parenthesizer___closed__1); +l_Lean_Parser_Command_attribute_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_attribute_parenthesizer___closed__2); +l_Lean_Parser_Command_attribute_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_attribute_parenthesizer___closed__3); +l_Lean_Parser_Command_attribute_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_attribute_parenthesizer___closed__4); +l_Lean_Parser_Command_attribute_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_attribute_parenthesizer___closed__5); +l_Lean_Parser_Command_attribute_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_attribute_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_attribute_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_export___elambda__1___closed__1 = _init_l_Lean_Parser_Command_export___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_export___elambda__1___closed__1); l_Lean_Parser_Command_export___elambda__1___closed__2 = _init_l_Lean_Parser_Command_export___elambda__1___closed__2(); @@ -41184,6 +46876,23 @@ lean_mark_persistent(l_Lean_Parser_Command_export); res = l___regBuiltinParser_Lean_Parser_Command_export(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_export_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_export_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_export_parenthesizer___closed__1); +l_Lean_Parser_Command_export_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_export_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_export_parenthesizer___closed__2); +l_Lean_Parser_Command_export_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_export_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_export_parenthesizer___closed__3); +l_Lean_Parser_Command_export_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_export_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_export_parenthesizer___closed__4); +l_Lean_Parser_Command_export_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_export_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_export_parenthesizer___closed__5); +l_Lean_Parser_Command_export_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_export_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_export_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Command_export_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_export_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_export_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_export_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_openHiding___elambda__1___closed__1 = _init_l_Lean_Parser_Command_openHiding___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_openHiding___elambda__1___closed__1); l_Lean_Parser_Command_openHiding___elambda__1___closed__2 = _init_l_Lean_Parser_Command_openHiding___elambda__1___closed__2(); @@ -41389,6 +47098,65 @@ lean_mark_persistent(l_Lean_Parser_Command_open); res = l___regBuiltinParser_Lean_Parser_Command_open(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_openHiding_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_openHiding_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_openHiding_parenthesizer___closed__1); +l_Lean_Parser_Command_openHiding_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_openHiding_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_openHiding_parenthesizer___closed__2); +l_Lean_Parser_Command_openHiding_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_openHiding_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_openHiding_parenthesizer___closed__3); +l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__1); +l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2); +l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__3); +l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__4); +l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1); +l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2); +l_Lean_Parser_Command_openRenaming_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_openRenaming_parenthesizer___closed__3); +l_Lean_Parser_Command_openRenaming_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_openRenaming_parenthesizer___closed__4); +l_Lean_Parser_Command_openRenaming_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_openRenaming_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_openRenaming_parenthesizer___closed__5); +l_Lean_Parser_Command_openOnly_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_openOnly_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_openOnly_parenthesizer___closed__1); +l_Lean_Parser_Command_openOnly_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_openOnly_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_openOnly_parenthesizer___closed__2); +l_Lean_Parser_Command_openOnly_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_openOnly_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_openOnly_parenthesizer___closed__3); +l_Lean_Parser_Command_openSimple_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_openSimple_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_openSimple_parenthesizer___closed__1); +l_Lean_Parser_Command_openSimple_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_openSimple_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_openSimple_parenthesizer___closed__2); +l_Lean_Parser_Command_open_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__1); +l_Lean_Parser_Command_open_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__2); +l_Lean_Parser_Command_open_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__3); +l_Lean_Parser_Command_open_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__4); +l_Lean_Parser_Command_open_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__5); +l_Lean_Parser_Command_open_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__6); +l_Lean_Parser_Command_open_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__7); +l_Lean_Parser_Command_open_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__8); +l_Lean_Parser_Command_open_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__9); +l_Lean_Parser_Command_open_parenthesizer___closed__10 = _init_l_Lean_Parser_Command_open_parenthesizer___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_open_parenthesizer___closed__10); +l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_open_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_mutualElement___closed__1 = _init_l_Lean_Parser_Command_mutualElement___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_mutualElement___closed__1); l_Lean_Parser_Command_mutualElement___closed__2 = _init_l_Lean_Parser_Command_mutualElement___closed__2(); @@ -41446,6 +47214,33 @@ lean_mark_persistent(l_Lean_Parser_Command_mutual); res = l___regBuiltinParser_Lean_Parser_Command_mutual(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_mutualElement_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_mutualElement_parenthesizer___closed__1); +l_Lean_Parser_Command_mutualElement_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_mutualElement_parenthesizer___closed__2); +l_Lean_Parser_Command_mutualElement_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_mutualElement_parenthesizer___closed__3); +l_Lean_Parser_Command_mutualElement_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_mutualElement_parenthesizer___closed__4); +l_Lean_Parser_Command_mutualElement_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_mutualElement_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_mutualElement_parenthesizer___closed__5); +l_Lean_Parser_Command_mutual_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_mutual_parenthesizer___closed__1); +l_Lean_Parser_Command_mutual_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_mutual_parenthesizer___closed__2); +l_Lean_Parser_Command_mutual_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_mutual_parenthesizer___closed__3); +l_Lean_Parser_Command_mutual_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_mutual_parenthesizer___closed__4); +l_Lean_Parser_Command_mutual_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_mutual_parenthesizer___closed__5); +l_Lean_Parser_Command_mutual_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_mutual_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser/Level.c b/stage0/stdlib/Lean/Parser/Level.c index 8ae3203bc3..41e2664e8d 100644 --- a/stage0/stdlib/Lean/Parser/Level.c +++ b/stage0/stdlib/Lean/Parser/Level.c @@ -13,24 +13,41 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitToken___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkHole___closed__3; +lean_object* l_Lean_Parser_Level_ident_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Level_ident_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_manyAux___main___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Level_ident_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__4; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___lambda__1___closed__2; lean_object* l_Lean_Parser_regBuiltinLevelParserAttr___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Level_ident___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; lean_object* l_Lean_Parser_Level_addLit___closed__2; +lean_object* l_Lean_Parser_Level_num_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Level_max_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Parser_Level_paren___closed__2; lean_object* l_Lean_Parser_Level_num___closed__2; lean_object* l_Lean_Parser_Level_num___elambda__1___closed__2; extern lean_object* l_Lean_identKind___closed__1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_num___closed__4; lean_object* l_Lean_Parser_Level_max___elambda__1___closed__6; lean_object* l_Lean_Parser_regBuiltinLevelParserAttr(lean_object*); +lean_object* l_Lean_Parser_Level_addLit_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Level_max_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Level_imax_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_hole___closed__5; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19; +extern lean_object* l_Lean_Parser_numLit___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_hole___closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Level_max_parenthesizer___closed__4; lean_object* l_Lean_Parser_regBuiltinLevelParserAttr___closed__2; lean_object* l_Lean_Parser_Level_ident; lean_object* l___regBuiltinParser_Lean_Parser_Level_num(lean_object*); @@ -41,55 +58,93 @@ lean_object* l_Lean_Parser_Level_imax___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Level_max(lean_object*); lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_max___elambda__1___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14; +lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Level_imax_parenthesizer___closed__2; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; lean_object* l_Lean_Parser_Level_num___elambda__1___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; lean_object* l_Lean_Parser_Level_max___closed__7; lean_object* l_Lean_Parser_Level_paren___closed__7; lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__5; lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_hole___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18; +extern lean_object* l_Lean_Parser_mkAntiquot___closed__4; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Parser_Level_ident___elambda__1___closed__3; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_paren___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Level_hole_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_paren___closed__3; lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__2; +lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_num___closed__1; lean_object* l_Lean_Parser_ParserState_mkErrorsAt(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_imax___closed__3; +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_max___elambda__1___closed__2; lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; +lean_object* l_Lean_Parser_Level_addLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Level_num_parenthesizer___closed__2; lean_object* l_Lean_Parser_Level_max___closed__3; +lean_object* l_Lean_Parser_Level_hole_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_max___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer(lean_object*); +extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_setExpected_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__4; lean_object* l_Lean_Parser_Level_paren___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Level_num_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; +lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_ident___closed__3; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21; lean_object* l___regBuiltinParser_Lean_Parser_Level_paren(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Nat_HasQuote___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_addLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_ident___closed__5; lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__2; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22; lean_object* l_Lean_Parser_Level_paren; +lean_object* l_Lean_Parser_dollarSymbol_parenthesizer(lean_object*); +lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__2; lean_object* l_Lean_Parser_Level_num___elambda__1(lean_object*, lean_object*); uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Level_ident_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__4; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20; lean_object* l_Lean_Parser_Level_max___closed__6; lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_imax; +lean_object* l___regBuiltin_Lean_Parser_Level_max_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Level_paren_parenthesizer___closed__1; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__21; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16; extern lean_object* l_Char_HasRepr___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Level_num_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Level_max_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_hole; +lean_object* l_Lean_Parser_dollarSymbol_parenthesizer___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__5; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_levelParser(lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Level_max___elambda__1___spec__1(lean_object*, lean_object*); @@ -98,80 +153,139 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_maxPrec; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__10; lean_object* l_Lean_Parser_Level_imax___elambda__1(lean_object*, lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +lean_object* l_Lean_Parser_Level_num_parenthesizer___closed__3; lean_object* l_Lean_Parser_Level_ident___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7; lean_object* l_Lean_Parser_registerBuiltinParserAttribute(lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_Lean_Parser_antiquotExpr_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_addLit___closed__5; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24; lean_object* l_Lean_Parser_Level_addLit___closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Parser_Level_imax___closed__2; +lean_object* l_Lean_Parser_Level_paren_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Level_num_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; lean_object* l_Lean_Parser_Level_ident___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_paren___closed__4; +lean_object* l_Lean_Parser_numLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__3; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; +lean_object* l_Lean_Parser_Level_ident_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Level_ident_parenthesizer___closed__2; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__5; lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__2; lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_ident___closed__2; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___boxed(lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10; +extern lean_object* l_Lean_Parser_ident___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__3; lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_max___closed__4; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__5; extern lean_object* l_Lean_Parser_numLit; lean_object* l_Lean_Parser_Level_max___closed__8; lean_object* l_Lean_Parser_Level_ident___elambda__1___closed__2; lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11; +lean_object* l___regBuiltin_Lean_Parser_Level_hole_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_num___closed__5; lean_object* l_Lean_Parser_Level_hole___closed__6; lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_max; lean_object* l_Lean_Parser_Level_num; lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Level_imax_parenthesizer___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12; lean_object* l_Lean_Parser_Level_max___closed__5; lean_object* l_Lean_Parser_Level_num___closed__3; +lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__5; lean_object* l_Lean_Parser_symbolInfo(lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__26; extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___boxed(lean_object*); extern lean_object* l_Lean_mkHole___closed__1; lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_ident___closed__4; lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Level_addLit(lean_object*); +lean_object* l_Lean_Parser_Level_max_parenthesizer___closed__3; +lean_object* l_Lean_Parser_antiquotExpr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_ident_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__1; +lean_object* l_Lean_Parser_Level_hole_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Level_hole(lean_object*); lean_object* l_Lean_Parser_Level_hole___closed__1; +lean_object* l_Lean_Parser_numLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__3; lean_object* l_String_trim(lean_object*); +lean_object* l_Lean_Parser_Level_hole_parenthesizer___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_dollarSymbol_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_hole___closed__2; +lean_object* l_Lean_Parser_Level_imax_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_imax___closed__5; lean_object* l_Lean_Parser_Level_addLit___closed__6; lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Level_max_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Level_max___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Level_ident(lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___closed__2; lean_object* l_Lean_Parser_Level_addLit; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___lambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Level_imax_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Level_max___elambda__1___closed__5; lean_object* l_Lean_Parser_Level_max___elambda__1___closed__7; +lean_object* l_Lean_Parser_ident_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Level_paren_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__5; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; lean_object* l_Lean_Parser_Level_max___elambda__1___closed__3; lean_object* l_Lean_Parser_Level_imax___closed__1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_imax___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2; lean_object* l_Lean_Parser_Level_addLit___closed__4; +extern lean_object* l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_paren___closed__6; +lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Level_imax(lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_Parser_Level_imax___closed__4; +lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9; +lean_object* l_Lean_Parser_dollarSymbol_parenthesizer___boxed(lean_object*); +extern lean_object* l_Lean_Parser_mkAntiquot___closed__2; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__27; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__7; lean_object* l_Lean_Parser_Level_paren___closed__8; lean_object* l_Lean_Parser_Level_hole___closed__4; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17; lean_object* l_Lean_Parser_Level_addLit___closed__1; lean_object* l_Lean_Parser_Level_max___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8; +extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_paren___closed__1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__3; uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_max___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__4; lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__6; +lean_object* l_Lean_Parser_Level_max_parenthesizer___closed__5; lean_object* _init_l_Lean_Parser_regBuiltinLevelParserAttr___closed__1() { _start: { @@ -758,6 +872,546 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_dollarSymbol_parenthesizer___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_PrettyPrinter_Parenthesizer_visitToken___rarg(x_1, x_2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_dollarSymbol_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_dollarSymbol_parenthesizer___rarg___boxed), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Parser_dollarSymbol_parenthesizer___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Parser_dollarSymbol_parenthesizer___rarg(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +lean_object* l_Lean_Parser_dollarSymbol_parenthesizer___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Parser_dollarSymbol_parenthesizer(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer(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; +x_5 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; +x_6 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_antiquotExpr_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_antiquotNestedExpr_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_antiquotExpr_parenthesizer(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; +x_5 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__21; +x_6 = l_Lean_Parser_antiquotExpr_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_dollarSymbol_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_setExpected_parenthesizer___rarg), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot___closed__4; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_antiquotExpr_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__26; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_15; +x_15 = lean_box(0); +x_7 = x_15; +goto block_14; +} +else +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_1, 0); +lean_inc(x_16); +lean_dec(x_1); +x_7 = x_16; +goto block_14; +} +block_14: +{ +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Parser_mkAntiquot___closed__2; +x_9 = l_Lean_Name_append___main(x_7, x_8); +lean_dec(x_7); +if (x_2 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17; +x_11 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_9, x_10, x_3, x_4, x_5, x_6); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__27; +x_13 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_9, x_12, x_3, x_4, x_5, x_6); +return x_13; +} +} +} +} +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 0); +return x_2; +} +} +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_2); +lean_dec(x_2); +x_8 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg(x_1, x_7, x_3, x_4, x_5, x_6); +return x_8; +} +} +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Level_paren_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Level_paren_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Level_paren_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_paren_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Level_paren_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Level_paren_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Level_paren_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___lambda__1___closed__3; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Level_paren_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Level_paren_parenthesizer(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; +x_5 = l_Lean_Parser_Level_paren_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Level_paren_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Level_paren_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Level_paren_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Level_paren_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___lambda__1___closed__3; +x_4 = l___regBuiltin_Lean_Parser_Level_paren_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Level_max___elambda__1___spec__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -1203,6 +1857,94 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Level_max_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_max___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Level_max_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_maxPrec; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Level_max_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Level_max_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Level_max_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Level_max_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Level_max_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_max___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Level_max_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Level_max_parenthesizer(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; +x_5 = l_Lean_Parser_Level_max_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Level_max_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Level_max_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Level_max_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Level_max_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Level_max___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Level_max_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Level_imax___elambda__1___closed__1() { _start: { @@ -1574,6 +2316,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Level_imax_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_imax___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Level_imax_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_imax___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Level_max_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Level_imax_parenthesizer(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; +x_5 = l_Lean_Parser_Level_imax_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Level_imax_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Level_imax_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Level_imax_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Level_imax_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Level_imax___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Level_imax_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Level_hole___elambda__1___closed__1() { _start: { @@ -1958,6 +2756,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Level_hole_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_hole___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Level_hole_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_hole___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Level_hole_parenthesizer(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; +x_5 = l_Lean_Parser_Level_hole_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Level_hole_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Level_hole_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Level_hole_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Level_hole_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Level_hole___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Level_hole_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Level_num___elambda__1___closed__1() { _start: { @@ -2176,6 +3030,93 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_numLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_numLit___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_numLit_parenthesizer(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; +x_5 = l_Lean_Parser_numLit_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Level_num_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_num___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Level_num_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_numLit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Level_num_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_num___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Level_num_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Level_num_parenthesizer(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; +x_5 = l_Lean_Parser_Level_num_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Level_num_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Level_num_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Level_num_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Level_num_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Level_num___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Level_num_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Level_ident___elambda__1___closed__1() { _start: { @@ -2394,6 +3335,93 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_ident_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_ident___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_ident_parenthesizer(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; +x_5 = l_Lean_Parser_ident_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__21; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Level_ident_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_ident___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Level_ident_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ident_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Level_ident_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Level_ident___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Level_ident_parenthesizer(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; +x_5 = l_Lean_Parser_Level_ident_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Level_ident_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Level_ident_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Level_ident_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Level_ident_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Level_ident___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Level_ident_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Level_addLit___elambda__1___closed__1() { _start: { @@ -2639,6 +3667,48 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Level_addLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Level_num_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Level_addLit_parenthesizer(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; +x_5 = l_Lean_Parser_Level_addLit___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(65u); +x_7 = l_Lean_Parser_Level_addLit_parenthesizer___closed__1; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Level_addLit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Level_addLit___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Parser_Parser(lean_object*); static bool _G_initialized = false; @@ -2684,6 +3754,81 @@ lean_mark_persistent(l_Lean_Parser_Level_paren); res = l___regBuiltinParser_Lean_Parser_Level_paren(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1 = _init_l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1); +l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2 = _init_l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2); +l_Lean_Parser_antiquotExpr_parenthesizer___closed__1 = _init_l_Lean_Parser_antiquotExpr_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_antiquotExpr_parenthesizer___closed__1); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__26 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__26(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__26); +l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__27 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__27(); +lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__27); +l_Lean_Parser_Level_paren_parenthesizer___closed__1 = _init_l_Lean_Parser_Level_paren_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Level_paren_parenthesizer___closed__1); +l_Lean_Parser_Level_paren_parenthesizer___closed__2 = _init_l_Lean_Parser_Level_paren_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Level_paren_parenthesizer___closed__2); +l_Lean_Parser_Level_paren_parenthesizer___closed__3 = _init_l_Lean_Parser_Level_paren_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Level_paren_parenthesizer___closed__3); +l_Lean_Parser_Level_paren_parenthesizer___closed__4 = _init_l_Lean_Parser_Level_paren_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Level_paren_parenthesizer___closed__4); +l_Lean_Parser_Level_paren_parenthesizer___closed__5 = _init_l_Lean_Parser_Level_paren_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Level_paren_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Level_paren_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Level_paren_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_paren_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Level_paren_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Level_max___elambda__1___closed__1 = _init_l_Lean_Parser_Level_max___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Level_max___elambda__1___closed__1); l_Lean_Parser_Level_max___elambda__1___closed__2 = _init_l_Lean_Parser_Level_max___elambda__1___closed__2(); @@ -2719,6 +3864,21 @@ lean_mark_persistent(l_Lean_Parser_Level_max); res = l___regBuiltinParser_Lean_Parser_Level_max(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Level_max_parenthesizer___closed__1 = _init_l_Lean_Parser_Level_max_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Level_max_parenthesizer___closed__1); +l_Lean_Parser_Level_max_parenthesizer___closed__2 = _init_l_Lean_Parser_Level_max_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Level_max_parenthesizer___closed__2); +l_Lean_Parser_Level_max_parenthesizer___closed__3 = _init_l_Lean_Parser_Level_max_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Level_max_parenthesizer___closed__3); +l_Lean_Parser_Level_max_parenthesizer___closed__4 = _init_l_Lean_Parser_Level_max_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Level_max_parenthesizer___closed__4); +l_Lean_Parser_Level_max_parenthesizer___closed__5 = _init_l_Lean_Parser_Level_max_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Level_max_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Level_max_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Level_max_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_max_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Level_max_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Level_imax___elambda__1___closed__1 = _init_l_Lean_Parser_Level_imax___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Level_imax___elambda__1___closed__1); l_Lean_Parser_Level_imax___elambda__1___closed__2 = _init_l_Lean_Parser_Level_imax___elambda__1___closed__2(); @@ -2752,6 +3912,15 @@ lean_mark_persistent(l_Lean_Parser_Level_imax); res = l___regBuiltinParser_Lean_Parser_Level_imax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Level_imax_parenthesizer___closed__1 = _init_l_Lean_Parser_Level_imax_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Level_imax_parenthesizer___closed__1); +l_Lean_Parser_Level_imax_parenthesizer___closed__2 = _init_l_Lean_Parser_Level_imax_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Level_imax_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Level_imax_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Level_imax_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_imax_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Level_imax_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Level_hole___elambda__1___closed__1 = _init_l_Lean_Parser_Level_hole___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Level_hole___elambda__1___closed__1); l_Lean_Parser_Level_hole___elambda__1___closed__2 = _init_l_Lean_Parser_Level_hole___elambda__1___closed__2(); @@ -2783,6 +3952,15 @@ lean_mark_persistent(l_Lean_Parser_Level_hole); res = l___regBuiltinParser_Lean_Parser_Level_hole(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Level_hole_parenthesizer___closed__1 = _init_l_Lean_Parser_Level_hole_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Level_hole_parenthesizer___closed__1); +l_Lean_Parser_Level_hole_parenthesizer___closed__2 = _init_l_Lean_Parser_Level_hole_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Level_hole_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Level_hole_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Level_hole_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_hole_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Level_hole_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Level_num___elambda__1___closed__1 = _init_l_Lean_Parser_Level_num___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Level_num___elambda__1___closed__1); l_Lean_Parser_Level_num___elambda__1___closed__2 = _init_l_Lean_Parser_Level_num___elambda__1___closed__2(); @@ -2804,6 +3982,19 @@ lean_mark_persistent(l_Lean_Parser_Level_num); res = l___regBuiltinParser_Lean_Parser_Level_num(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_numLit_parenthesizer___closed__1 = _init_l_Lean_Parser_numLit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_numLit_parenthesizer___closed__1); +l_Lean_Parser_Level_num_parenthesizer___closed__1 = _init_l_Lean_Parser_Level_num_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Level_num_parenthesizer___closed__1); +l_Lean_Parser_Level_num_parenthesizer___closed__2 = _init_l_Lean_Parser_Level_num_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Level_num_parenthesizer___closed__2); +l_Lean_Parser_Level_num_parenthesizer___closed__3 = _init_l_Lean_Parser_Level_num_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Level_num_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Level_num_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Level_num_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_num_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Level_num_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Level_ident___elambda__1___closed__1 = _init_l_Lean_Parser_Level_ident___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Level_ident___elambda__1___closed__1); l_Lean_Parser_Level_ident___elambda__1___closed__2 = _init_l_Lean_Parser_Level_ident___elambda__1___closed__2(); @@ -2825,6 +4016,19 @@ lean_mark_persistent(l_Lean_Parser_Level_ident); res = l___regBuiltinParser_Lean_Parser_Level_ident(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_ident_parenthesizer___closed__1 = _init_l_Lean_Parser_ident_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_ident_parenthesizer___closed__1); +l_Lean_Parser_Level_ident_parenthesizer___closed__1 = _init_l_Lean_Parser_Level_ident_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Level_ident_parenthesizer___closed__1); +l_Lean_Parser_Level_ident_parenthesizer___closed__2 = _init_l_Lean_Parser_Level_ident_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Level_ident_parenthesizer___closed__2); +l_Lean_Parser_Level_ident_parenthesizer___closed__3 = _init_l_Lean_Parser_Level_ident_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Level_ident_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Level_ident_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Level_ident_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_ident_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Level_ident_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Level_addLit___elambda__1___closed__1 = _init_l_Lean_Parser_Level_addLit___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Level_addLit___elambda__1___closed__1); l_Lean_Parser_Level_addLit___elambda__1___closed__2 = _init_l_Lean_Parser_Level_addLit___elambda__1___closed__2(); @@ -2854,6 +4058,13 @@ lean_mark_persistent(l_Lean_Parser_Level_addLit); res = l___regBuiltinParser_Lean_Parser_Level_addLit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Level_addLit_parenthesizer___closed__1 = _init_l_Lean_Parser_Level_addLit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Level_addLit_parenthesizer___closed__1); +l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Level_addLit_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser/Parser.c b/stage0/stdlib/Lean/Parser/Parser.c index 2ab7f49271..a1fae1e502 100644 --- a/stage0/stdlib/Lean/Parser/Parser.c +++ b/stage0/stdlib/Lean/Parser/Parser.c @@ -19,6 +19,7 @@ lean_object* l_Lean_Parser_identEq(lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_decimalNumberFn___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgs___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserOfStack___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_17__addTokenConfig___closed__2; lean_object* l_Lean_Parser_declareLeadingBuiltinParser___closed__2; lean_object* l_Lean_Parser_builtinTokenTable; lean_object* l_Lean_Parser_finishCommentBlock(lean_object*, lean_object*, lean_object*); @@ -26,6 +27,8 @@ lean_object* lean_string_push(lean_object*, uint32_t); extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_Parser_charLit___closed__1; lean_object* l_Lean_Parser_andthenInfo___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_hashOrelse; size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Parser_manyAux___main___closed__1; @@ -35,14 +38,13 @@ lean_object* l_Lean_Syntax_forArgsM___rarg(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_declareLeadingBuiltinParser___closed__1; uint8_t l_Lean_Parser_checkTailWs(lean_object*); lean_object* l_Lean_Parser_mkParserExtension___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_hexNumberFn___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_22__ParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_identFn___closed__1; lean_object* l_Lean_Parser_try(lean_object*); lean_object* l_Lean_Parser_nodeWithAntiquot___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__1___boxed(lean_object*); lean_object* l_Std_PersistentHashMap_findAux___main___at_Lean_Parser_addLeadingParser___spec__2(lean_object*, size_t, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__6(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_prattParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingIdentAsSymbol___boxed(lean_object*, lean_object*); @@ -58,11 +60,9 @@ lean_object* l_Lean_Parser_sepByInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_shrinkStack___boxed(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkCategoryParserFnExtension___spec__1___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg(lean_object*); +lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_decimalNumberFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldSepRevArgsM(lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Parser_mkParserExtension___closed__2; @@ -86,6 +86,8 @@ lean_object* l_Lean_Parser_hexNumberFn___closed__1; lean_object* l_Lean_Syntax_foldSepRevArgs(lean_object*); lean_object* l_Lean_Parser_binNumberFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_foldlM___main___at_Lean_Parser_addParserTokens___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_21__ParserExtension_addImported___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numberFnAux(lean_object*, lean_object*); lean_object* l_Lean_Parser_identEqFn___closed__1; lean_object* l_Lean_Parser_lookahead(lean_object*); @@ -101,8 +103,8 @@ lean_object* l_Lean_Parser_mkParserOfConstantAux___boxed(lean_object*, lean_obje lean_object* l_Array_foldSepBy___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit___elambda__1___closed__1; lean_object* l_Lean_Parser_longestMatchFn(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__6; +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__1; lean_object* l_Lean_Parser_registerBuiltinParserAttribute___closed__1; lean_object* l_Lean_Parser_nameLitNoAntiquot; lean_object* l_Lean_Parser_parserExtension___elambda__1___boxed(lean_object*); @@ -137,6 +139,7 @@ lean_object* l___private_Lean_Parser_Parser_7__tokenFnAux(lean_object*, lean_obj lean_object* l_Lean_Parser_InputContext_inhabited; lean_object* l_Lean_Parser_parserExtension___elambda__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_HasToString___closed__1; +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserExtensionState_inhabited___closed__1; size_t l_USize_sub(size_t, size_t); extern lean_object* l_Array_empty___closed__1; @@ -145,7 +148,6 @@ lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__17; lean_object* l_Lean_Syntax_foldSepArgsM(lean_object*, lean_object*); lean_object* l_Lean_Parser_builtinParserCategoriesRef; -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension; lean_object* l_Lean_Parser_unquotedSymbolFn___closed__1; @@ -154,17 +156,20 @@ lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__2; lean_object* l_Lean_Parser_dollarSymbol___closed__1; lean_object* l_Lean_Parser_ident; lean_object* l_Lean_Parser_parserExtension___closed__2; +lean_object* l___private_Lean_Parser_Parser_18__addTrailingParserAux(lean_object*, lean_object*); +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__2___boxed(lean_object*, lean_object*); uint8_t l_Lean_Parser_isLitKind(lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_whitespace___main___spec__1(lean_object*, lean_object*); -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_binNumberFn___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_fieldIdxKind___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__1; +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(lean_object*); lean_object* l_Lean_Parser_withAntiquotFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserOfStackFn___closed__2; lean_object* lean_io_mk_ref(lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Lean_Parser_Parser_18__addTrailingParserAux___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkColGe(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Parser_Parser_4__isToken(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolFn(lean_object*, lean_object*, lean_object*); uint8_t l_Char_isDigit(uint32_t); @@ -183,7 +188,6 @@ lean_object* l_Lean_Parser_satisfyFn___boxed(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Parser_declareBuiltinParser___closed__5; extern uint32_t l_Lean_idEndEscape; lean_object* l_Lean_Parser_mkAntiquot___closed__9; -lean_object* l___private_Lean_Parser_Parser_16__addTokenConfig(lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__8; lean_object* l_Lean_Parser_pushNone___elambda__1___boxed(lean_object*); lean_object* l_List_map___main___at_Lean_Parser_addLeadingParser___spec__4(lean_object*); @@ -194,8 +198,8 @@ lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, le lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Position_Inhabited___closed__1; lean_object* l_Std_RBNode_find___main___at_Lean_Parser_indexed___spec__1___rarg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_17__addTokenConfig(lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWsFn___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_17__addTrailingParserAux(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_finishCommentBlock___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbol___closed__2; @@ -207,8 +211,8 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_Parser_rawCh___elambda__1(uint32_t, uint8_t, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Std_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_charLitKind___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux___main___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWsFn(lean_object*, lean_object*, lean_object*); @@ -255,28 +259,23 @@ lean_object* l_Lean_Syntax_forSepArgsM(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l_Lean_Parser_ParserState_mkErrorsAt(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkCategoryParserFnExtension___spec__1___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkStackTopFn___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__2; lean_object* l_Lean_Syntax_foldSepRevArgs___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_18__updateBuiltinTokens___closed__1; lean_object* l_Lean_Parser_leadingParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWsInfo___elambda__2(lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension___closed__1; -lean_object* l___private_Lean_Parser_Parser_22__ParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkColGeFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_declareBuiltinParser___closed__4; lean_object* l_Lean_Parser_nameLitFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_setExpected___elambda__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_HasOfNat___closed__1; -lean_object* l_List_foldl___main___at___private_Lean_Parser_Parser_17__addTrailingParserAux___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserFnExtension___elambda__1___rarg(lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitFnAux___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind; lean_object* l_Lean_Parser_categoryParserFnExtension___closed__1; -lean_object* l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__1; lean_object* l_Std_RBNode_find___main___at_Lean_Parser_indexed___spec__3___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit___closed__1; lean_object* l_Lean_Parser_unquotedSymbol___closed__2; @@ -340,10 +339,8 @@ lean_object* l_Lean_Parser_invalidLongestMatchParser___closed__1; extern lean_object* l_Lean_mkAttributeImplOfConstant___closed__1; lean_object* l_Lean_Parser_mkAntiquot___closed__5; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_binNumberFn___spec__3(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_setCategoryParserFnRef(lean_object*); lean_object* l_Lean_Syntax_forArgsM(lean_object*); -lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1___closed__1; lean_object* l_Lean_Parser_throwUnknownParserCategory(lean_object*); lean_object* l___private_Lean_Parser_Parser_6__nameLitAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__15; @@ -351,6 +348,8 @@ lean_object* l_Lean_Parser_decimalNumberFn(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_PrattParsingTables_inhabited___closed__1; lean_object* l_Lean_Parser_compileParserDescr___main___closed__3; lean_object* l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_quotedSymbolFn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit___closed__2; @@ -362,7 +361,6 @@ lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_identFnAux___main___spec__ lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_mkAntiquot___closed__18; lean_object* l_Lean_Parser_addSyntaxNodeKind(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__1___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Trie_HasEmptyc___closed__1; lean_object* l_Lean_Parser_mkIdResult___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__1; @@ -372,6 +370,7 @@ lean_object* l_Lean_Parser_setExpected___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbol(lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchFn___closed__1; lean_object* l_Lean_Parser_checkStackTopFn(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_setBlack___rarg(lean_object*); lean_object* l_Lean_Parser_takeWhileFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__1(lean_object*); @@ -397,7 +396,6 @@ lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_rawCh___elambda__1___spec_ lean_object* l_Lean_Parser_ident___closed__2; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_HasBeq___closed__1; -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__4(lean_object*); lean_object* l_Lean_Syntax_foldSepArgsM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -442,6 +440,7 @@ lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__1; lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_PersistentHashMap_insertAux___main___rarg___closed__3; +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__1___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_strLitKind; lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_forArgsM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -462,11 +461,15 @@ lean_object* l_Lean_Parser_sepBy(lean_object*, lean_object*, uint8_t); lean_object* l_Array_findRevMAux___main___at___private_Lean_Parser_Parser_9__pickNonNone___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgsM(lean_object*, lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLitNoAntiquot___closed__2; +lean_object* l___private_Lean_Parser_Parser_16__ParserExtension_mkInitial(lean_object*); lean_object* l_Lean_Parser_withAntiquot(lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___closed__8; +lean_object* l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__1; lean_object* l_Lean_Parser_fieldIdx___closed__3; +uint8_t l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(lean_object*, size_t, lean_object*); +lean_object* l___private_Lean_Parser_Parser_21__ParserExtension_addImported(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Parser_Error_beq(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_keepNewError(lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotExpr; @@ -476,6 +479,7 @@ extern lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__4 lean_object* l_Lean_Parser_symbol(lean_object*); lean_object* l_Lean_Parser_mkParserExtension___closed__8; lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_octalNumberFn___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2; lean_object* l_Lean_Parser_symbolInfo___elambda__1___boxed(lean_object*); lean_object* l_Lean_Parser_whitespace___main(lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___closed__3; @@ -488,9 +492,11 @@ uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind___closed__1; lean_object* l_Lean_Parser_optionaInfo(lean_object*); lean_object* l_Lean_Parser_FirstTokens_seq(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1; lean_object* l_Lean_Parser_peekToken(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString___closed__4; lean_object* l_Std_PersistentHashMap_foldlMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_20__ParserExtension_addEntry(lean_object*, lean_object*); lean_object* l_Lean_Parser_anyOfFn___main___closed__1; lean_object* l_Lean_Parser_strLit___elambda__1___closed__2; lean_object* l_Lean_Parser_SyntaxNodeKindSet_insert(lean_object*, lean_object*); @@ -501,10 +507,11 @@ lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit; lean_object* l_Lean_Parser_binNumberFn(lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_14__addBuiltinParserCategory(lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_Parser_Parser_12__registerAuxiliaryNodeKindSets(lean_object*); lean_object* l_Lean_Parser_charLitNoAntiquot___closed__3; lean_object* l_Lean_Parser_peekTokenAux(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_HasBeq; +lean_object* l___private_Lean_Parser_Parser_15__addBuiltinParserCategory(lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__3; lean_object* l_Lean_Parser_parserExtension___elambda__4(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_Inhabited___closed__1; @@ -519,11 +526,9 @@ lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Parser_addLeadingParser_ lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_foldArgsM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addLeadingParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_20__ParserExtension_addImported(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_setExpectedFn(lean_object*); lean_object* l_Lean_Parser_strLitFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserExtension___lambda__2___boxed(lean_object*); -lean_object* l___private_Lean_Parser_Parser_19__ParserExtension_addEntry(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__12; lean_object* l_Lean_Parser_charLit___closed__3; lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__4; @@ -538,7 +543,6 @@ lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_Parser_categoryParserOfStack(lean_object*, lean_object*); extern lean_object* l_Char_HasRepr___closed__1; lean_object* l_Lean_Parser_mkAntiquot___closed__20; -lean_object* l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef(lean_object*); lean_object* l_Lean_Parser_registerBuiltinParserAttribute___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkWsBefore(lean_object*); @@ -560,7 +564,7 @@ lean_object* l_Lean_Parser_strLitNoAntiquot___closed__1; lean_object* l_Lean_Parser_sepByFn(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__2; lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_chFn___spec__1(uint32_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_15__ParserExtension_mkInitial(lean_object*); +lean_object* l___private_Lean_Parser_Parser_23__ParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_rawCh___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_getNext___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserAttributeImpl___closed__1; @@ -568,10 +572,13 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind; extern lean_object* l_List_repr___rarg___closed__2; extern lean_object* l_Lean_charLitKind; +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2; extern lean_object* l_List_reprAux___main___rarg___closed__1; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_hexNumberFn___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_maxPrec; +lean_object* l___private_Lean_Parser_Parser_17__addTokenConfig___closed__1; lean_object* l_Lean_Parser_TokenMap_Inhabited(lean_object*); +lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserFnExtension___elambda__1___rarg___boxed(lean_object*); lean_object* l_Lean_Parser_regTermParserAttribute___closed__2; lean_object* l_Lean_Parser_rawIdent; @@ -584,23 +591,22 @@ lean_object* l_Lean_Parser_FirstTokens_merge(lean_object*, lean_object*); extern size_t l_Std_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_Lean_Parser_strLit___elambda__1___closed__1; lean_object* l_Lean_Parser_pushNone___elambda__1___rarg(lean_object*); -lean_object* l___private_Lean_Parser_Parser_13__addParserCategoryCore(lean_object*, lean_object*, lean_object*); lean_object* lean_eval_const(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserAttributeImpl(lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__5; -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolInfo___elambda__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_hexNumberFn___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit___closed__2; +lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1___closed__1; lean_object* l_Lean_Parser_ParserFn_inhabited(lean_object*); lean_object* l_Lean_Parser_ParserExtensionState_inhabited; -lean_object* l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkEOIError___closed__1; uint8_t l_Lean_Parser_isIdCont(lean_object*, lean_object*); lean_object* l_Lean_Parser_mergeOrElseErrors___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_compileParserDescr(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkNoImmediateColon___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_quotedSymbolFn___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_14__addParserCategoryCore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_declareTrailingBuiltinParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___elambda__1___boxed(lean_object*); lean_object* l_Lean_Parser_setCategoryParserFnRef___closed__1; @@ -640,6 +646,7 @@ lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___elambda__1(lean_object*); lean_object* l_Lean_Parser_anyOfFn(lean_object*, lean_object*, lean_object*); +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkEmptySubstringAt(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_binNumberFn___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitFnAux___main(lean_object*, lean_object*, lean_object*); @@ -649,6 +656,7 @@ lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgs___spec__1 lean_object* l_IO_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchMkResult(lean_object*, lean_object*); size_t l_USize_mul(size_t, size_t); +lean_object* l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___closed__1; lean_object* l_Lean_FileMap_ofString(lean_object*); lean_object* l_Lean_Parser_whitespace(lean_object*, lean_object*); lean_object* l_List_redLength___main___rarg(lean_object*); @@ -672,6 +680,7 @@ lean_object* l_Lean_Parser_sepByFn___boxed(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_mkBuiltinTokenTable(lean_object*); lean_object* l_Lean_Parser_FirstTokens_toStr___closed__3; lean_object* l_Lean_Parser_manyAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_15__addBuiltinParserCategory___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addTrailingParser(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__7; uint8_t l_List_beq___main___at_Lean_Syntax_structEq___main___spec__3(lean_object*, lean_object*); @@ -680,6 +689,7 @@ lean_object* l_Lean_Parser_chFn(uint32_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr; lean_object* l_Lean_Parser_mkAtomicInfo___elambda__2___boxed(lean_object*); lean_object* l_Lean_ConstantInfo_type(lean_object*); +lean_object* l___private_Lean_Parser_Parser_19__updateBuiltinTokens(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_declareBuiltinParser___closed__6; lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_quotedSymbolFn___spec__1(uint32_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_trailingNodeAux(lean_object*, lean_object*); @@ -689,6 +699,7 @@ lean_object* l_Lean_Parser_addBuiltinLeadingParser(lean_object*, lean_object*, l lean_object* l_Lean_Syntax_foldSepArgsM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkNoImmediateColon; lean_object* l_Lean_Parser_mkParserExtension___closed__7; +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1(lean_object*); lean_object* l_Std_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_regBuiltinTermParserAttr___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; @@ -701,7 +712,6 @@ lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkParserExtensio lean_object* l_Lean_Parser_mkAntiquot___elambda__2(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__2; lean_object* l_Lean_Parser_categoryParserFn(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__1; lean_object* l_Lean_ParametricAttribute_setParam___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Array_foldSepByM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; @@ -710,10 +720,9 @@ lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__1___boxed(lean_objec lean_object* l_Lean_Parser_sepBy1Info(lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedCharFn___closed__1; lean_object* l_Lean_Parser_charLitFnAux___closed__1; -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2; -lean_object* l___private_Lean_Parser_Parser_18__updateBuiltinTokens(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWs(lean_object*); lean_object* l_Lean_Parser_hexDigitFn___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Parser_registerBuiltinNodeKindSet(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mergeErrors___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldSepBy(lean_object*); lean_object* l_Lean_Parser_categoryParserFnExtension___elambda__2(lean_object*); @@ -725,15 +734,16 @@ lean_object* l_Lean_Parser_quotedCharFn___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1(lean_object*, lean_object*, uint8_t, uint8_t); lean_object* l_Lean_Parser_sepBy1Fn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Parser_mkParserExtension___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_dollarSymbol___elambda__1___closed__5; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; lean_object* l_Lean_Parser_noFirstTokenInfo___elambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder(lean_object*); lean_object* l_Lean_Parser_ident___elambda__1___closed__1; lean_object* l_Lean_Parser_declareLeadingBuiltinParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkColGeFn(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Meta_EqnCompiler_CaseArraySizes_2__introArrayLitAux___main___closed__3; -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder(lean_object*); lean_object* l_Lean_Parser_registerParserCategory(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_charLitFnAux___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Option_HasRepr___rarg___closed__3; @@ -753,6 +763,7 @@ lean_object* l_Lean_Parser_symbol___boxed(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_foldArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit___elambda__1(lean_object*, lean_object*); uint8_t l_UInt32_decEq(uint32_t, uint32_t); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_inhabited; lean_object* l_Lean_Parser_unquotedSymbolFn(lean_object*, lean_object*); lean_object* l_String_intercalate(lean_object*, lean_object*); @@ -767,6 +778,7 @@ lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___boxed(lean_ob lean_object* l_Lean_Parser_compileParserDescr___main___closed__2; lean_object* l_Lean_Parser_FirstTokens_HasToString___closed__1; lean_object* l_Lean_Parser_FirstTokens_HasToString; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString(lean_object*); lean_object* l_Lean_Parser_categoryParserOfStackFn___boxed(lean_object*, lean_object*, lean_object*); @@ -776,11 +788,9 @@ lean_object* l_Lean_Parser_runLongestMatchParser(lean_object*, lean_object*, lea lean_object* l_Std_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__6___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkTrailingNode___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_many1Indent___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1(lean_object*); lean_object* l_Std_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinParserCategories___spec__1; lean_object* l_Array_foldlStepMAux___main___at_Array_foldSepBy___spec__1(lean_object*); lean_object* l_Lean_Parser_ParserState_keepNewError___boxed(lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___closed__1; lean_object* l_Std_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__5___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4___closed__2; lean_object* l_Lean_Parser_ParserState_mkUnexpectedErrorAt(lean_object*, lean_object*, lean_object*); @@ -788,7 +798,6 @@ lean_object* l_Lean_quotedSymbolKind___closed__2; lean_object* l_Lean_Parser_mkAntiquot___closed__24; uint8_t l_Lean_Syntax_hasArgs(lean_object*); lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_tryFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_whitespace___main___boxed(lean_object*, lean_object*); uint8_t l_Lean_Parser_isParserCategory(lean_object*, lean_object*); @@ -802,12 +811,13 @@ lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_P lean_object* l_Lean_Parser_numLitNoAntiquot___closed__3; lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_Inhabited; +lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); -uint8_t l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__2(lean_object*, size_t, lean_object*); -lean_object* l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__3___boxed(lean_object*, lean_object*); uint8_t l_Std_RBNode_isRed___rarg(lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn___closed__2; +lean_object* l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___closed__6; lean_object* l_Lean_Parser_mkAntiquot___closed__22; lean_object* l_Lean_Syntax_getArgs(lean_object*); @@ -855,7 +865,6 @@ lean_object* l_Lean_Parser_nonReservedSymbolInfo___elambda__2___boxed(lean_objec lean_object* l_Lean_Parser_many1Indent(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_whitespace___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_builtinSyntaxNodeKindSetRef; -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserState___boxed(lean_object*); lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWsInfo___closed__1; @@ -865,7 +874,6 @@ lean_object* l_Lean_Parser_FirstTokens_toStr___closed__2; lean_object* lean_io_ref_swap(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdentNoAntiquot; lean_object* l_Lean_Parser_ParserState_replaceLongest(lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_16__addTokenConfig___closed__1; extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_Parser_ident___elambda__1___closed__2; lean_object* l_Lean_Parser_fieldIdxFn___boxed(lean_object*, lean_object*); @@ -883,7 +891,6 @@ lean_object* l_Lean_Parser_noFirstTokenInfo___elambda__2(lean_object*, lean_obje lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkCategoryParserFnExtension___spec__1(lean_object*, lean_object*); lean_object* l_Std_RBNode_find___main___at_Lean_Parser_indexed___spec__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkCategoryParserFnRef___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_16__addTokenConfig___closed__2; lean_object* l_Lean_Parser_epsilonInfo___closed__2; lean_object* l_Lean_Parser_Parser_inhabited___closed__2; lean_object* l_Lean_Parser_mkCategoryParserFnExtension(lean_object*); @@ -910,10 +917,10 @@ lean_object* l_Lean_Parser_checkNoImmediateColon___closed__2; extern lean_object* l_Lean_FileMap_Inhabited___closed__1; extern lean_object* l_Lean_mkOptionalNode___closed__1; lean_object* l_Lean_Parser_rawIdentFn___boxed(lean_object*, lean_object*); +uint8_t l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(lean_object*, lean_object*); lean_object* l_Std_RBNode_find___main___at_Lean_Parser_TokenMap_insert___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Array_foldSepBy___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); -lean_object* l___private_Lean_Parser_Parser_14__addBuiltinParserCategory___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingParserAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_forSepArgsM___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawFn(lean_object*, uint8_t, lean_object*, lean_object*); @@ -934,16 +941,14 @@ uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserOfConstant(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhile1Fn(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__3(lean_object*, lean_object*); lean_object* lean_io_initializing(lean_object*); lean_object* l___private_Lean_Parser_Parser_8__updateCache(lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_Parser_sepByInfo___elambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolInfo___closed__1; +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__3; lean_object* l_Lean_Syntax_forSepArgsM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_getStateUnsafe___rarg(lean_object*, lean_object*); -uint8_t l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__6; lean_object* l_Lean_Parser_rawIdent___closed__1; @@ -972,7 +977,6 @@ lean_object* l_Lean_Parser_Parser_inhabited___closed__3; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_hexNumberFn___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_forSepArgsM___spec__1(lean_object*); -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__2; lean_object* l_Lean_Parser_mkAntiquot___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserOfStackFn___closed__1; lean_object* l_Lean_Parser_manyFn(lean_object*, lean_object*, lean_object*); @@ -980,19 +984,16 @@ lean_object* l_Lean_Parser_ParserState_next___boxed(lean_object*, lean_object*, extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Parser_Parser_inhabited___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgsM___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined(lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Info___elambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___elambda__2(lean_object*); -lean_object* l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined(lean_object*); -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelse(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_foldArgs___spec__1(lean_object*); -lean_object* l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___elambda__1(lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_hexNumberFn___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_9__pickNonNone(lean_object*); lean_object* l_Lean_Parser_categoryParserFnExtension; lean_object* l_Array_iterateMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1002,9 +1003,9 @@ lean_object* l_List_toStringAux___main___at_Lean_Parser_FirstTokens_toStr___spec lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_dollarSymbol___elambda__1___closed__3; lean_object* l_Lean_Parser_andthen(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__2; lean_object* l_Lean_Parser_node(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_forArgsM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_stringToParserCoe___boxed(lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__8; @@ -1024,14 +1025,15 @@ lean_object* lean_usize_to_nat(size_t); lean_object* l___private_Lean_Parser_Parser_6__nameLitAux___closed__1; lean_object* l_Lean_Parser_mkTokenAndFixPos(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___elambda__1___boxed(lean_object*); +lean_object* l___private_Lean_Parser_Parser_19__updateBuiltinTokens___closed__1; lean_object* l_Lean_Parser_FirstTokens_toOptional(lean_object*); lean_object* l_Lean_Parser_checkWsBefore___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerAttributeImplBuilder(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); uint8_t l_UInt32_decLe(uint32_t, uint32_t); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_identFnAux___main___spec__3___boxed(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_getSyntaxNodeKinds___boxed(lean_object*); +lean_object* l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Parser_ParserState_hasError(lean_object*); lean_object* l_Lean_Parser_symbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_hexDigitFn___closed__1; @@ -1041,7 +1043,6 @@ lean_object* l___private_Lean_Parser_Parser_4__isToken___boxed(lean_object*, lea lean_object* l_Lean_Parser_ParserState_mkEOIError(lean_object*); lean_object* l___private_Lean_Parser_Parser_6__nameLitAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___closed__3; lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_Parser_indexed___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1060,12 +1061,11 @@ lean_object* l_List_eraseDups___at_Lean_Parser_addLeadingParser___spec__5(lean_o lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__3; lean_object* l_List_toStringAux___main___at_Lean_Parser_FirstTokens_toStr___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_setExpected___elambda__1(lean_object*); -lean_object* l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolInfo___closed__1; lean_object* l_Lean_Parser_quotedSymbolFn___closed__3; lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_identFnAux___main___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgs___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__2(lean_object*, lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_replaceLongest___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); @@ -1085,7 +1085,6 @@ extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__1; extern lean_object* l_Lean_initAttr; lean_object* l_Lean_Parser_identFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_decimalNumberFn___spec__2___boxed(lean_object*, lean_object*); -lean_object* l___private_Lean_Parser_Parser_20__ParserExtension_addImported___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_Parser_Error_toString___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Syntax_foldSepRevArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotExpr___closed__3; @@ -1093,20 +1092,22 @@ lean_object* l_Lean_Parser_charLitNoAntiquot; lean_object* l_Lean_Parser_strLitFnAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkErrorStringWithPos(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__1; -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__3; lean_object* l_Lean_Parser_unicodeSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___elambda__1___closed__2; lean_object* l___private_Lean_Parser_Parser_5__isIdFirstOrBeginEscape___boxed(lean_object*); +lean_object* l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Info___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdent___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit; lean_object* l_Lean_Parser_many1(lean_object*, uint8_t); +lean_object* l___private_Lean_Parser_Parser_23__ParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__2(lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___closed__2; lean_object* l_Lean_Parser_sepBy___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Parser_addLeadingParser___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_identNoAntiquot___closed__2; uint8_t l___private_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(uint32_t); +lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit___closed__2; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; lean_object* l_Lean_Parser_nonReservedSymbolInfo___boxed(lean_object*, lean_object*); @@ -1116,16 +1117,17 @@ lean_object* l_Lean_Parser_numberFnAux___boxed(lean_object*, lean_object*); uint8_t lean_string_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension___elambda__3(lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdxFn(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_compileParserDescr___main___closed__5; lean_object* l_Lean_Parser_mkIdent(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind___closed__1; uint8_t lean_string_dec_eq(lean_object*, lean_object*); +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_isLitKind___boxed(lean_object*); lean_object* l_Lean_Parser_registerParserCategory___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchFnAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); @@ -26930,6 +26932,292 @@ x_3 = lean_io_mk_ref(x_2, x_1); return x_3; } } +lean_object* l_Lean_Parser_registerBuiltinNodeKindSet(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Parser_builtinSyntaxNodeKindSetRef; +x_4 = lean_io_ref_get(x_3, x_2); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* 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); +x_7 = lean_box(0); +x_8 = l_Std_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_5, x_1, x_7); +x_9 = lean_io_ref_reset(x_3, x_6); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_io_ref_set(x_3, x_8, x_10); +return x_11; +} +else +{ +uint8_t x_12; +lean_dec(x_8); +x_12 = !lean_is_exclusive(x_9); +if (x_12 == 0) +{ +return x_9; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_9, 0); +x_14 = lean_ctor_get(x_9, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_9); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +return x_15; +} +} +} +else +{ +uint8_t x_16; +lean_dec(x_1); +x_16 = !lean_is_exclusive(x_4); +if (x_16 == 0) +{ +return x_4; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_4, 0); +x_18 = lean_ctor_get(x_4, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_4); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +} +lean_object* l___private_Lean_Parser_Parser_12__registerAuxiliaryNodeKindSets(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_choiceKind; +x_3 = l_Lean_Parser_registerBuiltinNodeKindSet(x_2, x_1); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +lean_dec(x_3); +x_5 = l_Lean_identKind; +x_6 = l_Lean_Parser_registerBuiltinNodeKindSet(x_5, x_4); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_6, 1); +lean_inc(x_7); +lean_dec(x_6); +x_8 = l_Lean_strLitKind; +x_9 = l_Lean_Parser_registerBuiltinNodeKindSet(x_8, x_7); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec(x_9); +x_11 = l_Lean_numLitKind; +x_12 = l_Lean_Parser_registerBuiltinNodeKindSet(x_11, x_10); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = l_Lean_charLitKind; +x_15 = l_Lean_Parser_registerBuiltinNodeKindSet(x_14, x_13); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +lean_dec(x_15); +x_17 = l_Lean_nameLitKind; +x_18 = l_Lean_Parser_registerBuiltinNodeKindSet(x_17, x_16); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_18, 0); +lean_dec(x_20); +x_21 = lean_box(0); +lean_ctor_set(x_18, 0, x_21); +return x_18; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_18, 1); +lean_inc(x_22); +lean_dec(x_18); +x_23 = lean_box(0); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +return x_24; +} +} +else +{ +uint8_t x_25; +x_25 = !lean_is_exclusive(x_18); +if (x_25 == 0) +{ +return x_18; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_18, 0); +x_27 = lean_ctor_get(x_18, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_18); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +else +{ +uint8_t x_29; +x_29 = !lean_is_exclusive(x_15); +if (x_29 == 0) +{ +return x_15; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_15, 0); +x_31 = lean_ctor_get(x_15, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_15); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +uint8_t x_33; +x_33 = !lean_is_exclusive(x_12); +if (x_33 == 0) +{ +return x_12; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_12, 0); +x_35 = lean_ctor_get(x_12, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_12); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_9); +if (x_37 == 0) +{ +return x_9; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_9, 0); +x_39 = lean_ctor_get(x_9, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_9); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +else +{ +uint8_t x_41; +x_41 = !lean_is_exclusive(x_6); +if (x_41 == 0) +{ +return x_6; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_6, 0); +x_43 = lean_ctor_get(x_6, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_6); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +return x_44; +} +} +} +else +{ +uint8_t x_45; +x_45 = !lean_is_exclusive(x_3); +if (x_45 == 0) +{ +return x_3; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_3, 0); +x_47 = lean_ctor_get(x_3, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_3); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; +} +} +} +} lean_object* _init_l_Std_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinParserCategories___spec__1() { _start: { @@ -26947,7 +27235,7 @@ x_3 = lean_io_mk_ref(x_2, x_1); return x_3; } } -lean_object* _init_l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1() { _start: { lean_object* x_1; @@ -26955,7 +27243,7 @@ x_1 = lean_mk_string("parser category '"); return x_1; } } -lean_object* _init_l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2() { _start: { lean_object* x_1; @@ -26963,31 +27251,31 @@ x_1 = lean_mk_string("' has already been defined"); return x_1; } } -lean_object* l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(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; lean_object* x_7; lean_object* x_8; x_2 = l_Lean_Name_toString___closed__1; x_3 = l_Lean_Name_toStringWithSep___main(x_2, x_1); -x_4 = l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__1; +x_4 = l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1; x_5 = lean_string_append(x_4, x_3); lean_dec(x_3); -x_6 = l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__2; +x_6 = l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2; x_7 = lean_string_append(x_5, x_6); x_8 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_8, 0, x_7); return x_8; } } -lean_object* l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg), 1, 0); return x_2; } } -uint8_t l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { +uint8_t l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -27047,7 +27335,7 @@ return x_19; } } } -uint8_t l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__1(lean_object* x_1, lean_object* x_2) { +uint8_t l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; uint8_t x_5; @@ -27055,11 +27343,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__2(x_3, x_4, x_2); +x_5 = l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(x_3, x_4, x_2); return x_5; } } -lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(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; uint8_t x_8; @@ -27151,7 +27439,7 @@ return x_29; } } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__6(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -27174,7 +27462,7 @@ x_13 = x_1 - x_12; x_14 = 5; x_15 = x_14 * x_13; x_16 = x_11 >> x_15; -x_17 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(x_6, x_16, x_1, x_9, x_10); +x_17 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_6, x_16, x_1, x_9, x_10); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_add(x_5, x_18); lean_dec(x_5); @@ -27184,7 +27472,7 @@ goto _start; } } } -lean_object* l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_1) == 0) @@ -27297,7 +27585,7 @@ lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; lean_object* x_3 x_35 = lean_ctor_get(x_15, 0); x_36 = x_2 >> x_9; x_37 = x_3 + x_8; -x_38 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(x_35, x_36, x_37, x_4, x_5); +x_38 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_35, x_36, x_37, x_4, x_5); lean_ctor_set(x_15, 0, x_38); x_39 = lean_array_fset(x_17, x_12, x_15); lean_dec(x_12); @@ -27312,7 +27600,7 @@ lean_inc(x_40); lean_dec(x_15); x_41 = x_2 >> x_9; x_42 = x_3 + x_8; -x_43 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(x_40, x_41, x_42, x_4, x_5); +x_43 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_40, x_41, x_42, x_4, x_5); x_44 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_44, 0, x_43); x_45 = lean_array_fset(x_17, x_12, x_44); @@ -27428,7 +27716,7 @@ if (lean_is_exclusive(x_57)) { } x_73 = x_2 >> x_50; x_74 = x_3 + x_49; -x_75 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(x_71, x_73, x_74, x_4, x_5); +x_75 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_71, x_73, x_74, x_4, x_5); if (lean_is_scalar(x_72)) { x_76 = lean_alloc_ctor(1, 1, 0); } else { @@ -27461,7 +27749,7 @@ else { lean_object* x_82; lean_object* x_83; size_t x_84; uint8_t x_85; x_82 = lean_unsigned_to_nat(0u); -x_83 = l_Std_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__5(x_1, x_82, x_4, x_5); +x_83 = l_Std_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(x_1, x_82, x_4, x_5); x_84 = 7; x_85 = x_84 <= x_3; if (x_85 == 0) @@ -27480,7 +27768,7 @@ x_90 = lean_ctor_get(x_83, 1); lean_inc(x_90); lean_dec(x_83); x_91 = l_Std_PersistentHashMap_insertAux___main___rarg___closed__3; -x_92 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__6(x_3, x_89, x_90, x_89, x_82, x_91); +x_92 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(x_3, x_89, x_90, x_89, x_82, x_91); lean_dec(x_90); lean_dec(x_89); return x_92; @@ -27497,7 +27785,7 @@ return x_83; } } } -lean_object* l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -27509,7 +27797,7 @@ x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); x_7 = l_Lean_Name_hash(x_2); x_8 = 1; -x_9 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(x_5, x_7, x_8, x_2, x_3); +x_9 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_5, x_7, x_8, x_2, x_3); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_6, x_10); lean_dec(x_6); @@ -27527,7 +27815,7 @@ lean_inc(x_12); lean_dec(x_1); x_14 = l_Lean_Name_hash(x_2); x_15 = 1; -x_16 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(x_12, x_14, x_15, x_2, x_3); +x_16 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_12, x_14, x_15, x_2, x_3); x_17 = lean_unsigned_to_nat(1u); x_18 = lean_nat_add(x_13, x_17); lean_dec(x_13); @@ -27538,16 +27826,16 @@ return x_19; } } } -lean_object* l___private_Lean_Parser_Parser_13__addParserCategoryCore(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_14__addParserCategoryCore(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_inc(x_1); -x_4 = l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__1(x_1, x_2); +x_4 = l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_1, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_1, x_2, x_3); +x_5 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_3); x_6 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_6, 0, x_5); return x_6; @@ -27557,47 +27845,47 @@ else lean_object* x_7; lean_dec(x_3); lean_dec(x_1); -x_7 = l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg(x_2); +x_7 = l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(x_2); return x_7; } } } -lean_object* l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; uint8_t x_5; lean_object* x_6; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__2(x_1, x_4, x_3); +x_5 = l_Std_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(x_1, x_4, x_3); lean_dec(x_3); x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__1(x_1, x_2); +x_3 = l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_1, x_2); lean_dec(x_2); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { size_t x_7; lean_object* x_8; x_7 = lean_unbox_usize(x_1); lean_dec(x_1); -x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__6(x_7, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(x_7, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -27605,11 +27893,11 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__4(x_1, x_6, x_7, x_4, x_5); +x_8 = l_Std_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_1, x_6, x_7, x_4, x_5); return x_8; } } -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -27636,7 +27924,7 @@ return x_7; } } } -lean_object* l___private_Lean_Parser_Parser_14__addBuiltinParserCategory(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_15__addBuiltinParserCategory(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -27654,8 +27942,8 @@ x_8 = l_Lean_Parser_PrattParsingTables_inhabited___closed__1; x_9 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_9, 0, x_8); lean_ctor_set_uint8(x_9, sizeof(void*)*1, x_2); -x_10 = l___private_Lean_Parser_Parser_13__addParserCategoryCore(x_6, x_1, x_9); -x_11 = l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(x_10, x_7); +x_10 = l___private_Lean_Parser_Parser_14__addParserCategoryCore(x_6, x_1, x_9); +x_11 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_10, x_7); lean_dec(x_10); if (lean_obj_tag(x_11) == 0) { @@ -27716,22 +28004,22 @@ return x_22; } } } -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(x_1, x_2); +x_3 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Lean_Parser_Parser_14__addBuiltinParserCategory___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_15__addBuiltinParserCategory___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Lean_Parser_Parser_14__addBuiltinParserCategory(x_1, x_4, x_3); +x_5 = l___private_Lean_Parser_Parser_15__addBuiltinParserCategory(x_1, x_4, x_3); return x_5; } } @@ -27759,7 +28047,7 @@ x_1 = l_Lean_Parser_ParserExtensionState_inhabited___closed__1; return x_1; } } -lean_object* l___private_Lean_Parser_Parser_15__ParserExtension_mkInitial(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_16__ParserExtension_mkInitial(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -27895,7 +28183,7 @@ return x_32; } } } -lean_object* _init_l___private_Lean_Parser_Parser_16__addTokenConfig___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_17__addTokenConfig___closed__1() { _start: { lean_object* x_1; @@ -27903,17 +28191,17 @@ x_1 = lean_mk_string("invalid empty symbol"); return x_1; } } -lean_object* _init_l___private_Lean_Parser_Parser_16__addTokenConfig___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_17__addTokenConfig___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Parser_16__addTokenConfig___closed__1; +x_1 = l___private_Lean_Parser_Parser_17__addTokenConfig___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Lean_Parser_Parser_16__addTokenConfig(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_17__addTokenConfig(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -27950,7 +28238,7 @@ else lean_object* x_10; lean_dec(x_2); lean_dec(x_1); -x_10 = l___private_Lean_Parser_Parser_16__addTokenConfig___closed__2; +x_10 = l___private_Lean_Parser_Parser_17__addTokenConfig___closed__2; return x_10; } } @@ -28363,7 +28651,7 @@ x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_4); lean_ctor_set(x_13, 1, x_12); lean_ctor_set(x_10, 1, x_13); -x_14 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_1, x_2, x_7); +x_14 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); x_15 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_15, 0, x_14); return x_15; @@ -28389,7 +28677,7 @@ lean_ctor_set(x_21, 1, x_20); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_19); lean_ctor_set(x_7, 0, x_21); -x_22 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_1, x_2, x_7); +x_22 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); x_23 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_23, 0, x_22); return x_23; @@ -28435,7 +28723,7 @@ lean_ctor_set(x_32, 3, x_29); x_33 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_33, 0, x_32); lean_ctor_set_uint8(x_33, sizeof(void*)*1, x_25); -x_34 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_1, x_2, x_33); +x_34 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_33); x_35 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_35, 0, x_34); return x_35; @@ -28453,7 +28741,7 @@ x_40 = lean_ctor_get(x_7, 0); x_41 = l_List_eraseDups___at_Lean_Parser_addLeadingParser___spec__5(x_38); x_42 = l_List_foldl___main___at_Lean_Parser_addLeadingParser___spec__7(x_4, x_40, x_41); lean_ctor_set(x_7, 0, x_42); -x_43 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_1, x_2, x_7); +x_43 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); x_44 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_44, 0, x_43); return x_44; @@ -28470,7 +28758,7 @@ x_48 = l_List_foldl___main___at_Lean_Parser_addLeadingParser___spec__7(x_4, x_45 x_49 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_49, 0, x_48); lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_46); -x_50 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_1, x_2, x_49); +x_50 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_49); x_51 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_51, 0, x_50); return x_51; @@ -28519,7 +28807,7 @@ lean_dec(x_3); return x_5; } } -lean_object* l_List_foldl___main___at___private_Lean_Parser_Parser_17__addTrailingParserAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Parser_Parser_18__addTrailingParserAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -28572,7 +28860,7 @@ goto _start; } } } -lean_object* l___private_Lean_Parser_Parser_17__addTrailingParserAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_18__addTrailingParserAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_14; lean_object* x_19; lean_object* x_20; @@ -28652,7 +28940,7 @@ block_18: lean_object* x_15; lean_object* x_16; lean_object* x_17; x_15 = l_List_map___main___at_Lean_Parser_addLeadingParser___spec__4(x_14); x_16 = l_List_eraseDups___at_Lean_Parser_addLeadingParser___spec__5(x_15); -x_17 = l_List_foldl___main___at___private_Lean_Parser_Parser_17__addTrailingParserAux___spec__1(x_2, x_1, x_16); +x_17 = l_List_foldl___main___at___private_Lean_Parser_Parser_18__addTrailingParserAux___spec__1(x_2, x_1, x_16); return x_17; } } @@ -28682,9 +28970,9 @@ if (x_7 == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_8 = lean_ctor_get(x_6, 0); -x_9 = l___private_Lean_Parser_Parser_17__addTrailingParserAux(x_8, x_3); +x_9 = l___private_Lean_Parser_Parser_18__addTrailingParserAux(x_8, x_3); lean_ctor_set(x_6, 0, x_9); -x_10 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_1, x_2, x_6); +x_10 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_6); x_11 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_11, 0, x_10); return x_11; @@ -28696,11 +28984,11 @@ x_12 = lean_ctor_get(x_6, 0); x_13 = lean_ctor_get_uint8(x_6, sizeof(void*)*1); lean_inc(x_12); lean_dec(x_6); -x_14 = l___private_Lean_Parser_Parser_17__addTrailingParserAux(x_12, x_3); +x_14 = l___private_Lean_Parser_Parser_18__addTrailingParserAux(x_12, x_3); x_15 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_15, 0, x_14); lean_ctor_set_uint8(x_15, sizeof(void*)*1, x_13); -x_16 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_1, x_2, x_15); +x_16 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_15); x_17 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_17, 0, x_16); return x_17; @@ -28754,7 +29042,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_2, 1); lean_inc(x_5); lean_dec(x_2); -x_6 = l___private_Lean_Parser_Parser_16__addTokenConfig(x_1, x_4); +x_6 = l___private_Lean_Parser_Parser_17__addTokenConfig(x_1, x_4); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -28801,7 +29089,7 @@ x_6 = l_List_foldlM___main___at_Lean_Parser_addParserTokens___spec__1(x_1, x_5); return x_6; } } -lean_object* _init_l___private_Lean_Parser_Parser_18__updateBuiltinTokens___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_19__updateBuiltinTokens___closed__1() { _start: { lean_object* x_1; @@ -28809,7 +29097,7 @@ x_1 = lean_mk_string("invalid builtin parser '"); return x_1; } } -lean_object* l___private_Lean_Parser_Parser_18__updateBuiltinTokens(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_19__updateBuiltinTokens(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; @@ -28834,7 +29122,7 @@ lean_inc(x_11); lean_dec(x_10); x_12 = l_Lean_Name_toString___closed__1; x_13 = l_Lean_Name_toStringWithSep___main(x_12, x_2); -x_14 = l___private_Lean_Parser_Parser_18__updateBuiltinTokens___closed__1; +x_14 = l___private_Lean_Parser_Parser_19__updateBuiltinTokens___closed__1; x_15 = lean_string_append(x_14, x_13); lean_dec(x_13); x_16 = l_Lean_registerTagAttribute___lambda__4___closed__4; @@ -28876,7 +29164,7 @@ lean_inc(x_25); lean_dec(x_24); x_26 = l_Lean_Name_toString___closed__1; x_27 = l_Lean_Name_toStringWithSep___main(x_26, x_2); -x_28 = l___private_Lean_Parser_Parser_18__updateBuiltinTokens___closed__1; +x_28 = l___private_Lean_Parser_Parser_19__updateBuiltinTokens___closed__1; x_29 = lean_string_append(x_28, x_27); lean_dec(x_27); x_30 = l_Lean_registerTagAttribute___lambda__4___closed__4; @@ -28944,7 +29232,7 @@ lean_inc(x_9); lean_dec(x_7); lean_inc(x_4); x_10 = l_Lean_Parser_addParser(x_8, x_1, x_2, x_3, x_4); -x_11 = l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(x_10, x_9); +x_11 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_10, x_9); lean_dec(x_10); if (lean_obj_tag(x_11) == 0) { @@ -28991,7 +29279,7 @@ lean_object* x_26; lean_object* x_27; x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); lean_dec(x_25); -x_27 = l___private_Lean_Parser_Parser_18__updateBuiltinTokens(x_14, x_2, x_26); +x_27 = l___private_Lean_Parser_Parser_19__updateBuiltinTokens(x_14, x_2, x_26); return x_27; } else @@ -29177,7 +29465,7 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_1, x_2, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Lean_Parser_Parser_19__ParserExtension_addEntry(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_20__ParserExtension_addEntry(lean_object* x_1, lean_object* x_2) { _start: { switch (lean_obj_tag(x_2)) { @@ -29196,7 +29484,7 @@ x_6 = lean_ctor_get(x_1, 1); x_7 = lean_ctor_get(x_1, 2); x_8 = lean_ctor_get(x_1, 3); lean_inc(x_3); -x_9 = l___private_Lean_Parser_Parser_16__addTokenConfig(x_5, x_3); +x_9 = l___private_Lean_Parser_Parser_17__addTokenConfig(x_5, x_3); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; @@ -29239,7 +29527,7 @@ lean_inc(x_16); lean_inc(x_15); lean_dec(x_1); lean_inc(x_3); -x_19 = l___private_Lean_Parser_Parser_16__addTokenConfig(x_15, x_3); +x_19 = l___private_Lean_Parser_Parser_17__addTokenConfig(x_15, x_3); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; @@ -29340,7 +29628,7 @@ lean_inc(x_47); x_48 = lean_ctor_get(x_1, 3); lean_inc(x_48); lean_inc(x_47); -x_49 = l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__1(x_47, x_43); +x_49 = l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_47, x_43); if (x_49 == 0) { uint8_t x_50; @@ -29361,7 +29649,7 @@ x_56 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_56, 0, x_55); lean_ctor_set_uint8(x_56, sizeof(void*)*1, x_44); lean_inc(x_43); -x_57 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_47, x_43, x_56); +x_57 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_47, x_43, x_56); x_58 = lean_alloc_ctor(2, 1, 1); lean_ctor_set(x_58, 0, x_43); lean_ctor_set_uint8(x_58, sizeof(void*)*1, x_44); @@ -29381,7 +29669,7 @@ x_61 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_61, 0, x_60); lean_ctor_set_uint8(x_61, sizeof(void*)*1, x_44); lean_inc(x_43); -x_62 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__3(x_47, x_43, x_61); +x_62 = l_Std_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_47, x_43, x_61); x_63 = lean_alloc_ctor(2, 1, 1); lean_ctor_set(x_63, 0, x_43); lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_44); @@ -31460,7 +31748,7 @@ lean_dec(x_2); return x_5; } } -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -31487,7 +31775,7 @@ return x_7; } } } -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -31514,7 +31802,7 @@ return x_7; } } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -31553,8 +31841,8 @@ x_15 = lean_ctor_get(x_5, 0); x_16 = lean_ctor_get(x_5, 1); x_17 = lean_ctor_get(x_5, 2); x_18 = lean_ctor_get(x_5, 3); -x_19 = l___private_Lean_Parser_Parser_16__addTokenConfig(x_15, x_13); -x_20 = l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__1(x_19, x_6); +x_19 = l___private_Lean_Parser_Parser_17__addTokenConfig(x_15, x_13); +x_20 = l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__1(x_19, x_6); lean_dec(x_19); if (lean_obj_tag(x_20) == 0) { @@ -31610,8 +31898,8 @@ lean_inc(x_30); lean_inc(x_29); lean_inc(x_28); lean_dec(x_5); -x_32 = l___private_Lean_Parser_Parser_16__addTokenConfig(x_28, x_13); -x_33 = l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__1(x_32, x_6); +x_32 = l___private_Lean_Parser_Parser_17__addTokenConfig(x_28, x_13); +x_33 = l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__1(x_32, x_6); lean_dec(x_32); if (lean_obj_tag(x_33) == 0) { @@ -31722,8 +32010,8 @@ x_63 = l_Lean_Parser_PrattParsingTables_inhabited___closed__1; x_64 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_64, 0, x_63); lean_ctor_set_uint8(x_64, sizeof(void*)*1, x_57); -x_65 = l___private_Lean_Parser_Parser_13__addParserCategoryCore(x_61, x_56, x_64); -x_66 = l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(x_65, x_6); +x_65 = l___private_Lean_Parser_Parser_14__addParserCategoryCore(x_61, x_56, x_64); +x_66 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_65, x_6); lean_dec(x_65); if (lean_obj_tag(x_66) == 0) { @@ -31783,8 +32071,8 @@ x_78 = l_Lean_Parser_PrattParsingTables_inhabited___closed__1; x_79 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_79, 0, x_78); lean_ctor_set_uint8(x_79, sizeof(void*)*1, x_57); -x_80 = l___private_Lean_Parser_Parser_13__addParserCategoryCore(x_76, x_56, x_79); -x_81 = l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(x_80, x_6); +x_80 = l___private_Lean_Parser_Parser_14__addParserCategoryCore(x_76, x_56, x_79); +x_81 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_80, x_6); lean_dec(x_80); if (lean_obj_tag(x_81) == 0) { @@ -31855,7 +32143,7 @@ lean_inc(x_91); lean_inc(x_95); lean_inc(x_1); x_97 = l_Lean_Parser_mkParserOfConstant(x_1, x_95, x_91); -x_98 = l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__2(x_97, x_6); +x_98 = l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__2(x_97, x_6); lean_dec(x_97); if (lean_obj_tag(x_98) == 0) { @@ -31873,7 +32161,7 @@ lean_dec(x_99); x_103 = lean_unbox(x_101); lean_dec(x_101); x_104 = l_Lean_Parser_addParser(x_95, x_90, x_91, x_103, x_102); -x_105 = l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(x_104, x_100); +x_105 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_104, x_100); lean_dec(x_104); if (lean_obj_tag(x_105) == 0) { @@ -32004,7 +32292,7 @@ lean_inc(x_91); lean_inc(x_125); lean_inc(x_1); x_127 = l_Lean_Parser_mkParserOfConstant(x_1, x_125, x_91); -x_128 = l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__2(x_127, x_6); +x_128 = l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__2(x_127, x_6); lean_dec(x_127); if (lean_obj_tag(x_128) == 0) { @@ -32022,7 +32310,7 @@ lean_dec(x_129); x_133 = lean_unbox(x_131); lean_dec(x_131); x_134 = l_Lean_Parser_addParser(x_125, x_90, x_91, x_133, x_132); -x_135 = l_IO_ofExcept___at___private_Lean_Parser_Parser_14__addBuiltinParserCategory___spec__1(x_134, x_130); +x_135 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_134, x_130); lean_dec(x_134); if (lean_obj_tag(x_135) == 0) { @@ -32150,7 +32438,7 @@ return x_153; } } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -32176,7 +32464,7 @@ x_12 = lean_nat_add(x_4, x_11); lean_dec(x_4); x_13 = lean_unsigned_to_nat(0u); lean_inc(x_1); -x_14 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__3(x_1, x_10, x_10, x_13, x_5, x_6); +x_14 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__3(x_1, x_10, x_10, x_13, x_5, x_6); lean_dec(x_10); if (lean_obj_tag(x_14) == 0) { @@ -32218,11 +32506,11 @@ return x_21; } } } -lean_object* l___private_Lean_Parser_Parser_20__ParserExtension_addImported(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_21__ParserExtension_addImported(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Lean_Parser_Parser_15__ParserExtension_mkInitial(x_3); +x_4 = l___private_Lean_Parser_Parser_16__ParserExtension_mkInitial(x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; @@ -32232,7 +32520,7 @@ x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__4(x_1, x_2, x_2, x_7, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__4(x_1, x_2, x_2, x_7, x_5, x_6); return x_8; } else @@ -32260,49 +32548,49 @@ return x_12; } } } -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__1(x_1, x_2); +x_3 = l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_ofExcept___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__2(x_1, x_2); +x_3 = l_IO_ofExcept___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__2(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__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* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__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: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__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* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__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) { _start: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_20__ParserExtension_addImported___spec__4(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_21__ParserExtension_addImported___spec__4(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; } } -lean_object* l___private_Lean_Parser_Parser_20__ParserExtension_addImported___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_21__ParserExtension_addImported___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Lean_Parser_Parser_20__ParserExtension_addImported(x_1, x_2, x_3); +x_4 = l___private_Lean_Parser_Parser_21__ParserExtension_addImported(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -33113,7 +33401,7 @@ lean_object* _init_l_Lean_Parser_mkParserExtension___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_15__ParserExtension_mkInitial), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_16__ParserExtension_mkInitial), 1, 0); return x_1; } } @@ -33121,7 +33409,7 @@ lean_object* _init_l_Lean_Parser_mkParserExtension___closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_20__ParserExtension_addImported___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_21__ParserExtension_addImported___boxed), 3, 0); return x_1; } } @@ -33129,7 +33417,7 @@ lean_object* _init_l_Lean_Parser_mkParserExtension___closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_19__ParserExtension_addEntry), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_20__ParserExtension_addEntry), 2, 0); return x_1; } } @@ -33355,7 +33643,7 @@ x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_1); x_5 = lean_ctor_get(x_4, 2); lean_inc(x_5); lean_dec(x_4); -x_6 = l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_13__addParserCategoryCore___spec__1(x_5, x_2); +x_6 = l_Std_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_5, x_2); return x_6; } } @@ -33391,7 +33679,7 @@ else { lean_object* x_9; lean_dec(x_1); -x_9 = l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg(x_2); +x_9 = l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(x_2); return x_9; } } @@ -33628,7 +33916,7 @@ x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); lean_dec(x_4); lean_inc(x_2); -x_6 = l___private_Lean_Parser_Parser_16__addTokenConfig(x_5, x_2); +x_6 = l___private_Lean_Parser_Parser_17__addTokenConfig(x_5, x_2); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -33811,42 +34099,7 @@ x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); lean_dec(x_4); x_6 = l_Std_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1(x_5, x_2); -if (x_6 == 0) -{ -lean_object* x_7; uint8_t x_8; -x_7 = l_Lean_choiceKind; -x_8 = lean_name_eq(x_2, x_7); -if (x_8 == 0) -{ -lean_object* x_9; uint8_t x_10; -x_9 = l_Lean_identKind; -x_10 = lean_name_eq(x_2, x_9); -if (x_10 == 0) -{ -uint8_t x_11; -x_11 = l_Lean_Parser_isLitKind(x_2); -return x_11; -} -else -{ -uint8_t x_12; -x_12 = 1; -return x_12; -} -} -else -{ -uint8_t x_13; -x_13 = 1; -return x_13; -} -} -else -{ -uint8_t x_14; -x_14 = 1; -return x_14; -} +return x_6; } } lean_object* l_Std_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -34362,7 +34615,7 @@ x_6 = l_Lean_Parser_declareBuiltinParser(x_1, x_5, x_2, x_3, x_4); return x_6; } } -lean_object* _init_l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___closed__1() { _start: { lean_object* x_1; @@ -34370,7 +34623,7 @@ x_1 = lean_mk_string("' (`Parser` or `TrailingParser` expected"); return x_1; } } -lean_object* l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { +lean_object* l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -34663,7 +34916,7 @@ x_20 = l_Lean_Name_toStringWithSep___main(x_19, x_4); x_21 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__1; x_22 = lean_string_append(x_21, x_20); lean_dec(x_20); -x_23 = l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___closed__1; +x_23 = l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___closed__1; x_24 = lean_string_append(x_22, x_23); x_25 = lean_alloc_ctor(18, 1, 0); lean_ctor_set(x_25, 0, x_24); @@ -34696,13 +34949,13 @@ return x_79; } } } -lean_object* l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_6); lean_dec(x_6); -x_9 = l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_8, x_7); +x_9 = l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_8, x_7); lean_dec(x_5); return x_9; } @@ -34721,7 +34974,7 @@ _start: lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_inc(x_2); lean_inc(x_1); -x_5 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___boxed), 7, 2); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___boxed), 7, 2); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); x_6 = l_Lean_Parser_registerBuiltinParserAttribute___closed__1; @@ -34731,7 +34984,7 @@ lean_ctor_set(x_8, 0, x_1); lean_ctor_set(x_8, 1, x_6); lean_ctor_set(x_8, 2, x_5); lean_ctor_set_uint8(x_8, sizeof(void*)*3, x_7); -x_9 = l___private_Lean_Parser_Parser_14__addBuiltinParserCategory(x_2, x_3, x_4); +x_9 = l___private_Lean_Parser_Parser_15__addBuiltinParserCategory(x_2, x_3, x_4); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; @@ -34776,7 +35029,7 @@ x_6 = l_Lean_Parser_registerBuiltinParserAttribute(x_1, x_2, x_5, x_4); return x_6; } } -lean_object* _init_l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1___closed__1() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1___closed__1() { _start: { lean_object* x_1; @@ -34784,7 +35037,7 @@ x_1 = lean_mk_string("invalid parser '"); return x_1; } } -lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_3) == 0) @@ -34814,7 +35067,7 @@ lean_inc(x_9); lean_dec(x_8); x_10 = l_Lean_Name_toString___closed__1; x_11 = l_Lean_Name_toStringWithSep___main(x_10, x_1); -x_12 = l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1___closed__1; +x_12 = l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1___closed__1; x_13 = lean_string_append(x_12, x_11); lean_dec(x_11); x_14 = l_Lean_registerTagAttribute___lambda__4___closed__4; @@ -34841,7 +35094,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -34878,7 +35131,7 @@ lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_7, 0); lean_inc(x_13); lean_dec(x_7); -x_14 = l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__3(x_13, x_4); +x_14 = l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__3(x_13, x_4); lean_dec(x_13); x_3 = x_9; x_4 = x_14; @@ -34893,7 +35146,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -34919,7 +35172,7 @@ goto _start; } } } -lean_object* l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -34927,7 +35180,7 @@ if (lean_obj_tag(x_1) == 0) lean_object* x_3; lean_object* x_4; lean_object* x_5; x_3 = lean_ctor_get(x_1, 0); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__4(x_3, x_3, x_4, x_2); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__4(x_3, x_3, x_4, x_2); return x_5; } else @@ -34935,21 +35188,21 @@ else lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = lean_ctor_get(x_1, 0); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__5(x_6, x_6, x_7, x_2); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__5(x_6, x_6, x_7, x_2); return x_8; } } } -lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_ctor_get(x_1, 0); -x_4 = l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__3(x_3, x_2); +x_4 = l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__3(x_3, x_2); return x_4; } } -lean_object* l___private_Lean_Parser_Parser_22__ParserAttribute_add(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { +lean_object* l___private_Lean_Parser_Parser_23__ParserAttribute_add(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -35002,7 +35255,7 @@ lean_inc(x_20); x_21 = lean_box(0); x_22 = lean_apply_1(x_20, x_21); lean_inc(x_4); -x_23 = l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1(x_4, x_3, x_22, x_7); +x_23 = l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1(x_4, x_3, x_22, x_7); if (lean_obj_tag(x_23) == 0) { uint8_t x_24; @@ -35017,7 +35270,7 @@ lean_inc(x_27); lean_dec(x_19); x_28 = l_Std_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef___spec__1; x_29 = lean_apply_1(x_27, x_28); -x_30 = l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__2(x_29, x_25); +x_30 = l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__2(x_29, x_25); lean_dec(x_29); x_31 = lean_unbox(x_17); lean_inc(x_18); @@ -35071,7 +35324,7 @@ lean_inc(x_41); lean_dec(x_19); x_42 = l_Std_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef___spec__1; x_43 = lean_apply_1(x_41, x_42); -x_44 = l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__2(x_43, x_39); +x_44 = l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__2(x_43, x_39); lean_dec(x_43); x_45 = lean_unbox(x_17); lean_inc(x_18); @@ -35165,51 +35418,51 @@ return x_65; } } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__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_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__4(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__4(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__5___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_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__5(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__5(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__3(x_1, x_2); +x_3 = l_Std_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__3(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__2(x_1, x_2); +x_3 = l_Std_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__2(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Lean_Parser_Parser_22__ParserAttribute_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Parser_Parser_23__ParserAttribute_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_6); lean_dec(x_6); -x_9 = l___private_Lean_Parser_Parser_22__ParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_8, x_7); +x_9 = l___private_Lean_Parser_Parser_23__ParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_8, x_7); lean_dec(x_5); return x_9; } @@ -35218,7 +35471,7 @@ lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__1(lean_object* x_1, _start: { lean_object* x_8; -x_8 = l___private_Lean_Parser_Parser_22__ParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Parser_Parser_23__ParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } @@ -35268,7 +35521,7 @@ x_5 = l_Lean_registerBuiltinAttribute(x_4, x_3); return x_5; } } -lean_object* _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -35276,23 +35529,23 @@ x_1 = lean_mk_string("invalid parser attribute implementation builder arguments" return x_1; } } -lean_object* _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__1; +x_1 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_2 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_2; } else @@ -35310,7 +35563,7 @@ if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_dec(x_3); -x_5 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_5 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_5; } else @@ -35344,7 +35597,7 @@ lean_object* x_12; lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_12 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_12 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_12; } } @@ -35354,7 +35607,7 @@ lean_object* x_13; lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); -x_13 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_13 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_13; } } @@ -35364,13 +35617,13 @@ else lean_object* x_14; lean_dec(x_3); lean_dec(x_1); -x_14 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_14 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_14; } } } } -lean_object* _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__1() { _start: { lean_object* x_1; @@ -35378,30 +35631,30 @@ x_1 = lean_mk_string("parserAttr"); return x_1; } } -lean_object* _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__1; +x_2 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1), 1, 0); return x_1; } } -lean_object* l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__2; -x_3 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__3; +x_2 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__2; +x_3 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__3; x_4 = l_Lean_registerAttributeImplBuilder(x_2, x_3, x_1); return x_4; } @@ -35433,7 +35686,7 @@ lean_ctor_set(x_13, 1, x_12); x_14 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__2; +x_15 = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__2; x_16 = l_Lean_registerAttributeOfBuilder(x_8, x_15, x_14, x_9); return x_16; } @@ -37012,6 +37265,9 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Parser_builtinSyntaxNodeKindSetRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_builtinSyntaxNodeKindSetRef); lean_dec_ref(res); +res = l___private_Lean_Parser_Parser_12__registerAuxiliaryNodeKindSets(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Std_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinParserCategories___spec__1 = _init_l_Std_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinParserCategories___spec__1(); lean_mark_persistent(l_Std_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinParserCategories___spec__1); res = l_Lean_Parser_mkBuiltinParserCategories(lean_io_mk_world()); @@ -37019,22 +37275,22 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Parser_builtinParserCategoriesRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_builtinParserCategoriesRef); lean_dec_ref(res); -l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__1 = _init_l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__1(); -lean_mark_persistent(l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__1); -l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__2 = _init_l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__2(); -lean_mark_persistent(l___private_Lean_Parser_Parser_12__throwParserCategoryAlreadyDefined___rarg___closed__2); +l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1 = _init_l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1); +l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2 = _init_l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2); l_Lean_Parser_ParserExtensionState_inhabited___closed__1 = _init_l_Lean_Parser_ParserExtensionState_inhabited___closed__1(); lean_mark_persistent(l_Lean_Parser_ParserExtensionState_inhabited___closed__1); l_Lean_Parser_ParserExtensionState_inhabited = _init_l_Lean_Parser_ParserExtensionState_inhabited(); lean_mark_persistent(l_Lean_Parser_ParserExtensionState_inhabited); -l___private_Lean_Parser_Parser_16__addTokenConfig___closed__1 = _init_l___private_Lean_Parser_Parser_16__addTokenConfig___closed__1(); -lean_mark_persistent(l___private_Lean_Parser_Parser_16__addTokenConfig___closed__1); -l___private_Lean_Parser_Parser_16__addTokenConfig___closed__2 = _init_l___private_Lean_Parser_Parser_16__addTokenConfig___closed__2(); -lean_mark_persistent(l___private_Lean_Parser_Parser_16__addTokenConfig___closed__2); +l___private_Lean_Parser_Parser_17__addTokenConfig___closed__1 = _init_l___private_Lean_Parser_Parser_17__addTokenConfig___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_17__addTokenConfig___closed__1); +l___private_Lean_Parser_Parser_17__addTokenConfig___closed__2 = _init_l___private_Lean_Parser_Parser_17__addTokenConfig___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_17__addTokenConfig___closed__2); l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1 = _init_l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1(); lean_mark_persistent(l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1); -l___private_Lean_Parser_Parser_18__updateBuiltinTokens___closed__1 = _init_l___private_Lean_Parser_Parser_18__updateBuiltinTokens___closed__1(); -lean_mark_persistent(l___private_Lean_Parser_Parser_18__updateBuiltinTokens___closed__1); +l___private_Lean_Parser_Parser_19__updateBuiltinTokens___closed__1 = _init_l___private_Lean_Parser_Parser_19__updateBuiltinTokens___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_19__updateBuiltinTokens___closed__1); l_Lean_Parser_mkParserOfConstantUnsafe___closed__1 = _init_l_Lean_Parser_mkParserOfConstantUnsafe___closed__1(); lean_mark_persistent(l_Lean_Parser_mkParserOfConstantUnsafe___closed__1); l_Lean_Parser_mkParserOfConstantUnsafe___closed__2 = _init_l_Lean_Parser_mkParserOfConstantUnsafe___closed__2(); @@ -37113,25 +37369,25 @@ l_Lean_Parser_declareTrailingBuiltinParser___closed__1 = _init_l_Lean_Parser_dec lean_mark_persistent(l_Lean_Parser_declareTrailingBuiltinParser___closed__1); l_Lean_Parser_declareTrailingBuiltinParser___closed__2 = _init_l_Lean_Parser_declareTrailingBuiltinParser___closed__2(); lean_mark_persistent(l_Lean_Parser_declareTrailingBuiltinParser___closed__2); -l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___closed__1 = _init_l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___closed__1(); -lean_mark_persistent(l___private_Lean_Parser_Parser_21__BuiltinParserAttribute_add___closed__1); +l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___closed__1 = _init_l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_22__BuiltinParserAttribute_add___closed__1); l_Lean_Parser_registerBuiltinParserAttribute___closed__1 = _init_l_Lean_Parser_registerBuiltinParserAttribute___closed__1(); lean_mark_persistent(l_Lean_Parser_registerBuiltinParserAttribute___closed__1); -l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1___closed__1 = _init_l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1___closed__1(); -lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Parser_Parser_22__ParserAttribute_add___spec__1___closed__1); +l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1___closed__1 = _init_l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1___closed__1(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Parser_Parser_23__ParserAttribute_add___spec__1___closed__1); l_Lean_Parser_mkParserAttributeImpl___closed__1 = _init_l_Lean_Parser_mkParserAttributeImpl___closed__1(); lean_mark_persistent(l_Lean_Parser_mkParserAttributeImpl___closed__1); -l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__1 = _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__1(); -lean_mark_persistent(l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__1); -l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2 = _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2(); -lean_mark_persistent(l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___lambda__1___closed__2); -l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__1 = _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__1(); -lean_mark_persistent(l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__1); -l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__2 = _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__2(); -lean_mark_persistent(l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__2); -l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__3 = _init_l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__3(); -lean_mark_persistent(l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder___closed__3); -res = l___private_Lean_Parser_Parser_23__registerParserAttributeImplBuilder(lean_io_mk_world()); +l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__1 = _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__1); +l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2 = _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___lambda__1___closed__2); +l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__1 = _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__1); +l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__2 = _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__2); +l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__3 = _init_l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder___closed__3); +res = l___private_Lean_Parser_Parser_24__registerParserAttributeImplBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_regBuiltinTermParserAttr___closed__1 = _init_l_Lean_Parser_regBuiltinTermParserAttr___closed__1(); diff --git a/stage0/stdlib/Lean/Parser/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c index 80f8ef9227..42a43f7e01 100644 --- a/stage0/stdlib/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -21,40 +21,56 @@ extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__6; lean_object* l_Lean_Parser_Syntax_cat___closed__6; lean_object* l_Lean_Parser_categoryParserOfStack___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_orelse___closed__5; +lean_object* l_Lean_Parser_Command_syntax_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__3; lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_postfix___closed__6; +lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Command_notationItem_parenthesizer___closed__1; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_str___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notationItem___closed__4; +lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Command_prefix_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_infixl___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Syntax_char; lean_object* l_Lean_Parser_Command_macro__rules___closed__7; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__6; extern lean_object* l_Lean_Parser_manyAux___main___closed__1; lean_object* l_Lean_Parser_Command_elabTail___closed__2; +lean_object* l_Lean_Parser_Command_macroTail_parenthesizer___closed__2; lean_object* l_Lean_Parser_Syntax_try___closed__5; lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_notation___closed__7; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__3; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__1; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_elabTail_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_mixfixKind___closed__2; +lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__3; lean_object* l_Lean_Parser_Syntax_many1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notation___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_syntaxParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__5; lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__2; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailCommand___closed__7; lean_object* l_Lean_Parser_Command_mixfix; lean_object* l_Lean_Parser_Command_mixfixSymbol___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Syntax_str___closed__6; lean_object* l_Lean_Parser_Syntax_lookahead___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_num___closed__5; +lean_object* l_Lean_Parser_Syntax_ident_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_try___closed__3; lean_object* l_Lean_Parser_Syntax_many1___elambda__1___closed__1; @@ -65,38 +81,56 @@ lean_object* l_Lean_Parser_Syntax_num___closed__6; extern lean_object* l_Lean_Parser_Tactic_orelse___closed__1; lean_object* l_Lean_Parser_Syntax_paren___closed__6; lean_object* l_Lean_Parser_Command_syntax___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macroTail___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__1; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_stxQuot___elambda__1___spec__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_notationItem_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailDefault___closed__8; lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__9; lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__2; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__1; +lean_object* l_Lean_Parser_Command_infixl_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_reserve_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_infixr___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Command_elab__rules(lean_object*); lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macroHead; lean_object* l_Lean_Parser_Syntax_paren___closed__4; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__10; lean_object* l_Lean_Parser_Syntax_many1___elambda__1___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat___closed__4; +lean_object* l_Lean_Parser_Command_macroTail_parenthesizer___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_cat(lean_object*); +lean_object* l_Lean_Parser_Syntax_sepBy1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_infixr_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__5; lean_object* l_Lean_Parser_Command_elab___closed__6; +lean_object* l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macro___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_sepBy___closed__3; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__6; lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__8; +lean_object* l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__5; lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__4; +lean_object* l_Lean_Parser_Command_macro_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_precedenceLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__2; lean_object* l_Lean_Parser_Syntax_many___closed__1; lean_object* l_Lean_Parser_Syntax_many___closed__2; @@ -106,13 +140,23 @@ lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_identPrec___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_optPrecedence___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_elab_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_macroArg_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__4; +lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Syntax_many(lean_object*); lean_object* l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_postfix_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailTactic___closed__3; lean_object* l_Lean_Parser_Command_prefix; +lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_infixr___closed__1; +lean_object* l_Lean_Parser_Command_macroArg_parenthesizer___closed__3; +extern lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_elab__rules___closed__7; +lean_object* l_Lean_Parser_Command_macroTail_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_ident; lean_object* l_Lean_Parser_Syntax_lookahead___closed__5; lean_object* l_Lean_Parser_precedence___elambda__1___closed__2; @@ -126,82 +170,119 @@ lean_object* l_Lean_Parser_Command_reserve___elambda__1(lean_object*, lean_objec lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_try(lean_object*); lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_identPrec_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__3; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__1; extern lean_object* l_Lean_Parser_darrow; +lean_object* l_Lean_Parser_Command_reserve_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_str___closed__5; +lean_object* l_Lean_Parser_Syntax_char_parenthesizer___closed__1; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_macroTailCommand___closed__5; +lean_object* l_Lean_Parser_Command_elabTail_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__7; +lean_object* l_Lean_Parser_Syntax_atom_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroArgSimple___closed__1; lean_object* l_Lean_Parser_Syntax_try___closed__7; lean_object* l_Lean_Parser_precedenceLit___closed__2; +lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__5; lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mixfix___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat___closed__2; lean_object* l_Lean_Parser_Command_notation___closed__10; +lean_object* l_Lean_Parser_Command_identPrec_parenthesizer___closed__2; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__1; lean_object* l_Lean_Parser_Command_macroHead___closed__2; lean_object* lean_array_get_size(lean_object*); +lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Syntax_paren_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__9; lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_infixr; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__6; lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__7; +lean_object* l_Lean_Parser_Command_infixl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_macroTailDefault___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_maxSymbol___closed__6; +lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elab___closed__3; +lean_object* l_Lean_Parser_Command_notationItem_parenthesizer___closed__4; lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__3; lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__2; lean_object* l_Lean_Parser_maxSymbol___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_reserve_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macroHead___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy___closed__8; lean_object* l_Lean_Parser_precedence___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__1; lean_object* l_Lean_Parser_optPrecedence; +lean_object* l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_elab__rules___closed__10; lean_object* l_Lean_Parser_Command_elab___closed__5; +lean_object* l_Lean_Parser_Command_postfix_parenthesizer___closed__1; extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l_Lean_Parser_ParserState_mkErrorsAt(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_infixl___closed__4; lean_object* l_Lean_Parser_Syntax_many___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_optKind_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_paren___closed__3; lean_object* l_Lean_Parser_Command_elabArg; lean_object* l_Lean_Parser_Command_macro__rules___closed__8; +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_infix; +lean_object* l_Lean_Parser_Command_identPrec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_optKind___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__2; lean_object* l_Lean_Parser_quotedSymbolFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Command_reserve(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroArgSimple___closed__8; lean_object* l_Lean_Parser_Command_identPrec; lean_object* l_Lean_Parser_Command_infixl___closed__2; lean_object* l_Lean_Parser_Syntax_many1___closed__4; lean_object* l_Lean_Parser_precedence___elambda__1___closed__1; +lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_syntaxAbbrev; lean_object* l_Lean_Parser_Syntax_char___closed__2; lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__8; lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__8; lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_unquotedSymbol_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Parser_Command_elab__rules___closed__5; lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__5; lean_object* l_Lean_Parser_Syntax_sepBy___closed__4; lean_object* l_Lean_Parser_Command_macro___closed__5; lean_object* l_Lean_Parser_Syntax_str___closed__4; +lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_mixfix___closed__4; lean_object* l_Lean_Parser_Command_syntax; +lean_object* l_Lean_Parser_Command_infixl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_syntax___closed__5; lean_object* l_Lean_Parser_Syntax_lookahead___closed__6; lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__6; +extern lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer(lean_object*); lean_object* l_Lean_Parser_identEqFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_mixfix___closed__8; @@ -211,6 +292,9 @@ extern lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_ident___closed__3; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macro__rules___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer___closed__1; +extern lean_object* l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elab; lean_object* l_Lean_Parser_Command_elab___closed__7; lean_object* l_Lean_Parser_Command_identPrec___closed__5; @@ -219,8 +303,11 @@ lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_macroTailDefault___closed__5; lean_object* l_Lean_Parser_Command_notation___closed__6; lean_object* l_Lean_Parser_Command_mixfix___closed__9; +lean_object* l_Lean_Parser_Syntax_try_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macroArg___closed__3; +lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macroTail___closed__2; +extern lean_object* l_Lean_Parser_Level_num_parenthesizer___closed__2; lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__5; lean_object* l_Lean_Parser_Syntax_paren___closed__1; @@ -232,13 +319,18 @@ lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_elabTail___closed__8; extern lean_object* l_Lean_Parser_mkAntiquot___closed__15; lean_object* l_Lean_Parser_Command_prefix___closed__4; +lean_object* l_Lean_Parser_Syntax_try_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__8; lean_object* l_Lean_Parser_Command_infixl___closed__3; lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__1; +extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; lean_object* l_Lean_Parser_Command_macro___closed__3; lean_object* l_Lean_Parser_Syntax_cat___closed__1; +lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_orelse(lean_object*); +lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_macroArg___closed__1; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__3; @@ -247,6 +339,7 @@ lean_object* l_Lean_Parser_Command_macroTailCommand___closed__6; lean_object* l_Lean_Parser_Command_macroTailDefault___closed__7; lean_object* l_Lean_Parser_Command_infixl; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Syntax_num_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notation___closed__3; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_elabHead; @@ -256,36 +349,49 @@ lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__5; lean_object* l_Lean_Parser_precedence___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__5; lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_macro__rules___closed__1; lean_object* l_Lean_Parser_Syntax_num___closed__3; +lean_object* l_Lean_Parser_Command_infix_parenthesizer___closed__2; lean_object* l_Lean_Parser_Syntax_try___closed__4; lean_object* l_Lean_Parser_Command_elabTail___closed__4; +lean_object* l_Lean_Parser_Command_reserve_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_postfix___closed__1; lean_object* l_Lean_Parser_manyAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailCommand___closed__3; lean_object* l_Lean_Parser_Command_elabTail___closed__1; extern lean_object* l_Lean_PrettyPrinter_parenthesizeCommand___closed__2; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer___closed__1; lean_object* l_Lean_Parser_nonReservedSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_elabTail_parenthesizer___closed__2; lean_object* l_Lean_Parser_Syntax_many1___closed__1; lean_object* l_Lean_Parser_maxSymbol___closed__2; lean_object* l_Lean_Parser_Command_macroHead___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Syntax_lookahead(lean_object*); +lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__7; extern lean_object* l_Lean_Nat_HasQuote___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_notation___closed__5; lean_object* l_Lean_Parser_Syntax_try___closed__8; +lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__6; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_elabTail_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_infix___closed__1; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Command_macro___elambda__1___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_many1___closed__2; lean_object* l_Lean_Parser_Syntax_sepBy1; extern lean_object* l_Lean_Parser_quotedSymbol; lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1; +lean_object* l_Lean_Parser_syntaxParser_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_sepBy1___closed__2; lean_object* l_Lean_Parser_precedence___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__4; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; lean_object* l_Lean_Parser_Command_postfix; @@ -293,10 +399,13 @@ lean_object* l_Lean_Parser_Command_infix___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__2; lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_infixr___closed__6; +lean_object* l_Lean_Parser_Syntax_orelse_parenthesizer___closed__2; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__8; +lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_macro__rules___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Command_macro(lean_object*); lean_object* l_Lean_Parser_Command_prefix___closed__1; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__2; @@ -304,14 +413,18 @@ lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); lean_object* l_Lean_Parser_Syntax_str___closed__2; lean_object* l_Lean_Parser_Syntax_optional___closed__4; lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notationItem___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_syntaxCat___closed__7; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntax___closed__3; lean_object* l_Lean_Parser_Syntax_orelse___closed__3; lean_object* l_Lean_Parser_Syntax_sepBy1___closed__4; lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__6; lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_precedenceLit; +lean_object* l_Lean_Parser_Syntax_lookahead_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Syntax_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_try___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notation; lean_object* l___regBuiltinParser_Lean_Parser_Command_notation(lean_object*); @@ -320,38 +433,54 @@ lean_object* l_Lean_Parser_Command_elab__rules___closed__6; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_macro___closed__7; lean_object* l_Lean_Parser_Command_elab___closed__10; +lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elabTail___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Command_macro__rules(lean_object*); +lean_object* l_Lean_Parser_optPrecedence_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_nonEmptySeq___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__3; lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_notation_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elab__rules; lean_object* l_Lean_Parser_Command_macroTailCommand___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Command_notation_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_postfix___closed__5; lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__3; extern lean_object* l_Lean_String_HasQuote___closed__1; lean_object* l_Lean_Parser_Command_macroArgSimple; uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntax___closed__7; +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_mixfixSymbol___closed__1; lean_object* l_Lean_Parser_Syntax_str___closed__1; lean_object* l_Lean_Parser_optionaInfo(lean_object*); lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__2; +lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__8; lean_object* l_Lean_Parser_Syntax_paren___closed__5; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; +lean_object* l_Lean_Parser_precedence_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__3; lean_object* l_Lean_Parser_Syntax_optional___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_identPrec___closed__3; lean_object* l_Lean_Parser_Command_notationItem___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_num___closed__2; lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_infixr_parenthesizer___closed__2; lean_object* l_Lean_Parser_Syntax_num___closed__1; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__7; +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__6; lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_syntax___closed__10; @@ -360,35 +489,47 @@ lean_object* l_Lean_Parser_Syntax_num___closed__4; lean_object* l_Lean_Parser_categoryParserOfStack(lean_object*, lean_object*); extern lean_object* l_Char_HasRepr___closed__1; lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__3; +lean_object* l_Lean_Parser_precedence_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_infixl___closed__6; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__6; lean_object* l_Lean_Parser_checkNoWsBeforeFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat; +lean_object* l_Lean_Parser_Syntax_char_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__6; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_char___closed__4; lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__3; lean_object* l_Lean_Parser_Syntax_paren___closed__8; lean_object* l_Lean_Parser_Syntax_lookahead___closed__3; lean_object* l_Lean_Parser_Command_notationItem___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_syntaxCat_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mixfixSymbol___closed__2; lean_object* l_Lean_Parser_Command_macroTailTactic; +lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__6; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__3; lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_stxQuot___closed__2; lean_object* l_Lean_Parser_Command_infix___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_precedence_parenthesizer___closed__3; extern lean_object* l_Lean_Parser_maxPrec; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_str(lean_object*); lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_ident___closed__6; +lean_object* l_Lean_Parser_Command_elab_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macro___closed__10; +lean_object* l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_infixr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__2; +lean_object* l_Lean_Parser_Syntax_orelse_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_mixfixKind___closed__1; lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__3; @@ -397,15 +538,24 @@ lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macroTailDefault___closed__3; lean_object* l_Lean_Parser_Syntax_orelse___closed__6; extern lean_object* l_Lean_Parser_Term_le___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_macroTail_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_reserve_parenthesizer___closed__5; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; extern lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__3; lean_object* l_Lean_Parser_Syntax_char___closed__1; lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__6; +lean_object* l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_reserve___closed__8; lean_object* l_Lean_Parser_Command_infixr___closed__5; +lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_infix___closed__6; lean_object* l_Lean_Parser_Command_infixr___closed__3; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_lookahead___closed__7; lean_object* l_Lean_Parser_Command_macroTail___closed__4; @@ -415,11 +565,17 @@ lean_object* l_Lean_Parser_Command_elab___elambda__1(lean_object*, lean_object*) lean_object* l_Lean_Parser_Command_mixfixSymbol___closed__3; lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__2; +lean_object* l_Lean_Parser_precedence_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__5; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_prefix___closed__2; +lean_object* l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Syntax_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_num___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Syntax_paren___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notationItem___closed__2; @@ -427,14 +583,22 @@ lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_reserve___closed__1; lean_object* l_Lean_Parser_maxSymbol___closed__3; lean_object* l_Lean_Parser_Command_reserve___closed__2; +lean_object* l_Lean_Parser_precedence_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elabTail; lean_object* l_Lean_Parser_Command_elabTail___closed__6; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__5; +extern lean_object* l_Lean_Parser_Term_str_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__8; lean_object* l_Lean_Parser_Syntax_sepBy___closed__2; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_reserve; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Syntax_sepBy___closed__1; lean_object* l_Lean_Parser_Command_mixfixKind; lean_object* l_Lean_Parser_Syntax_ident___closed__2; @@ -444,49 +608,71 @@ lean_object* l___regBuiltinParser_Lean_Parser_Command_syntaxCat(lean_object*); lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__5; lean_object* l_Lean_Parser_Syntax_many___closed__3; lean_object* l_Lean_Parser_Syntax_optional___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__4; lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__6; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; lean_object* l_Lean_Parser_maxSymbol___closed__5; lean_object* l_Lean_Parser_Command_macro___closed__1; lean_object* l_Lean_Parser_Command_mixfix___closed__1; lean_object* l_Lean_Parser_Syntax_atom___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_sepBy(lean_object*); lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_atom; lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__2; extern lean_object* l_Lean_Parser_mkAntiquot___closed__7; +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_macroTailCommand___closed__1; lean_object* l_Lean_Parser_Command_identPrec___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_syntax___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__2; lean_object* l_Lean_Parser_precedence___closed__3; extern lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_notationItem___closed__1; lean_object* l_Lean_Parser_Command_reserve___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_paren(lean_object*); +lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__2; +lean_object* l_Lean_Parser_Syntax_num_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_reserve___closed__9; lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__4; +extern lean_object* l_Lean_Parser_Level_ident_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elab__rules___closed__1; +lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_postfix___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1; lean_object* l_Lean_Parser_precedence; +lean_object* l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_reserve_parenthesizer___closed__4; lean_object* l_Lean_Parser_precedenceLit___closed__3; lean_object* l_Lean_Parser_Syntax_optional; lean_object* l_Lean_Parser_Syntax_atom___closed__1; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__4; +lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Syntax_num_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_mixfix___closed__2; lean_object* l_Lean_Parser_Command_syntaxCat___closed__6; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_mixfix___closed__5; +lean_object* l_Lean_Parser_Syntax_cat_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__3; lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Syntax_sepBy1(lean_object*); lean_object* l_Lean_Parser_unquotedSymbolFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__4; @@ -497,42 +683,57 @@ lean_object* l_Lean_Parser_maxSymbol___closed__1; extern lean_object* l_Lean_Parser_numLit; lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__2; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__4; lean_object* l_Lean_Parser_Syntax_paren___closed__2; lean_object* l_Lean_Parser_Command_mixfixKind___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_mkAntiquot___closed__16; +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__8; extern lean_object* l_Lean_Parser_Term_haveAssign___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_num(lean_object*); lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_prefix___closed__6; lean_object* l_Lean_Parser_Command_macro___closed__6; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer___closed__1; lean_object* l_Lean_Parser_optPrecedence___closed__3; lean_object* l_Lean_Parser_Command_infix___closed__5; +lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__3; lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__9; lean_object* l_Lean_Parser_Command_macro; lean_object* l_Lean_Parser_Command_syntax___closed__6; +lean_object* l_Lean_Parser_Command_infix_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__2; +lean_object* l_Lean_Parser_Syntax_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__1; lean_object* l_Lean_Parser_precedence___closed__5; lean_object* l_Lean_Parser_Syntax_optional___closed__3; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_sepBy___closed__6; +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_infixl___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Syntax_ident_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Syntax_atom_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_postfix___closed__4; lean_object* l_Lean_Parser_Command_notation___closed__2; +lean_object* l_Lean_Parser_precedenceLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntaxCat___closed__3; lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__4; +lean_object* l_Lean_Parser_Syntax_cat_parenthesizer___closed__3; lean_object* l_Lean_Parser_Syntax_char___closed__6; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1; lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_macroHead_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_reserve___closed__6; lean_object* l_Lean_Parser_Syntax_sepBy1___closed__1; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__8; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__3; lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); @@ -540,56 +741,82 @@ lean_object* l_Lean_Parser_Command_prefix___closed__5; lean_object* l_Lean_Parser_Syntax_many1___closed__3; lean_object* l_Lean_Parser_Syntax_optional___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__7; lean_object* l_Lean_Parser_Command_infix___closed__3; lean_object* l_Lean_Parser_Command_notationItem___elambda__1___closed__2; +lean_object* l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Syntax_try_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Syntax_str_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_ident___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_macro__rules___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elab__rules___closed__8; lean_object* l_Lean_Parser_Command_syntaxCat___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__6; lean_object* l_Lean_Parser_Command_notation___closed__1; +lean_object* l_Lean_Parser_Command_elabHead_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailCommand___closed__4; lean_object* l_Lean_Parser_Command_elab__rules___closed__2; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Syntax_try_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_reserve_parenthesizer___closed__2; lean_object* l_Lean_Parser_symbolInfo(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Command_mixfix(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer(lean_object*); +extern lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mixfix___closed__3; lean_object* l_Lean_Parser_Command_macroArg___closed__2; lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__5; lean_object* l_Lean_Parser_Command_optKind___closed__2; +lean_object* l_Lean_Parser_Command_elabArg_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Syntax_str_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_notation___closed__8; extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Command_macroTailDefault; lean_object* l_Lean_Parser_Command_mixfix___closed__6; +lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_elab___closed__11; +lean_object* l_Lean_Parser_Command_macroTail_parenthesizer___closed__3; extern lean_object* l_Lean_Parser_unquotedSymbol; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_ident___closed__1; extern lean_object* l_Lean_Parser_Term_typeAscription___closed__1; +lean_object* l_Lean_Parser_Command_macroHead_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__8; lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_macroHead_parenthesizer___closed__2; lean_object* l_Lean_Parser_Syntax_atom___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_postfix___closed__2; +lean_object* l_Lean_Parser_Syntax_ident_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elab__rules___closed__9; lean_object* l_Lean_Parser_Command_notation___closed__4; lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1; lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__3; lean_object* l_Lean_Parser_Command_identPrec___closed__2; lean_object* l_Lean_Parser_Syntax_sepBy1___closed__6; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__7; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__1; +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__8; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__5; lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__4; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_mixfixSymbol; +lean_object* l_Lean_Parser_Command_mixfixSymbol_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy1___closed__3; lean_object* l_Lean_Parser_Syntax_sepBy1___closed__5; lean_object* l_Lean_Parser_Command_notation___closed__9; @@ -600,16 +827,24 @@ lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__3; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_macroArg___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__1; lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr(lean_object*); lean_object* l_Lean_Parser_Command_infixl___closed__1; lean_object* l_Lean_Parser_Command_optKind___closed__4; lean_object* l_Lean_Parser_Command_syntax___closed__11; lean_object* l_Lean_Parser_precedenceLit___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_maxSymbol_parenthesizer___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_quotedSymbol_parenthesizer___boxed(lean_object*); +lean_object* l_Lean_Parser_Command_notationItem_parenthesizer___closed__2; lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_mixfixKind___closed__6; +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__8; extern lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__3; lean_object* l_Lean_Parser_Syntax_orelse___closed__2; @@ -620,8 +855,13 @@ lean_object* l_Lean_Parser_Command_elabTail___closed__7; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__7; lean_object* l_String_trim(lean_object*); lean_object* l_Lean_Parser_Command_postfix___closed__3; +lean_object* l_Lean_Parser_maxSymbol_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer___closed__1; lean_object* l_Lean_Parser_darrow___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__5; lean_object* l_Lean_Parser_Syntax_orelse___closed__1; +lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailTactic___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_mixfixKind___closed__3; @@ -631,32 +871,45 @@ lean_object* l_Lean_Parser_Syntax_paren___closed__7; lean_object* l_Lean_Parser_Command_optKind; lean_object* l_Lean_Parser_precedence___closed__6; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_notationItem___closed__5; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__2; +lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Command_postfix_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elab___closed__9; lean_object* l___regBuiltinParser_Lean_Parser_Command_syntaxAbbrev(lean_object*); lean_object* l_Lean_Parser_Syntax_str; +lean_object* l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__1; +lean_object* l_Lean_Parser_maxSymbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_macro___closed__8; +lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mixfixKind___closed__4; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__2; lean_object* l_Lean_Parser_Command_reserve___closed__7; +lean_object* l_Lean_Parser_Command_reserve_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_many; lean_object* l_Lean_Parser_Syntax_try___closed__1; +lean_object* l_Lean_Parser_Command_notationItem_parenthesizer___closed__3; extern lean_object* l_Lean_Parser_mkAntiquot___closed__6; lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__3; lean_object* l_Lean_Parser_Syntax_lookahead___closed__1; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__5; lean_object* l_Lean_Parser_Syntax_try; +lean_object* l_Lean_Parser_Command_macroArg_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_macro__rules___closed__3; lean_object* l_Lean_Parser_Command_syntaxCat___closed__4; lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_char___closed__5; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_macroTailCommand; +lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_syntaxCat___closed__1; lean_object* l_Lean_Parser_Command_macro__rules; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; @@ -664,20 +917,28 @@ lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_prefix___closed__3; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__6; +lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Syntax_atom_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elab___closed__4; lean_object* l_Lean_Parser_Syntax_try___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_ident(lean_object*); lean_object* l_Lean_Parser_Syntax_cat___closed__3; lean_object* l_Lean_Parser_Syntax_lookahead___closed__2; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__4; +extern lean_object* l_Lean_Parser_Term_stxQuot_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__5; +lean_object* l_Lean_Parser_Command_macroArg_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_lookahead; lean_object* l_Lean_Parser_Command_optKind___closed__5; lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macro__rules___closed__2; +lean_object* l_Lean_Parser_Syntax_try_parenthesizer___closed__3; +extern lean_object* l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Term_stxQuot___closed__1; extern lean_object* l_Lean_Parser_Term_fun___closed__2; +lean_object* l_Lean_Parser_Syntax_char_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntax___closed__9; lean_object* l_Lean_Parser_Command_notationItem___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macroTailDefault___closed__2; @@ -685,24 +946,34 @@ extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed_ lean_object* l_Lean_Parser_Syntax_atom___closed__2; lean_object* l_Lean_Parser_precedence___closed__2; lean_object* l_Lean_Parser_Syntax_char___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Syntax_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_optKind___closed__3; lean_object* l_Lean_Parser_Command_infixr___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_infix_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elab___closed__1; lean_object* l_Lean_Parser_Command_macroTailDefault___closed__4; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_identPrec___closed__1; lean_object* l_Lean_Parser_Syntax_cat___closed__5; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_maxSymbol; lean_object* l_Lean_Parser_Syntax_sepBy___closed__7; +extern lean_object* l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__4; lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_many___closed__4; lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__2; lean_object* l_Lean_Parser_Syntax_try___closed__6; +lean_object* l_Lean_Parser_Syntax_str_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailDefault___closed__1; lean_object* l_Lean_Parser_Command_mixfix___closed__10; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__9; extern lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_syntax___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_atom(lean_object*); @@ -720,10 +991,14 @@ lean_object* l_Lean_Parser_Syntax_optional___closed__1; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_elab___closed__8; +lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Syntax_optional(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__3; lean_object* l_Lean_Parser_Syntax_many1___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_prefix_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntaxCat; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_char(lean_object*); lean_object* l_Lean_Parser_Command_macroTail; @@ -731,6 +1006,9 @@ lean_object* l_Lean_Parser_Command_reserve___closed__5; lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_syntax(lean_object*); lean_object* l_Lean_Parser_Syntax_atom___closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParserOfStack_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_optPrecedence_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elabTail___closed__3; extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_elab(lean_object*); @@ -738,16 +1016,21 @@ lean_object* l_Lean_Parser_Syntax_orelse___closed__4; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__12; lean_object* l_Lean_Parser_Command_syntax___closed__8; lean_object* l_Lean_Parser_precedence___closed__4; +lean_object* l_Lean_Parser_Syntax_cat_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__7; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__2; +lean_object* l_Lean_Parser_optPrecedence_parenthesizer___closed__1; lean_object* l_Lean_Parser_optPrecedence___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_many1(lean_object*); lean_object* l_Lean_Parser_precedence___closed__1; lean_object* l_Lean_Parser_Command_macroTail___closed__3; lean_object* l_Lean_Parser_Command_macroTail___closed__1; lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_identEq_parenthesizer___boxed(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_macro_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__6; lean_object* l_Lean_Parser_Syntax_sepBy1___closed__7; @@ -757,7 +1040,9 @@ extern lean_object* l_Lean_Parser_Term_char___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_macro___closed__2; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Level_addLit___closed__1; +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__4; +lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_elab___closed__2; extern lean_object* l_Lean_Parser_Term_namedHole___closed__1; lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__3; @@ -765,22 +1050,34 @@ lean_object* l_Lean_Parser_Command_prefix___elambda__1(lean_object*, lean_object lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_mixfix___closed__7; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntaxCat___closed__2; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_macroTailCommand___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notationItem; lean_object* l_Lean_Parser_optPrecedence___closed__1; +lean_object* l_Lean_Parser_Command_prefix_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_reserve___closed__3; +lean_object* l_Lean_Parser_Command_mixfixSymbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elab__rules___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_orelse; lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__5; +extern lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__3; +lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macro___closed__9; +lean_object* l_Lean_Parser_Syntax_cat_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_syntax___closed__4; +lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_syntaxParser(lean_object*); lean_object* l_Lean_Parser_Command_macro__rules___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Command_notation_parenthesizer(lean_object*); lean_object* _init_l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__1() { _start: { @@ -2391,6 +2688,124 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_syntaxParser_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* l_Lean_Parser_syntaxParser_parenthesizer___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_Parser_syntaxParser_parenthesizer(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_paren___elambda__1___closed__4; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_syntaxParser_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__3; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_paren___elambda__1___closed__3; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_paren_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_paren_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_paren___elambda__1___closed__3; +x_4 = l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_cat___elambda__1___closed__1() { _start: { @@ -2665,6 +3080,221 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_maxSymbol_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_maxSymbol___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_maxSymbol_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_maxSymbol___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_maxSymbol_parenthesizer(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; +x_5 = l_Lean_Parser_maxSymbol_parenthesizer___closed__1; +x_6 = l_Lean_Parser_maxSymbol_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_precedenceLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_maxSymbol_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_precedenceLit_parenthesizer(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; +x_5 = l_Lean_Parser_Level_num_parenthesizer___closed__2; +x_6 = l_Lean_Parser_precedenceLit_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_precedence_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_precedence___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_precedence_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_precedenceLit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_precedence_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_precedence_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_precedence_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_precedence___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_precedence_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_precedence_parenthesizer(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; +x_5 = l_Lean_Parser_precedence_parenthesizer___closed__1; +x_6 = l_Lean_Parser_precedence_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_optPrecedence_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_precedence_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_optPrecedence_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_optPrecedence_parenthesizer___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_optPrecedence_parenthesizer(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_Parser_optPrecedence_parenthesizer___closed__2; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_cat___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_optPrecedence_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_cat_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_cat_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_atom___elambda__1___closed__1() { _start: { @@ -2891,6 +3521,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_atom_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_atom___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_atom_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_str_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_atom_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_atom_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_atom_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_atom_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_num___elambda__1___closed__1() { _start: { @@ -3150,6 +3836,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_num_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_num___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_num_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_num___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_num_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_num_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_num_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_num_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_num___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_str___elambda__1___closed__1() { _start: { @@ -3409,6 +4151,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_str_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_str___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_str_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_str___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_str_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_str_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_str_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_str_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_str___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_char___elambda__1___closed__1() { _start: { @@ -3668,6 +4466,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_char_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_char___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_char_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_char___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_char_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_char_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_char_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_char_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_char___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_ident___elambda__1___closed__1() { _start: { @@ -3927,6 +4781,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_ident_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_ident___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_ident_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_ident___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_ident_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_ident_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_ident_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_ident_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_ident___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_try___elambda__1___closed__1() { _start: { @@ -4264,6 +5174,84 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_try_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_try___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_try_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_maxPrec; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_syntaxParser_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Syntax_try_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Syntax_try_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_try_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_try___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Syntax_try_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_try_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_try_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_try_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_try_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_try___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1() { _start: { @@ -4591,6 +5579,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_lookahead___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_lookahead___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Syntax_try_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_lookahead_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_lookahead_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_lookahead___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1() { _start: { @@ -4964,6 +6008,85 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_sepBy___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Syntax_try_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_2, 0, x_1); +lean_closure_set(x_2, 1, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_sepBy___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_sepBy_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_sepBy___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1() { _start: { @@ -5325,6 +6448,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Syntax_sepBy1_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_sepBy1_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_optional___elambda__1___closed__1() { _start: { @@ -5491,6 +6670,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Syntax_optional_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_optional___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_optional_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_optional___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_many___elambda__1___closed__1() { _start: { @@ -5689,6 +6898,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Syntax_many_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_many___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_many_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_many___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_many1___elambda__1___closed__1() { _start: { @@ -5855,6 +7094,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Syntax_many1_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_many1___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_many1_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_many1___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__1() { _start: { @@ -6054,6 +7323,58 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Syntax_orelse_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_syntaxParser_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Syntax_orelse_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Syntax_orelse_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Syntax_orelse_parenthesizer(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; +x_5 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(2u); +x_7 = l_Lean_Parser_Syntax_orelse_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_orelse_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_prefix___elambda__1___closed__1() { _start: { @@ -8769,6 +10090,385 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_prefix_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_prefix___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_prefix_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_prefix___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_prefix_parenthesizer(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; +x_5 = l_Lean_Parser_Command_prefix_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_prefix_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_infix_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_infix___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_infix_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_infix___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_infix_parenthesizer(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; +x_5 = l_Lean_Parser_Command_infix_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_infix_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_infixl_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_infixl___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_infixl_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_infixl___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_infixl_parenthesizer(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; +x_5 = l_Lean_Parser_Command_infixl_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_infixl_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_infixr_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_infixr___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_infixr_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_infixr___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_infixr_parenthesizer(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; +x_5 = l_Lean_Parser_Command_infixr_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_infixr_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_postfix_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_postfix___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_postfix_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_postfix___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_postfix_parenthesizer(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; +x_5 = l_Lean_Parser_Command_postfix_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_postfix_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_infixr_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_postfix_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_infixl_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_infix_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_prefix_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer(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; +x_5 = l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__8; +x_6 = l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_reserve___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_quotedSymbol_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_reserve_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_mixfixKind_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_reserve_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_reserve_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_reserve_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_reserve___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_reserve_parenthesizer___closed__6; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_reserve_parenthesizer(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; +x_5 = l_Lean_Parser_Command_reserve_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_reserve_parenthesizer___closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_reserve_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_reserve___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_Command_mixfixSymbol___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -9805,6 +11505,148 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_mixfixSymbol_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_unquotedSymbol_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Command_mixfixSymbol_parenthesizer(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; +x_5 = l_Lean_Parser_Command_reserve_parenthesizer___closed__3; +x_6 = l_Lean_Parser_Command_mixfixSymbol_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_mixfix___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_fun_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_mixfixSymbol_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_reserve_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_mixfix___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_mixfix_parenthesizer(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; +x_5 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__8; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_mixfix_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_mixfix___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_Command_optKind___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -11297,6 +13139,208 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_identPrec_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_identPrec___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_identPrec_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_identPrec___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_identPrec_parenthesizer(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; +x_5 = l_Lean_Parser_Command_identPrec_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_identPrec_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_notationItem_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_notationItem___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_notationItem_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_identPrec_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_notationItem_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_reserve_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_notationItem_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_notationItem_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_str_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_notationItem_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Command_notationItem_parenthesizer(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; +x_5 = l_Lean_Parser_Command_notationItem_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_notationItem_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_notation_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_notation___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_notation_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_notationItem_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_notation_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_notation_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_notation_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_notation_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_notation_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_notation_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_notation_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_notation_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_notation_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_notation___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_notation_parenthesizer___closed__6; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_notation_parenthesizer(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; +x_5 = l_Lean_Parser_Command_notation_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_notation_parenthesizer___closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_notation_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_notation_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_notation_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_notation___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_notation_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_macro__rules___elambda__1___closed__1() { _start: { @@ -11794,6 +13838,103 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Command_optKind_parenthesizer(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_Parser_Term_namedArgument_parenthesizer___closed__2; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optKind_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macro__rules_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_match_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_macro__rules_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_macro__rules_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macro__rules_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_macro__rules_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macro__rules_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_syntax___elambda__1___closed__1() { _start: { @@ -12576,6 +14717,110 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_syntax___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macro__rules_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_syntax_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_syntax_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_syntax_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_syntax_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_syntax_parenthesizer(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; +x_5 = l_Lean_Parser_Command_syntax_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_syntax_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_syntax_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__1() { _start: { @@ -13230,6 +15475,98 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer(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; +x_5 = l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_syntaxAbbrev_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_syntaxCat___elambda__1___closed__1() { _start: { @@ -13676,6 +16013,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_syntaxCat___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_syntaxCat_parenthesizer(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; +x_5 = l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_syntaxCat_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__1() { _start: { @@ -16880,6 +19273,523 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Syntax_try_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_2 = l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_macroArgSimple_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_macroArg_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_str_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_macroArg_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macroArgSimple_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_macroArg_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_macroArg_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_Command_macroArg_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macroArg_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_macroArg_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_macroHead_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_macroHead_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macroArg_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Command_macroHead_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macroHead_parenthesizer___closed__2; +x_6 = l_Lean_Parser_Command_macroHead_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_identEq_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__3; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_fun_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__3; +x_6 = l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_stxQuot_parenthesizer___closed__3; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_fun_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__3; +x_6 = l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_categoryParserOfStack_parenthesizer___boxed), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_fun_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTail_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macroTailCommand_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTail_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macroTailDefault_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTail_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macroTail_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Command_macroTail_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macroTail_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macroTailTactic_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Command_macroTail_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macroTail_parenthesizer___closed__4; +x_6 = l_Lean_Parser_Command_macroTail_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_macroHead_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macroTail_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macro_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macroHead_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macro_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_macro_parenthesizer___closed__8; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_macro_parenthesizer(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; +x_5 = l_Lean_Parser_Command_macro_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_macro_parenthesizer___closed__9; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macro_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_macro_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_macro___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_elab__rules___elambda__1___closed__1() { _start: { @@ -17754,6 +20664,108 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_elab__rules___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_elab__rules_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_match_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macro__rules_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_elab__rules_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_elab__rules_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_elab__rules___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_elab__rules_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer(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; +x_5 = l_Lean_Parser_Command_elab__rules_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_elab__rules_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_elab__rules_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_elab__rules___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Command_elabHead() { _start: { @@ -18893,6 +21905,204 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Command_elabHead_parenthesizer(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_Parser_Command_macroHead_parenthesizer(x_1, x_2, x_3, x_4); +return x_5; +} +} +lean_object* l_Lean_Parser_Command_elabArg_parenthesizer(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_Parser_Command_macroArg_parenthesizer(x_1, x_2, x_3, x_4); +return x_5; +} +} +lean_object* _init_l_Lean_Parser_Command_elabTail_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_elab__rules_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elabTail_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_elabTail_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elabTail_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_elabTail_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_Command_elabTail_parenthesizer(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; +x_5 = l_Lean_Parser_Command_elabTail_parenthesizer___closed__3; +x_6 = l_Lean_Parser_Term_fun_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_elabArg_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_elab_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_elabTail_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_elab_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_elab_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_elabHead_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_elab_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_elab_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_elab_parenthesizer___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Command_elab_parenthesizer___closed__8; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_elab_parenthesizer___closed__9; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Command_elab_parenthesizer(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; +x_5 = l_Lean_Parser_Command_elab_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Command_elab_parenthesizer___closed__10; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_elab_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Command_elab_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_elab___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Parser_Command(lean_object*); lean_object* initialize_Lean_Parser_Tactic(lean_object*); @@ -19018,6 +22228,23 @@ lean_mark_persistent(l_Lean_Parser_Syntax_paren); res = l___regBuiltinParser_Lean_Parser_Syntax_paren(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_paren_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_paren_parenthesizer___closed__1); +l_Lean_Parser_Syntax_paren_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_paren_parenthesizer___closed__2); +l_Lean_Parser_Syntax_paren_parenthesizer___closed__3 = _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Syntax_paren_parenthesizer___closed__3); +l_Lean_Parser_Syntax_paren_parenthesizer___closed__4 = _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Syntax_paren_parenthesizer___closed__4); +l_Lean_Parser_Syntax_paren_parenthesizer___closed__5 = _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Syntax_paren_parenthesizer___closed__5); +l_Lean_Parser_Syntax_paren_parenthesizer___closed__6 = _init_l_Lean_Parser_Syntax_paren_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Syntax_paren_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_paren_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_cat___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_cat___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_cat___elambda__1___closed__1); l_Lean_Parser_Syntax_cat___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_cat___elambda__1___closed__2(); @@ -19043,6 +22270,37 @@ lean_mark_persistent(l_Lean_Parser_Syntax_cat); res = l___regBuiltinParser_Lean_Parser_Syntax_cat(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_maxSymbol_parenthesizer___closed__1 = _init_l_Lean_Parser_maxSymbol_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_maxSymbol_parenthesizer___closed__1); +l_Lean_Parser_maxSymbol_parenthesizer___closed__2 = _init_l_Lean_Parser_maxSymbol_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_maxSymbol_parenthesizer___closed__2); +l_Lean_Parser_precedenceLit_parenthesizer___closed__1 = _init_l_Lean_Parser_precedenceLit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_precedenceLit_parenthesizer___closed__1); +l_Lean_Parser_precedence_parenthesizer___closed__1 = _init_l_Lean_Parser_precedence_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_precedence_parenthesizer___closed__1); +l_Lean_Parser_precedence_parenthesizer___closed__2 = _init_l_Lean_Parser_precedence_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_precedence_parenthesizer___closed__2); +l_Lean_Parser_precedence_parenthesizer___closed__3 = _init_l_Lean_Parser_precedence_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_precedence_parenthesizer___closed__3); +l_Lean_Parser_precedence_parenthesizer___closed__4 = _init_l_Lean_Parser_precedence_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_precedence_parenthesizer___closed__4); +l_Lean_Parser_optPrecedence_parenthesizer___closed__1 = _init_l_Lean_Parser_optPrecedence_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_optPrecedence_parenthesizer___closed__1); +l_Lean_Parser_optPrecedence_parenthesizer___closed__2 = _init_l_Lean_Parser_optPrecedence_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_optPrecedence_parenthesizer___closed__2); +l_Lean_Parser_Syntax_cat_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_cat_parenthesizer___closed__1); +l_Lean_Parser_Syntax_cat_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_cat_parenthesizer___closed__2); +l_Lean_Parser_Syntax_cat_parenthesizer___closed__3 = _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Syntax_cat_parenthesizer___closed__3); +l_Lean_Parser_Syntax_cat_parenthesizer___closed__4 = _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Syntax_cat_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_cat_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_atom___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_atom___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_atom___elambda__1___closed__1); l_Lean_Parser_Syntax_atom___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_atom___elambda__1___closed__2(); @@ -19066,6 +22324,15 @@ lean_mark_persistent(l_Lean_Parser_Syntax_atom); res = l___regBuiltinParser_Lean_Parser_Syntax_atom(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_atom_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_atom_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_atom_parenthesizer___closed__1); +l_Lean_Parser_Syntax_atom_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_atom_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_atom_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_atom_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_num___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_num___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_num___elambda__1___closed__1); l_Lean_Parser_Syntax_num___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_num___elambda__1___closed__2(); @@ -19095,6 +22362,15 @@ lean_mark_persistent(l_Lean_Parser_Syntax_num); res = l___regBuiltinParser_Lean_Parser_Syntax_num(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_num_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_num_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_num_parenthesizer___closed__1); +l_Lean_Parser_Syntax_num_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_num_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_num_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_num_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_str___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_str___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_str___elambda__1___closed__1); l_Lean_Parser_Syntax_str___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_str___elambda__1___closed__2(); @@ -19124,6 +22400,15 @@ lean_mark_persistent(l_Lean_Parser_Syntax_str); res = l___regBuiltinParser_Lean_Parser_Syntax_str(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_str_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_str_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_str_parenthesizer___closed__1); +l_Lean_Parser_Syntax_str_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_str_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_str_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_str_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_char___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_char___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_char___elambda__1___closed__1); l_Lean_Parser_Syntax_char___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_char___elambda__1___closed__2(); @@ -19153,6 +22438,15 @@ lean_mark_persistent(l_Lean_Parser_Syntax_char); res = l___regBuiltinParser_Lean_Parser_Syntax_char(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_char_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_char_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_char_parenthesizer___closed__1); +l_Lean_Parser_Syntax_char_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_char_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_char_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_char_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_ident___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_ident___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_ident___elambda__1___closed__1); l_Lean_Parser_Syntax_ident___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_ident___elambda__1___closed__2(); @@ -19182,6 +22476,15 @@ lean_mark_persistent(l_Lean_Parser_Syntax_ident); res = l___regBuiltinParser_Lean_Parser_Syntax_ident(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_ident_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_ident_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_ident_parenthesizer___closed__1); +l_Lean_Parser_Syntax_ident_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_ident_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_ident_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_try___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_try___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_try___elambda__1___closed__1); l_Lean_Parser_Syntax_try___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_try___elambda__1___closed__2(); @@ -19219,6 +22522,19 @@ lean_mark_persistent(l_Lean_Parser_Syntax_try); res = l___regBuiltinParser_Lean_Parser_Syntax_try(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_try_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_try_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_try_parenthesizer___closed__1); +l_Lean_Parser_Syntax_try_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_try_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_try_parenthesizer___closed__2); +l_Lean_Parser_Syntax_try_parenthesizer___closed__3 = _init_l_Lean_Parser_Syntax_try_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Syntax_try_parenthesizer___closed__3); +l_Lean_Parser_Syntax_try_parenthesizer___closed__4 = _init_l_Lean_Parser_Syntax_try_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Syntax_try_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_try_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1); l_Lean_Parser_Syntax_lookahead___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_lookahead___elambda__1___closed__2(); @@ -19254,6 +22570,15 @@ lean_mark_persistent(l_Lean_Parser_Syntax_lookahead); res = l___regBuiltinParser_Lean_Parser_Syntax_lookahead(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1); +l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_lookahead_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1); l_Lean_Parser_Syntax_sepBy___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_sepBy___elambda__1___closed__2(); @@ -19291,6 +22616,19 @@ lean_mark_persistent(l_Lean_Parser_Syntax_sepBy); res = l___regBuiltinParser_Lean_Parser_Syntax_sepBy(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1); +l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__2); +l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__3 = _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__3); +l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__4 = _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1); l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__2(); @@ -19326,6 +22664,15 @@ lean_mark_persistent(l_Lean_Parser_Syntax_sepBy1); res = l___regBuiltinParser_Lean_Parser_Syntax_sepBy1(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1); +l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_sepBy1_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_optional___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_optional___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_optional___elambda__1___closed__1); l_Lean_Parser_Syntax_optional___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_optional___elambda__1___closed__2(); @@ -19343,6 +22690,11 @@ lean_mark_persistent(l_Lean_Parser_Syntax_optional); res = l___regBuiltinParser_Lean_Parser_Syntax_optional(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_optional_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_many___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_many___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_many___elambda__1___closed__1); l_Lean_Parser_Syntax_many___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_many___elambda__1___closed__2(); @@ -19366,6 +22718,11 @@ lean_mark_persistent(l_Lean_Parser_Syntax_many); res = l___regBuiltinParser_Lean_Parser_Syntax_many(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_many1___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_many1___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_many1___elambda__1___closed__1); l_Lean_Parser_Syntax_many1___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_many1___elambda__1___closed__2(); @@ -19383,6 +22740,11 @@ lean_mark_persistent(l_Lean_Parser_Syntax_many1); res = l___regBuiltinParser_Lean_Parser_Syntax_many1(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_many1_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Syntax_orelse___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_orelse___elambda__1___closed__1); l_Lean_Parser_Syntax_orelse___closed__1 = _init_l_Lean_Parser_Syntax_orelse___closed__1(); @@ -19402,6 +22764,15 @@ lean_mark_persistent(l_Lean_Parser_Syntax_orelse); res = l___regBuiltinParser_Lean_Parser_Syntax_orelse(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Syntax_orelse_parenthesizer___closed__1 = _init_l_Lean_Parser_Syntax_orelse_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse_parenthesizer___closed__1); +l_Lean_Parser_Syntax_orelse_parenthesizer___closed__2 = _init_l_Lean_Parser_Syntax_orelse_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Syntax_orelse_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_prefix___elambda__1___closed__1 = _init_l_Lean_Parser_Command_prefix___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_prefix___elambda__1___closed__1); l_Lean_Parser_Command_prefix___elambda__1___closed__2 = _init_l_Lean_Parser_Command_prefix___elambda__1___closed__2(); @@ -19607,6 +22978,61 @@ lean_mark_persistent(l_Lean_Parser_Command_reserve); res = l___regBuiltinParser_Lean_Parser_Command_reserve(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_prefix_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_prefix_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_prefix_parenthesizer___closed__1); +l_Lean_Parser_Command_prefix_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_prefix_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_prefix_parenthesizer___closed__2); +l_Lean_Parser_Command_infix_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_infix_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_infix_parenthesizer___closed__1); +l_Lean_Parser_Command_infix_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_infix_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_infix_parenthesizer___closed__2); +l_Lean_Parser_Command_infixl_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_infixl_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_infixl_parenthesizer___closed__1); +l_Lean_Parser_Command_infixl_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_infixl_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_infixl_parenthesizer___closed__2); +l_Lean_Parser_Command_infixr_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_infixr_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_infixr_parenthesizer___closed__1); +l_Lean_Parser_Command_infixr_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_infixr_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_infixr_parenthesizer___closed__2); +l_Lean_Parser_Command_postfix_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_postfix_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_postfix_parenthesizer___closed__1); +l_Lean_Parser_Command_postfix_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_postfix_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_postfix_parenthesizer___closed__2); +l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__1); +l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__2); +l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__3); +l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__4); +l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__5); +l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__6); +l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__7); +l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__8); +l_Lean_Parser_Command_reserve_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_reserve_parenthesizer___closed__1); +l_Lean_Parser_Command_reserve_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_reserve_parenthesizer___closed__2); +l_Lean_Parser_Command_reserve_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_reserve_parenthesizer___closed__3); +l_Lean_Parser_Command_reserve_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_reserve_parenthesizer___closed__4); +l_Lean_Parser_Command_reserve_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_reserve_parenthesizer___closed__5); +l_Lean_Parser_Command_reserve_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_reserve_parenthesizer___closed__6); +l_Lean_Parser_Command_reserve_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_reserve_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_reserve_parenthesizer___closed__7); +l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_reserve_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_mixfixSymbol___closed__1 = _init_l_Lean_Parser_Command_mixfixSymbol___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_mixfixSymbol___closed__1); l_Lean_Parser_Command_mixfixSymbol___closed__2 = _init_l_Lean_Parser_Command_mixfixSymbol___closed__2(); @@ -19668,6 +23094,29 @@ lean_mark_persistent(l_Lean_Parser_Command_mixfix); res = l___regBuiltinParser_Lean_Parser_Command_mixfix(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_mixfixSymbol_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_mixfixSymbol_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_mixfixSymbol_parenthesizer___closed__1); +l_Lean_Parser_Command_mixfix_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__1); +l_Lean_Parser_Command_mixfix_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__2); +l_Lean_Parser_Command_mixfix_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__3); +l_Lean_Parser_Command_mixfix_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__4); +l_Lean_Parser_Command_mixfix_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__5); +l_Lean_Parser_Command_mixfix_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__6); +l_Lean_Parser_Command_mixfix_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__7); +l_Lean_Parser_Command_mixfix_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_mixfix_parenthesizer___closed__8); +l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_mixfix_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_optKind___closed__1 = _init_l_Lean_Parser_Command_optKind___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_optKind___closed__1); l_Lean_Parser_Command_optKind___closed__2 = _init_l_Lean_Parser_Command_optKind___closed__2(); @@ -19741,6 +23190,37 @@ lean_mark_persistent(l_Lean_Parser_Command_notation); res = l___regBuiltinParser_Lean_Parser_Command_notation(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_identPrec_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_identPrec_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_identPrec_parenthesizer___closed__1); +l_Lean_Parser_Command_identPrec_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_identPrec_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_identPrec_parenthesizer___closed__2); +l_Lean_Parser_Command_notationItem_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_notationItem_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_notationItem_parenthesizer___closed__1); +l_Lean_Parser_Command_notationItem_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_notationItem_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_notationItem_parenthesizer___closed__2); +l_Lean_Parser_Command_notationItem_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_notationItem_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_notationItem_parenthesizer___closed__3); +l_Lean_Parser_Command_notationItem_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_notationItem_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_notationItem_parenthesizer___closed__4); +l_Lean_Parser_Command_notation_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_notation_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_notation_parenthesizer___closed__1); +l_Lean_Parser_Command_notation_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_notation_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_notation_parenthesizer___closed__2); +l_Lean_Parser_Command_notation_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_notation_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_notation_parenthesizer___closed__3); +l_Lean_Parser_Command_notation_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_notation_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_notation_parenthesizer___closed__4); +l_Lean_Parser_Command_notation_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_notation_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_notation_parenthesizer___closed__5); +l_Lean_Parser_Command_notation_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_notation_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_notation_parenthesizer___closed__6); +l_Lean_Parser_Command_notation_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_notation_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_notation_parenthesizer___closed__7); +l___regBuiltin_Lean_Parser_Command_notation_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_notation_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_notation_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_notation_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_macro__rules___elambda__1___closed__1 = _init_l_Lean_Parser_Command_macro__rules___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_macro__rules___elambda__1___closed__1); l_Lean_Parser_Command_macro__rules___elambda__1___closed__2 = _init_l_Lean_Parser_Command_macro__rules___elambda__1___closed__2(); @@ -19778,6 +23258,21 @@ lean_mark_persistent(l_Lean_Parser_Command_macro__rules); res = l___regBuiltinParser_Lean_Parser_Command_macro__rules(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_macro__rules_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macro__rules_parenthesizer___closed__1); +l_Lean_Parser_Command_macro__rules_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macro__rules_parenthesizer___closed__2); +l_Lean_Parser_Command_macro__rules_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_macro__rules_parenthesizer___closed__3); +l_Lean_Parser_Command_macro__rules_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_macro__rules_parenthesizer___closed__4); +l_Lean_Parser_Command_macro__rules_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_macro__rules_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_macro__rules_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_macro__rules_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_syntax___elambda__1___closed__1 = _init_l_Lean_Parser_Command_syntax___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_syntax___elambda__1___closed__1); l_Lean_Parser_Command_syntax___elambda__1___closed__2 = _init_l_Lean_Parser_Command_syntax___elambda__1___closed__2(); @@ -19821,6 +23316,23 @@ lean_mark_persistent(l_Lean_Parser_Command_syntax); res = l___regBuiltinParser_Lean_Parser_Command_syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_syntax_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_syntax_parenthesizer___closed__1); +l_Lean_Parser_Command_syntax_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_syntax_parenthesizer___closed__2); +l_Lean_Parser_Command_syntax_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_syntax_parenthesizer___closed__3); +l_Lean_Parser_Command_syntax_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_syntax_parenthesizer___closed__4); +l_Lean_Parser_Command_syntax_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_syntax_parenthesizer___closed__5); +l_Lean_Parser_Command_syntax_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_syntax_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_syntax_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_syntax_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__1 = _init_l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__1); l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__2 = _init_l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__2(); @@ -19850,6 +23362,21 @@ lean_mark_persistent(l_Lean_Parser_Command_syntaxAbbrev); res = l___regBuiltinParser_Lean_Parser_Command_syntaxAbbrev(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1); +l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__2); +l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__3); +l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__4); +l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_syntaxCat___elambda__1___closed__1 = _init_l_Lean_Parser_Command_syntaxCat___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_syntaxCat___elambda__1___closed__1); l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2 = _init_l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2(); @@ -19887,6 +23414,15 @@ lean_mark_persistent(l_Lean_Parser_Command_syntaxCat); res = l___regBuiltinParser_Lean_Parser_Command_syntaxCat(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1); +l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_syntaxCat_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_syntaxCat_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__1 = _init_l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__1); l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__2 = _init_l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__2(); @@ -20034,6 +23570,87 @@ lean_mark_persistent(l_Lean_Parser_Command_macro); res = l___regBuiltinParser_Lean_Parser_Command_macro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1); +l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2); +l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__3); +l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__4); +l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__5); +l_Lean_Parser_Command_macroArg_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macroArg_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macroArg_parenthesizer___closed__1); +l_Lean_Parser_Command_macroArg_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macroArg_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macroArg_parenthesizer___closed__2); +l_Lean_Parser_Command_macroArg_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_macroArg_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_macroArg_parenthesizer___closed__3); +l_Lean_Parser_Command_macroHead_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macroHead_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macroHead_parenthesizer___closed__1); +l_Lean_Parser_Command_macroHead_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macroHead_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macroHead_parenthesizer___closed__2); +l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__1); +l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__2); +l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__3); +l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__4); +l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__5); +l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__1); +l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__2); +l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__3); +l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__4); +l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__1); +l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__2); +l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__3); +l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__4); +l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__5); +l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__6); +l_Lean_Parser_Command_macroTail_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macroTail_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macroTail_parenthesizer___closed__1); +l_Lean_Parser_Command_macroTail_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macroTail_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macroTail_parenthesizer___closed__2); +l_Lean_Parser_Command_macroTail_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_macroTail_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_macroTail_parenthesizer___closed__3); +l_Lean_Parser_Command_macroTail_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_macroTail_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_macroTail_parenthesizer___closed__4); +l_Lean_Parser_Command_macro_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__1); +l_Lean_Parser_Command_macro_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__2); +l_Lean_Parser_Command_macro_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__3); +l_Lean_Parser_Command_macro_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__4); +l_Lean_Parser_Command_macro_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__5); +l_Lean_Parser_Command_macro_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__6); +l_Lean_Parser_Command_macro_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__7); +l_Lean_Parser_Command_macro_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__8); +l_Lean_Parser_Command_macro_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__9); +l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_macro_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_elab__rules___elambda__1___closed__1 = _init_l_Lean_Parser_Command_elab__rules___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_elab__rules___elambda__1___closed__1); l_Lean_Parser_Command_elab__rules___elambda__1___closed__2 = _init_l_Lean_Parser_Command_elab__rules___elambda__1___closed__2(); @@ -20075,6 +23692,23 @@ lean_mark_persistent(l_Lean_Parser_Command_elab__rules); res = l___regBuiltinParser_Lean_Parser_Command_elab__rules(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_elab__rules_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_elab__rules_parenthesizer___closed__1); +l_Lean_Parser_Command_elab__rules_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_elab__rules_parenthesizer___closed__2); +l_Lean_Parser_Command_elab__rules_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_elab__rules_parenthesizer___closed__3); +l_Lean_Parser_Command_elab__rules_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_elab__rules_parenthesizer___closed__4); +l_Lean_Parser_Command_elab__rules_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_elab__rules_parenthesizer___closed__5); +l_Lean_Parser_Command_elab__rules_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_elab__rules_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_elab__rules_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_elab__rules_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_elabHead = _init_l_Lean_Parser_Command_elabHead(); lean_mark_persistent(l_Lean_Parser_Command_elabHead); l_Lean_Parser_Command_elabArg = _init_l_Lean_Parser_Command_elabArg(); @@ -20150,6 +23784,37 @@ lean_mark_persistent(l_Lean_Parser_Command_elab); res = l___regBuiltinParser_Lean_Parser_Command_elab(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_elabTail_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_elabTail_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_elabTail_parenthesizer___closed__1); +l_Lean_Parser_Command_elabTail_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_elabTail_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_elabTail_parenthesizer___closed__2); +l_Lean_Parser_Command_elabTail_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_elabTail_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_elabTail_parenthesizer___closed__3); +l_Lean_Parser_Command_elab_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__1); +l_Lean_Parser_Command_elab_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__2); +l_Lean_Parser_Command_elab_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__3); +l_Lean_Parser_Command_elab_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__4); +l_Lean_Parser_Command_elab_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__5); +l_Lean_Parser_Command_elab_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__6); +l_Lean_Parser_Command_elab_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__7); +l_Lean_Parser_Command_elab_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__8); +l_Lean_Parser_Command_elab_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__9); +l_Lean_Parser_Command_elab_parenthesizer___closed__10 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__10); +l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Command_elab_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser/Tactic.c b/stage0/stdlib/Lean/Parser/Tactic.c index 8a25439eda..0ecebf6dac 100644 --- a/stage0/stdlib/Lean/Parser/Tactic.c +++ b/stage0/stdlib/Lean/Parser/Tactic.c @@ -18,11 +18,15 @@ lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intro(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitToken___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2; extern lean_object* l_Lean_mkHole___closed__3; lean_object* l_Lean_Parser_Tactic_withAlts___closed__2; lean_object* l_Lean_Parser_Tactic_refine___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_failIfSuccess(lean_object*); +lean_object* l_Lean_Parser_Tactic_apply_parenthesizer___closed__3; +extern lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_exact___closed__6; lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_orelse___closed__2; @@ -33,7 +37,9 @@ lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__ lean_object* l_Lean_Parser_Tactic_generalize___closed__8; lean_object* l_Lean_Parser_Tactic_cases___closed__6; extern lean_object* l_Lean_Meta_injectionCore___closed__1; +lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__5; extern lean_object* l_Lean_Parser_manyAux___main___closed__1; +lean_object* l_Lean_Parser_Tactic_subst_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_withIds___closed__3; lean_object* l_Lean_Parser_Tactic_revert___closed__2; @@ -41,55 +47,87 @@ lean_object* l_Lean_Parser_Tactic_generalize___closed__1; lean_object* l_Lean_Parser_Tactic_intro___closed__8; extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__20; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__11; +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_case___closed__6; +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_apply___closed__2; +lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_skip___closed__6; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_generalize___closed__2; lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1(lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__1; +lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__5; extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__2; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_orelse___closed__1; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_underscore___closed__2; lean_object* l_Lean_Parser_Tactic_majorPremise___closed__4; lean_object* l_Lean_Parser_Tactic_generalize___closed__6; lean_object* l_Lean_Parser_Tactic_majorPremise___closed__1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_clear_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_injection___closed__2; +lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__6; extern lean_object* l_Lean_Parser_Tactic_seq; +lean_object* l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Tactic_paren_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_skip___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_induction___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___closed__4; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__1; lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__5; lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_intro___closed__4; +lean_object* l_Lean_Parser_Tactic_paren_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__3; +lean_object* l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__2; extern lean_object* l_Lean_Meta_substCore___lambda__3___closed__1; +lean_object* l_Lean_Parser_Tactic_clear_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__8; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_nestedTacticBlock(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_withAlts___closed__4; lean_object* l_Lean_Parser_Tactic_withAlts___closed__1; +lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Tactic_subst_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_clear___closed__6; +lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__16; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__7; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__11(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_inductionAlts; lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Tactic_revert___elambda__1___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_ident; +lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_induction___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__2; @@ -98,16 +136,22 @@ lean_object* l_Lean_Parser_Tactic_usingRec___closed__2; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__7; lean_object* l_Lean_Parser_Tactic_skip___closed__2; lean_object* l_Lean_Parser_Tactic_injection___closed__8; +lean_object* l_Lean_Parser_Tactic_paren_parenthesizer___closed__2; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_apply___closed__4; lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__6; extern lean_object* l_Lean_Parser_darrow; +extern lean_object* l_Lean_Parser_Term_le_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__4; lean_object* l_Lean_Parser_Tactic_inductionAlt; +lean_object* l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Tactic_skip_parenthesizer___closed__1; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_usingRec___closed__1; lean_object* l_Lean_Parser_Tactic_orelse___closed__7; +lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__4; extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; lean_object* l_Lean_Parser_Tactic_underscore; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__4; @@ -120,6 +164,7 @@ lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_paren___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_cases___closed__5; +lean_object* l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_refine___closed__5; lean_object* l_Lean_Parser_Tactic_majorPremise___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1; @@ -127,6 +172,7 @@ lean_object* l_Lean_Parser_Tactic_exact___closed__1; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__3; +lean_object* l_Lean_Parser_Tactic_refine_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_withIds___closed__2; @@ -135,42 +181,60 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_nestedTacticBlockCurly(lean lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_subst___closed__4; lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2; +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_intros___closed__5; lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; +lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_cases___closed__3; +extern lean_object* l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__3; +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_usingRec; lean_object* l_Lean_Parser_Tactic_orelse___closed__3; lean_object* l_Lean_Parser_Tactic_clear___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_Tactic_nonEmptySeq; lean_object* l_Lean_Parser_Tactic_revert___closed__1; lean_object* l_Lean_Parser_Tactic_skip___closed__1; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__5; lean_object* l_Lean_Parser_ParserState_mkErrorsAt(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__3; lean_object* l_Lean_Parser_Tactic_orelse___closed__5; lean_object* l_Lean_Parser_Tactic_withIds; extern lean_object* l_Lean_Parser_Term_optIdent___closed__2; lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_revert___closed__4; +lean_object* l_Lean_Parser_Tactic_majorPremise_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_ident_x27___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_injection___closed__1; +lean_object* l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_cases___closed__1; +lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_usingRec___closed__4; lean_object* l_Lean_Parser_Tactic_withIds___closed__1; lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__4; +lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_intros___closed__3; lean_object* l_Lean_Parser_Tactic_apply___closed__5; lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_assumption___closed__4; lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intros___closed__6; extern lean_object* l___private_Lean_Meta_EqnCompiler_CaseValues_1__caseValuesAux___main___closed__6; +lean_object* l_Lean_Parser_Tactic_refine_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_clear___closed__1; lean_object* l_Lean_Parser_Tactic_exact___closed__7; lean_object* l_Lean_Parser_Tactic_clear___closed__2; lean_object* l_Lean_Parser_Tactic_clear; +lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_case___closed__4; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -178,18 +242,26 @@ extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_subst___closed__1; lean_object* l_Lean_Parser_Tactic_refine___closed__7; lean_object* l_Lean_Parser_Tactic_induction; +lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_usingRec___closed__5; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__3; +lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__4; +lean_object* l_Lean_Parser_Tactic_refine_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__2; +extern lean_object* l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__5; +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__7; lean_object* l_Lean_Parser_Tactic_cases___closed__4; +extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; lean_object* l_Lean_Parser_Tactic_assumption; lean_object* l_Lean_Parser_Tactic_intros___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_subst___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_Term_hole___closed__4; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__3; @@ -198,7 +270,9 @@ lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__7; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_inductionAlts___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_traceState___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__10; +lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_clear___closed__3; lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__3; @@ -209,10 +283,12 @@ lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_case___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_case; lean_object* l_Lean_Parser_Tactic_traceState___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__9; +lean_object* l_Lean_Parser_Tactic_case_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__5; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1(lean_object*, lean_object*); @@ -221,11 +297,13 @@ lean_object* l_Lean_Parser_Tactic_traceState___closed__3; lean_object* l_Lean_Parser_nonReservedSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_allGoals; +lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_refine___closed__3; lean_object* l_Lean_Parser_Tactic_allGoals___closed__7; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__1; lean_object* l_Lean_Parser_Tactic_cases; +lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_case(lean_object*); lean_object* l_Lean_Parser_Tactic_ident_x27___closed__2; lean_object* l_Lean_Parser_Tactic_allGoals___closed__3; @@ -234,32 +312,40 @@ lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__5; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5; +lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_assumption___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__12; lean_object* l_Lean_Parser_Tactic_apply___closed__3; +lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_clear___closed__5; extern lean_object* l_Lean_Meta_clear___closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_generalizingVars_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__2; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__7(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; lean_object* l_Lean_Parser_Tactic_revert; +lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_generalize; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__3; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__3; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__2; extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_usingRec___closed__3; lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); +lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_ident_x27___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_revert(lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intros(lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_traceState___closed__2; lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); @@ -269,17 +355,20 @@ lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__6; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_intros___closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__12; +lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer(lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__7; lean_object* l_Lean_Parser_optionaInfo(lean_object*); lean_object* l_Lean_Parser_Tactic_cases___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_assumption___closed__6; lean_object* l_Lean_Parser_Tactic_induction___closed__7; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_revert___closed__5; lean_object* l_Lean_Parser_Tactic_traceState___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_skip___closed__5; lean_object* l_Lean_Parser_Tactic_withIds___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_apply(lean_object*); @@ -289,13 +378,18 @@ lean_object* l_Lean_Parser_Tactic_apply___closed__6; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_revert___closed__3; lean_object* l_Lean_Parser_Tactic_intros___closed__1; +lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_orelse___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_injection___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__6; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__2; +lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__5; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__5; extern lean_object* l_Lean_Parser_Term_namedHole; +lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Char_HasRepr___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_intro___elambda__1(lean_object*, lean_object*); @@ -305,81 +399,118 @@ lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__11; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__3; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__2; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___lambda__1___closed__1; extern lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_majorPremise___closed__3; lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_cases___closed__8; lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__10; lean_object* l_Lean_Parser_Tactic_majorPremise___closed__5; +lean_object* l_Lean_Parser_Tactic_paren_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_exact___closed__3; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__3; lean_object* l_Lean_Parser_Tactic_paren___closed__5; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__10; lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_traceState___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_assumption___closed__2; lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__8; extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__11; lean_object* l_Lean_Parser_Tactic_ident_x27; lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__4; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +extern lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_exact___closed__5; +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_induction___closed__10; +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_paren___closed__3; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__3; lean_object* l_Lean_Parser_Tactic_majorPremise___closed__2; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__4; +lean_object* l_Lean_Parser_Tactic_apply_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intro___closed__7; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__15; lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__5; +lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3; +extern lean_object* l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_injection___closed__3; extern lean_object* l_Lean_Parser_Term_structInst___closed__2; extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Tactic_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlock; extern lean_object* l_Lean_Parser_Term_explicitUniv___closed__4; lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__3; +lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Tactic_revert_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__1; +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__14; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__5(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_refine___closed__6; +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_skip___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_allGoals___closed__2; lean_object* l_Lean_Parser_Tactic_injection___closed__5; lean_object* l_Lean_Parser_Tactic_exact___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_apply; lean_object* l_Lean_Parser_Tactic_assumption___closed__5; +lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__3; lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess; lean_object* l_Lean_Parser_Tactic_paren___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; lean_object* l_Lean_Parser_Tactic_generalize___closed__10; lean_object* l_Lean_Parser_Tactic_paren___closed__2; lean_object* l_Lean_Parser_Tactic_subst___closed__3; lean_object* l_Lean_Parser_ParserState_popSyntax(lean_object*); +lean_object* l_Lean_Parser_Tactic_usingRec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_paren_parenthesizer___closed__4; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___lambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_underscore_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_injection___closed__7; +lean_object* l_Lean_Parser_Tactic_ident_x27_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__9; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__1; +lean_object* l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_case___closed__5; lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__2; +lean_object* l_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_orelse; lean_object* l_Lean_Parser_Tactic_allGoals___closed__6; lean_object* l_Lean_Parser_Tactic_subst___closed__5; @@ -388,7 +519,9 @@ lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_subst; lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__2; +lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__4; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Level_ident_parenthesizer___closed__2; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Tactic_intros___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__4; @@ -396,21 +529,32 @@ lean_object* l_Lean_Parser_Tactic_intros___closed__4; extern lean_object* l_Lean_Meta_mkAuxName___closed__1; lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__5; lean_object* l_Lean_Parser_sepBy1Info(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_withAlts_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_revert___lambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_withIds___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__6; +lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__1; +lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__7; +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__4; lean_object* l_Lean_Parser_nodeWithAntiquot(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_exact_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__5; lean_object* l_Lean_Parser_Tactic_underscoreFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_refine___closed__1; lean_object* l_Lean_Parser_Tactic_paren___closed__4; +lean_object* l_Lean_Parser_Tactic_intro_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__2; lean_object* l_Lean_Parser_Tactic_clear___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_refine___closed__2; @@ -430,13 +574,16 @@ lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__8; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_allGoals(lean_object*); lean_object* l_Lean_Parser_Tactic_subst___closed__7; lean_object* l_Lean_Parser_Tactic_induction___closed__6; +lean_object* l_Lean_Parser_Tactic_skip_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_withAlts___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_cases(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_withAlts; lean_object* l_Lean_Parser_Tactic_apply___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_refine___closed__4; +lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4; lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_exact; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -445,21 +592,30 @@ lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_case___closed__1; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__6; +lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__1; +lean_object* l_Lean_Parser_Tactic_injection_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_revert___closed__7; lean_object* l_Lean_Parser_Tactic_allGoals___closed__5; lean_object* l_Lean_Parser_Tactic_paren___closed__6; +lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__4; +lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_darrow___closed__2; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__4; +lean_object* l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__1; lean_object* l_Lean_Parser_Tactic_generalizingVars; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__9; lean_object* l_Lean_Parser_Tactic_induction___closed__3; extern lean_object* l_Lean_Meta_generalize___closed__1; lean_object* l_Lean_Parser_symbolInfo(lean_object*); +lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__10; lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__6; +lean_object* l_Lean_Parser_Tactic_exact_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_case___closed__8; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__4; @@ -469,7 +625,9 @@ lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__4; lean_object* l_Lean_Parser_Tactic_assumption___closed__3; extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; lean_object* l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__4; +lean_object* l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1; lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_exact_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__2; extern lean_object* l_Lean_Parser_Term_tacticBlock___closed__4; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -478,6 +636,8 @@ lean_object* l_Lean_Parser_Tactic_induction___closed__5; lean_object* l_Lean_Parser_Tactic_case___closed__2; lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__4; +lean_object* l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__3; @@ -487,13 +647,17 @@ lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parse lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_intro___closed__6; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__9(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_cases___closed__7; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_intros; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__5; +lean_object* l_Lean_Parser_Tactic_subst_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_case___closed__7; extern lean_object* l_Lean_Parser_Term_hole; lean_object* l_Lean_Parser_Tactic_underscore_parenthesizer___boxed(lean_object*); @@ -502,14 +666,21 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_paren(lean_object*); lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__2; lean_object* l_String_trim(lean_object*); lean_object* l_Lean_Parser_Tactic_nonEmptySeq___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_withIds_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_assumption_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_apply_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_apply___closed__1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_revert_parenthesizer___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_assumption(lean_object*); extern lean_object* l_Lean_Parser_Term_implicitBinder___closed__1; extern lean_object* l_Lean_Parser_Term_matchAlts___closed__1; lean_object* l_Lean_Parser_Tactic_underscoreFn___closed__2; +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__9; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__13; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Term_implicitBinder___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__7; lean_object* l_Lean_Parser_Tactic_induction___closed__4; extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__8; @@ -524,33 +695,48 @@ lean_object* l_Lean_Parser_Tactic_exact___closed__2; lean_object* l_Lean_Parser_Tactic_intro___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_namedHole___closed__6; +lean_object* l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__1; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__8; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__5; lean_object* l_Lean_Parser_Tactic_cases___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_underscoreFn___closed__1; lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer(lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_underscoreFn___closed__3; lean_object* l_Lean_Parser_manyFn(lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_induction(lean_object*); lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_induction___closed__9; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__3; +extern lean_object* l_Lean_Parser_Term_optIdent_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_allGoals___closed__4; lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_clear___closed__7; lean_object* l_Lean_Parser_Tactic_intro___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__4; lean_object* l_Lean_Parser_Tactic_injection___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__3; +lean_object* l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__3; +lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__3; extern lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1; +extern lean_object* l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_underscore_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Tactic_skip_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Tactic_cases_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intro___closed__3; lean_object* l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__2; +lean_object* l_Lean_Parser_Tactic_intros_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_orelse___closed__6; lean_object* l_Lean_Parser_Tactic_intro___closed__5; @@ -558,11 +744,14 @@ lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__1; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_skip(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_subst(lean_object*); lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__3; +extern lean_object* l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +lean_object* l_Lean_Parser_Tactic_ident_x27_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_skip; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__8; @@ -584,9 +773,12 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_traceState(lean_object*); lean_object* l_Lean_Parser_Tactic_paren; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_intro; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_intros_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Parser_inhabited___closed__1; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_refine; +extern lean_object* l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__5; lean_object* l_Lean_Parser_Tactic_seq___elambda__1(lean_object*, lean_object*); @@ -594,18 +786,22 @@ lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__3; extern lean_object* l_Lean_ppGoal___closed__7; lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_refine(lean_object*); lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_underscore_parenthesizer___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_skip___closed__4; lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__6; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_paren___closed__7; extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__14; +lean_object* l_Lean_Parser_Tactic_clear_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__4; uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_withAlts___closed__3; @@ -1300,6 +1496,110 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_ident_x27_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_underscore_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Tactic_ident_x27_parenthesizer(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; +x_5 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_6 = l_Lean_Parser_Tactic_ident_x27_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_ident_x27_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_intro___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_intro_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_intro_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_intro___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Tactic_intros___elambda__1___spec__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -1706,6 +2006,84 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_intros_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_intros_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Tactic_revert___elambda__1___spec__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -2135,6 +2513,84 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_revert___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_revert_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_revert_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_revert___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__1() { _start: { @@ -2502,6 +2958,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_clear_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_clear_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_clear___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_clear_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_clear_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_clear_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_clear_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_clear___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__1() { _start: { @@ -2869,6 +3381,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_subst_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_subst_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_subst_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_subst_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_subst_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_subst_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__1() { _start: { @@ -3128,6 +3696,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_assumption_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_assumption_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__1() { _start: { @@ -3447,6 +4071,74 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_apply___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_apply___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_apply_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_apply_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_apply___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__1() { _start: { @@ -3774,6 +4466,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_exact_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_exact_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_exact_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_exact_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_exact_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_exact_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__1() { _start: { @@ -4101,6 +4849,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_refine_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_refine_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_apply_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_refine_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_refine_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_refine_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_refine_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__1() { _start: { @@ -4460,6 +5264,86 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_case_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_case___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_case_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_case_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_case_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_case_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_case_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_case___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1() { _start: { @@ -4787,6 +5671,74 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_allGoals_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_allGoals_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__1() { _start: { @@ -5054,6 +6006,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_skip_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_skip___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_skip_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_skip___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_skip_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_skip_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_skip_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_skip_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_skip___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__1() { _start: { @@ -5321,6 +6329,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_traceState_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1() { _start: { @@ -5648,6 +6712,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_failIfSuccess_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_failIfSuccess_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__1() { _start: { @@ -6657,6 +7777,108 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_optIdent_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_le_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_generalize_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__1() { _start: { @@ -10741,6 +11963,376 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_majorPremise_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* l_Lean_Parser_Tactic_usingRec_parenthesizer(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_Parser_Term_namedHole_parenthesizer___closed__2; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Tactic_revert_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Tactic_generalizingVars_parenthesizer(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_Parser_Tactic_generalizingVars_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_fun_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_inductionAlt___closed__2; +x_6 = l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5; +x_7 = l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlt_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__1; +x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___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; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_7 = l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_2, x_3, x_4, x_5); +return x_8; +} +} +lean_object* _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___boxed), 5, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer(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_Parser_Tactic_inductionAlts_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* l_Lean_Parser_Tactic_inductionAlts_parenthesizer___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_Parser_Tactic_inductionAlts_parenthesizer___lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_inductionAlts_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Tactic_withAlts_parenthesizer(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_Parser_Tactic_withAlts_parenthesizer___closed__2; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_generalizingVars_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_withAlts_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_usingRec_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_majorPremise_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__7; +x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__8; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_induction___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__9; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_induction_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__10; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_induction_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_induction___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__1() { _start: { @@ -11104,6 +12696,86 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__7; +x_2 = l_Lean_Parser_Tactic_induction_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_cases___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_cases_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_cases_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_cases_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_cases___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_Tactic_withIds___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -11711,6 +13383,125 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_intro_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Tactic_withIds_parenthesizer(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_Parser_Tactic_withIds_parenthesizer___closed__2; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_withIds_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__2; +x_2 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_injection___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_injection_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_injection_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_injection_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_injection___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__1() { _start: { @@ -12245,6 +14036,86 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_paren___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___lambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_paren_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_paren_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___lambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__1() { _start: { @@ -12775,6 +14646,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__1() { _start: { @@ -13327,6 +15254,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__1() { _start: { @@ -13576,6 +15559,58 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Tactic_orelse_parenthesizer(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; +x_5 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(2u); +x_7 = l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_orelse_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Parser_Term(lean_object*); static bool _G_initialized = false; @@ -13646,6 +15681,23 @@ lean_mark_persistent(l_Lean_Parser_Tactic_intro); res = l___regBuiltinParser_Lean_Parser_Tactic_intro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_ident_x27_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_ident_x27_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_ident_x27_parenthesizer___closed__1); +l_Lean_Parser_Tactic_intro_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__1); +l_Lean_Parser_Tactic_intro_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__2); +l_Lean_Parser_Tactic_intro_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__3); +l_Lean_Parser_Tactic_intro_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__4); +l_Lean_Parser_Tactic_intro_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_intro_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_intro_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_intro_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_intros___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_intros___elambda__1___closed__1); l_Lean_Parser_Tactic_intros___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__2(); @@ -13683,6 +15735,19 @@ lean_mark_persistent(l_Lean_Parser_Tactic_intros); res = l___regBuiltinParser_Lean_Parser_Tactic_intros(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_intros_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__1); +l_Lean_Parser_Tactic_intros_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__2); +l_Lean_Parser_Tactic_intros_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__3); +l_Lean_Parser_Tactic_intros_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_intros_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_intros_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_revert___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_revert___elambda__1___closed__1); l_Lean_Parser_Tactic_revert___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__2(); @@ -13716,6 +15781,19 @@ lean_mark_persistent(l_Lean_Parser_Tactic_revert); res = l___regBuiltinParser_Lean_Parser_Tactic_revert(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_revert_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__1); +l_Lean_Parser_Tactic_revert_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__2); +l_Lean_Parser_Tactic_revert_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__3); +l_Lean_Parser_Tactic_revert_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_revert_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_revert_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_clear___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_clear___elambda__1___closed__1); l_Lean_Parser_Tactic_clear___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__2(); @@ -13749,6 +15827,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_clear); res = l___regBuiltinParser_Lean_Parser_Tactic_clear(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_clear_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_clear_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_clear_parenthesizer___closed__1); +l_Lean_Parser_Tactic_clear_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_clear_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_clear_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_clear_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_subst___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_subst___elambda__1___closed__1); l_Lean_Parser_Tactic_subst___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__2(); @@ -13782,6 +15869,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_subst); res = l___regBuiltinParser_Lean_Parser_Tactic_subst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_subst_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_subst_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_subst_parenthesizer___closed__1); +l_Lean_Parser_Tactic_subst_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_subst_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_subst_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_subst_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_assumption___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_assumption___elambda__1___closed__1); l_Lean_Parser_Tactic_assumption___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed__2(); @@ -13811,6 +15907,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_assumption); res = l___regBuiltinParser_Lean_Parser_Tactic_assumption(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_assumption_parenthesizer___closed__1); +l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_assumption_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_assumption_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_apply___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_apply___elambda__1___closed__1); l_Lean_Parser_Tactic_apply___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__2(); @@ -13844,6 +15949,17 @@ lean_mark_persistent(l_Lean_Parser_Tactic_apply); res = l___regBuiltinParser_Lean_Parser_Tactic_apply(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_apply_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_parenthesizer___closed__1); +l_Lean_Parser_Tactic_apply_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_parenthesizer___closed__2); +l_Lean_Parser_Tactic_apply_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_apply_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_apply_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_exact___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__1); l_Lean_Parser_Tactic_exact___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__2(); @@ -13879,6 +15995,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_exact); res = l___regBuiltinParser_Lean_Parser_Tactic_exact(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_exact_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_exact_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_parenthesizer___closed__1); +l_Lean_Parser_Tactic_exact_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_exact_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_exact_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_refine___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_refine___elambda__1___closed__1); l_Lean_Parser_Tactic_refine___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__2(); @@ -13914,6 +16039,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_refine); res = l___regBuiltinParser_Lean_Parser_Tactic_refine(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_refine_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_refine_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_refine_parenthesizer___closed__1); +l_Lean_Parser_Tactic_refine_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_refine_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_refine_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_refine_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_case___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_case___elambda__1___closed__1); l_Lean_Parser_Tactic_case___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_case___elambda__1___closed__2(); @@ -13947,6 +16081,19 @@ lean_mark_persistent(l_Lean_Parser_Tactic_case); res = l___regBuiltinParser_Lean_Parser_Tactic_case(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_case_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__1); +l_Lean_Parser_Tactic_case_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__2); +l_Lean_Parser_Tactic_case_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__3); +l_Lean_Parser_Tactic_case_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_case_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_case_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_case_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1); l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2(); @@ -13982,6 +16129,17 @@ lean_mark_persistent(l_Lean_Parser_Tactic_allGoals); res = l___regBuiltinParser_Lean_Parser_Tactic_allGoals(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1); +l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__2); +l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_allGoals_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_allGoals_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_skip___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_skip___elambda__1___closed__1); l_Lean_Parser_Tactic_skip___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__2(); @@ -14013,6 +16171,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_skip); res = l___regBuiltinParser_Lean_Parser_Tactic_skip(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_skip_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_skip_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_skip_parenthesizer___closed__1); +l_Lean_Parser_Tactic_skip_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_skip_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_skip_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_skip_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_traceState___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__1); l_Lean_Parser_Tactic_traceState___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__2(); @@ -14044,6 +16211,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_traceState); res = l___regBuiltinParser_Lean_Parser_Tactic_traceState(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1); +l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_traceState_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_traceState_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1); l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2(); @@ -14079,6 +16255,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess); res = l___regBuiltinParser_Lean_Parser_Tactic_failIfSuccess(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1); +l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_generalize___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_generalize___elambda__1___closed__1); l_Lean_Parser_Tactic_generalize___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed__2(); @@ -14128,6 +16313,23 @@ lean_mark_persistent(l_Lean_Parser_Tactic_generalize); res = l___regBuiltinParser_Lean_Parser_Tactic_generalize(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__1); +l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__2); +l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__3); +l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__4); +l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__5); +l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_generalize_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_generalize_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__1); l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__2(); @@ -14289,6 +16491,59 @@ lean_mark_persistent(l_Lean_Parser_Tactic_induction); res = l___regBuiltinParser_Lean_Parser_Tactic_induction(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__1); +l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__2); +l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_majorPremise_parenthesizer___closed__3); +l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_generalizingVars_parenthesizer___closed__1); +l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__1); +l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2); +l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3); +l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__4); +l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__5); +l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__1); +l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__2 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___lambda__1___closed__2); +l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_inductionAlts_parenthesizer___closed__1); +l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__1); +l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_withAlts_parenthesizer___closed__2); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__1); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__2); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__3); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__4); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__5); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__6 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__6); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__7 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__7); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__8 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__8); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__9 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__9); +l_Lean_Parser_Tactic_induction_parenthesizer___closed__10 = _init_l_Lean_Parser_Tactic_induction_parenthesizer___closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_induction_parenthesizer___closed__10); +l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_induction_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_cases___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_cases___elambda__1___closed__1); l_Lean_Parser_Tactic_cases___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__2(); @@ -14324,6 +16579,19 @@ lean_mark_persistent(l_Lean_Parser_Tactic_cases); res = l___regBuiltinParser_Lean_Parser_Tactic_cases(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_cases_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__1); +l_Lean_Parser_Tactic_cases_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__2); +l_Lean_Parser_Tactic_cases_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__3); +l_Lean_Parser_Tactic_cases_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_cases_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_cases_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_withIds___closed__1 = _init_l_Lean_Parser_Tactic_withIds___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_withIds___closed__1); l_Lean_Parser_Tactic_withIds___closed__2 = _init_l_Lean_Parser_Tactic_withIds___closed__2(); @@ -14369,6 +16637,25 @@ lean_mark_persistent(l_Lean_Parser_Tactic_injection); res = l___regBuiltinParser_Lean_Parser_Tactic_injection(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1); +l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_withIds_parenthesizer___closed__2); +l_Lean_Parser_Tactic_injection_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__1); +l_Lean_Parser_Tactic_injection_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__2); +l_Lean_Parser_Tactic_injection_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__3); +l_Lean_Parser_Tactic_injection_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__4); +l_Lean_Parser_Tactic_injection_parenthesizer___closed__5 = _init_l_Lean_Parser_Tactic_injection_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_injection_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_paren___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_paren___elambda__1___closed__1); l_Lean_Parser_Tactic_paren___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__2(); @@ -14392,6 +16679,19 @@ lean_mark_persistent(l_Lean_Parser_Tactic_paren); res = l___regBuiltinParser_Lean_Parser_Tactic_paren(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_paren_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_paren_parenthesizer___closed__1); +l_Lean_Parser_Tactic_paren_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_paren_parenthesizer___closed__2); +l_Lean_Parser_Tactic_paren_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_paren_parenthesizer___closed__3); +l_Lean_Parser_Tactic_paren_parenthesizer___closed__4 = _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_paren_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__1); l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__2(); @@ -14415,6 +16715,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_nestedTacticBlock); res = l___regBuiltinParser_Lean_Parser_Tactic_nestedTacticBlock(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1); +l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlock_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__1); l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1___closed__2(); @@ -14442,6 +16751,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_nestedTacticBlockCurly); res = l___regBuiltinParser_Lean_Parser_Tactic_nestedTacticBlockCurly(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1); +l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_nestedTacticBlockCurly_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Tactic_orelse___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_orelse___elambda__1___closed__1); l_Lean_Parser_Tactic_orelse___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__2(); @@ -14471,6 +16789,15 @@ lean_mark_persistent(l_Lean_Parser_Tactic_orelse); res = l___regBuiltinParser_Lean_Parser_Tactic_orelse(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse_parenthesizer___closed__1); +l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Tactic_orelse_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 8d01d964ba..9c9fb54ec6 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -14,33 +14,52 @@ extern "C" { #endif lean_object* l_Lean_Parser_Term_if___elambda__1___closed__15; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__9; +lean_object* l_Lean_Parser_Term_le_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_do___closed__4; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_fcomp___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_le___closed__4; lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__4; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitToken___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_ne(lean_object*); lean_object* l_Lean_Parser_Term_explicitUniv___closed__7; lean_object* l_Lean_Parser_Term_div___closed__3; lean_object* l_Lean_Parser_Term_bnot___closed__6; lean_object* l_Lean_Parser_Term_doExpr___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_matchAlt___closed__5; +lean_object* l_Lean_Parser_Term_instBinder_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_subtype_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_doPat___closed__7; +lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_liftMethod_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_bor_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_uminus_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_not; extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_Parser_Term_letIdDecl; lean_object* l_Lean_Parser_Term_heq___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_str_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_matchAlts___closed__3; +lean_object* l_Lean_Parser_Term_binderType_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_match__syntax_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_levelStxQuot___closed__6; lean_object* l_Lean_Parser_Term_infixL___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_band_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__4; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_map_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_iff(lean_object*); +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchDiscr___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_suffices(lean_object*); lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__7; @@ -52,11 +71,16 @@ lean_object* l_Lean_Parser_Term_subst; lean_object* l_Lean_Parser_darrow___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_quotedName___closed__4; lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_emptyC_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_structInst___closed__20; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_nomatch_parenthesizer___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_lt_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_bindOp___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_manyAux___main___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_forall_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__10; +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_if___closed__13; lean_object* l___regBuiltinParser_Lean_Parser_Term_sub(lean_object*); lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__1; @@ -64,6 +88,7 @@ lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__9; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_or___closed__1; +lean_object* l_Lean_Parser_Term_proj_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_listLit___elambda__1___spec__1(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__4; @@ -84,8 +109,10 @@ lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__5; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__18; lean_object* l___regBuiltinParser_Lean_Parser_Term_structInst(lean_object*); lean_object* l_Lean_Parser_Term_gt___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_arrow_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__20; +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstField___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_optIdent___closed__3; @@ -93,9 +120,11 @@ lean_object* l_Lean_Parser_Term_lt___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_seqLeft___closed__4; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_num_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide___closed__6; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_doPat_parenthesizer___closed__2; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_have___elambda__1___closed__7; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); @@ -104,51 +133,78 @@ lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parse lean_object* l_Lean_Parser_Term_bnot___closed__4; lean_object* l_Lean_Parser_Term_sub___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_doExpr_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_optType___closed__2; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__8; lean_object* l___regBuiltinParser_Lean_Parser_Term_dollarProj(lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_emptyC_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_band_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__1; lean_object* l_Lean_Parser_Term_borrowed___closed__4; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_matchDiscr___closed__2; lean_object* l_Lean_Parser_Term_mapRev___elambda__1___closed__3; lean_object* l_Lean_Parser_darrow___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_id_parenthesizer___closed__5; lean_object* l_Lean_Parser_sepByInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicit___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_ge(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_and_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_do_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_doId_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_doPat___closed__3; +lean_object* l_Lean_Parser_Term_div_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlt___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___closed__2; lean_object* l_Lean_Parser_Term_structInst___closed__1; +lean_object* l_Lean_Parser_Term_type_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_andM___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sorry___closed__6; +lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_proj; +lean_object* l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_dollar___elambda__1(lean_object*, lean_object*); extern lean_object* l_addParenHeuristic___closed__2; +lean_object* l_Lean_Parser_Term_instBinder_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_add(lean_object*); lean_object* l_Lean_Parser_Term_byTactic___closed__4; +lean_object* l_Lean_Parser_Term_num_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_show; lean_object* l_Lean_Parser_Term_matchDiscr___closed__1; +lean_object* l_Lean_Parser_Term_band_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_ne___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_band; lean_object* l_Lean_Parser_Term_leadPrec___closed__1; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_sub___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__5; extern lean_object* l_Array_iterateMAux___main___at_Lean_ppGoal___spec__6___closed__3; +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__3; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_where_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_do___elambda__1___closed__8; extern lean_object* l_Lean_Nat_HasQuote___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_match_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_le; extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Parser_Term_instBinder; lean_object* l_Lean_Parser_Term_fun___closed__7; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_match__syntax_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Level_paren___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_inaccessible___closed__1; +lean_object* l_Lean_Parser_Term_bindOp_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_mapRev_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_not___closed__6; lean_object* l_Lean_Parser_Term_matchAlts(uint8_t); lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__7; @@ -158,34 +214,46 @@ lean_object* l_Lean_Parser_Term_simpleBinder___closed__5; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_lt___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_namedArgument___closed__7; +lean_object* l_Lean_Parser_Term_add_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_bne___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_suffices___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doExpr___closed__2; lean_object* l_Lean_Parser_Term_explicit___closed__1; lean_object* l_Lean_Parser_Term_andthen___closed__3; +lean_object* l_Lean_Parser_Term_iff_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bracketedBinder(uint8_t); +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_structInst___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepBy_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_explicit(lean_object*); lean_object* l_Lean_Parser_Term_letEqnsDecl___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_if_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_type___closed__3; lean_object* l_Lean_Parser_Term_subtype___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_append(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_levelStxQuot___closed__5; +lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_haveAssign___closed__2; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_let_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide___closed__3; lean_object* l_Lean_Parser_Term_forall___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_optType_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__1; extern lean_object* l_Lean_Meta_mkDecideProof___closed__1; lean_object* l_Lean_Parser_Term_not___closed__5; +lean_object* l_Lean_Parser_Term_orelse_parenthesizer___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_pow___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_char___closed__3; lean_object* l_Lean_Parser_Term_listLit___closed__3; lean_object* l_Lean_Parser_Term_match___closed__7; +lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_pow(lean_object*); lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_listLit___elambda__1___closed__3; @@ -199,20 +267,30 @@ lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_seqLeft___closed__2; lean_object* l_Lean_Parser_Term_namedArgument___closed__5; lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__5; +extern lean_object* l_Lean_Parser_Level_max_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_seq; extern lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5; +lean_object* l_Lean_Parser_Term_le_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_mod_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_show___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_instBinder_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_do_parenthesizer___closed__3; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; +lean_object* l_Lean_Parser_Term_bracketedDoSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match; lean_object* l_Lean_Parser_Term_depArrow; lean_object* l_Lean_Parser_Term_heq___elambda__1___closed__1; extern lean_object* l_Lean_List_format___rarg___closed__2; +lean_object* l_Lean_Parser_Term_match__syntax_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_structInstField_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_proj_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___closed__7; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__9; lean_object* l___regBuiltinParser_Lean_Parser_Term_liftMethod(lean_object*); lean_object* l_Lean_Parser_Term_iff___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_have___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_do___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__4; @@ -222,77 +300,116 @@ lean_object* l_Lean_Parser_Term_explicitUniv; extern lean_object* l_Int_repr___closed__1; lean_object* l_Lean_Parser_Term_mul___closed__4; extern lean_object* l_Lean_Parser_charLit; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bnot___closed__1; lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___closed__4; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_subst_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_match__syntax___closed__7; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__5; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19; +lean_object* l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_fcomp_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_matchAlt___closed__8; lean_object* l_Lean_Parser_Term_prod___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_forall_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_darrow___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_anonymousCtor___elambda__1___spec__1(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___elambda__1___closed__7; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +lean_object* l_Lean_Parser_Term_match_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_and___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doSeq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_div; +lean_object* l_Lean_Parser_Term_sort_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__12; +lean_object* l_Lean_Parser_Term_andM_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_str_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_simpleBinder___closed__1; lean_object* l_Lean_Parser_Term_do___closed__3; lean_object* l_Lean_Parser_Term_decide___closed__6; lean_object* l_Lean_Parser_Term_div___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_if___closed__10; +lean_object* l_Lean_Parser_Term_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_subst___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_levelStxQuot___closed__1; lean_object* l_Lean_Parser_Term_prop; extern lean_object* l_Lean_Meta_substCore___lambda__3___closed__1; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_seqLeft___elambda__1___closed__1; lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Tactic_seq___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Tactic_seq___elambda__1___spec__1(uint8_t, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_append_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_hole___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_seqRight___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_do___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__4; lean_object* l_Lean_Parser_regTacticParserAttribute___closed__2; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_tacticBlock___closed__3; lean_object* l_Lean_Parser_Term_nativeRefl___closed__4; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_arrayRef_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_subst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_doElem_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_letPatDecl___closed__2; lean_object* l_Lean_Parser_Term_where___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_letPatDecl; lean_object* l_Lean_Parser_Term_bnot___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_levelStxQuot(lean_object*); lean_object* l_Lean_Parser_Term_typeAscription___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_band___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_and___closed__3; +lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_arrayLit___closed__7; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_prop_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_parenSpecial___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_seqLeft___elambda__1___closed__2; extern lean_object* l_Lean_Parser_pushNone; +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_eq_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_fromTerm_parenthesizer___closed__2; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_binderTactic___closed__7; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_cdot___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Term_bor_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_andM___closed__2; +lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstLVal___closed__10; lean_object* l_Lean_Parser_Term_doId___closed__5; lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__2; @@ -303,7 +420,9 @@ lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__7; lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_byTactic; lean_object* l_Lean_Parser_Term_have___closed__3; +lean_object* l_Lean_Parser_Term_arrayLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__1; @@ -312,12 +431,17 @@ lean_object* l_Lean_Parser_Term_dollarProj___elambda__1(lean_object*, lean_objec lean_object* l_Lean_Parser_Term_doPat; lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_sort___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_heq___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_namedPattern___closed__3; +lean_object* l_Lean_Parser_Term_let_x21_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__4; extern lean_object* l_Sigma_HasRepr___rarg___closed__1; lean_object* l_Lean_Parser_Term_listLit___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_emptyC(lean_object*); +lean_object* l_Lean_Parser_Term_prod_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_quotedName___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_band_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_subst___closed__6; extern lean_object* l_Lean_Parser_ident; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); @@ -326,15 +450,20 @@ lean_object* l_Lean_Parser_Term_show___elambda__1___closed__6; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_simpleBinder___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdLhs___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_optIdent___closed__1; +lean_object* l_Lean_Parser_Term_bnot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_heq___closed__4; lean_object* l_Lean_Parser_Term_lt___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_arrow___closed__1; lean_object* l_Lean_Parser_Term_forall___closed__3; +lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_subtype___closed__1; +lean_object* l_Lean_Parser_Term_arrayLit_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__4; lean_object* l_Lean_Parser_Term_or___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2; @@ -347,31 +476,52 @@ lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__3; lean_object* l_Lean_Parser_Term_equiv___closed__2; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_suffices___closed__9; +lean_object* l___regBuiltin_Lean_Parser_Term_div_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_andthen(lean_object*); lean_object* l_Lean_Parser_Term_ge___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_type_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_cons_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_prop_parenthesizer(lean_object*); lean_object* l_Lean_Parser_darrow; lean_object* l_Lean_Parser_Term_matchDiscr___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_arrow___closed__2; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_uminus___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_le_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_app_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstLVal___closed__7; +lean_object* l_Lean_Parser_Term_nomatch_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doPat___closed__2; +lean_object* l_Lean_Parser_Term_bor_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_where_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_heq___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_do___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_cons___closed__4; lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_seq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_doSeq___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_matchAlts___closed__6; lean_object* l_Lean_Parser_Term_liftMethod___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedArgument___closed__3; +lean_object* l_Lean_Parser_Term_dollarProj_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_doElem_parenthesizer___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_do(lean_object*); lean_object* l_Lean_Parser_Term_num___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_and_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__9; lean_object* l_Lean_Parser_regTacticParserAttribute___closed__1; lean_object* l_Lean_Parser_Term_letPatDecl___closed__4; @@ -381,11 +531,13 @@ lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1(lean_object*, lean_objec lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_match___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_or___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_quotedName___closed__5; +lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_match__syntax___closed__3; extern lean_object* l_Lean_Parser_symbolNoWsFn___closed__1; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_byTactic___closed__1; lean_object* l_Lean_Parser_Term_bor___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_hole___closed__2; @@ -399,8 +551,10 @@ lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__2; extern lean_object* l_Lean_Meta_evalNat___main___closed__10; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_cdot___closed__4; +lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__7; lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_cons_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; lean_object* l_Lean_Parser_regBuiltinTacticParserAttr(lean_object*); lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__3; @@ -408,21 +562,30 @@ lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parse lean_object* l_Lean_Parser_Term_doPat___closed__4; lean_object* l_Lean_Parser_Term_doId___closed__2; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_add_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_decide; +lean_object* l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_listLit___closed__2; +lean_object* l_Lean_Parser_Term_andthen_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_band___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_seqRight___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_eq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_let_x21(lean_object*); lean_object* l_Lean_Parser_Term_let___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_not___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_doElem_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_optIdent___closed__4; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Parser_Term_doId___closed__1; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__10; @@ -435,6 +598,7 @@ lean_object* l_Lean_Parser_Term_app___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer___boxed(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sorry___closed__2; @@ -444,78 +608,119 @@ lean_object* l_Lean_Parser_Term_num___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__18; lean_object* l___regBuiltinParser_Lean_Parser_Term_map(lean_object*); lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_borrowed_parenthesizer___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_let(lean_object*); lean_object* l_Lean_Parser_Term_doPat___closed__8; lean_object* l_Lean_Parser_Term_id___closed__4; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_show___closed__6; +lean_object* l_Lean_Parser_Term_doId_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_listLit___closed__4; +extern lean_object* l_Lean_Parser_charLit___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_hole___closed__5; +lean_object* l_Lean_Parser_Term_add_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_gt___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_fun_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_optType___closed__1; lean_object* l_Lean_Parser_Term_funBinder; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_match__syntax___closed__5; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_mod___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_instBinder___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_pow_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_le_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_haveAssign_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_instBinder_parenthesizer___closed__4; extern lean_object* l_Lean_Expr_listLitAux___main___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_proj_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_id_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_and; extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_Lean_Parser_Term_gt___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___closed__10; +lean_object* l___regBuiltin_Lean_Parser_Term_bne_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_levelStxQuot___closed__2; lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_tacticBlock_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_parenSpecial___closed__1; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_seq___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_binderType_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_listLit___closed__9; lean_object* l_Lean_Parser_Term_structInstLVal___closed__9; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_hole_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_forall___closed__7; +lean_object* l_Lean_Parser_Term_prop_parenthesizer___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_tparser_x21(lean_object*); +lean_object* l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_emptyC_parenthesizer___closed__1; extern lean_object* l_List_repr___rarg___closed__3; lean_object* l_Lean_Parser_Term_liftMethod___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_let_x21_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; lean_object* l_Lean_Parser_checkPrecFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__9; lean_object* l_Lean_Parser_Term_sorry___closed__1; +lean_object* l_Lean_Parser_Term_doId_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder___closed__10; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_let_x21___closed__6; +lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_simpleBinder___closed__3; lean_object* l_Lean_Parser_Term_heq___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_parser_x21___closed__5; lean_object* l_Lean_Parser_Tactic_nonEmptySeq; lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__6; +lean_object* l_Lean_Parser_group_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_heq_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bnot___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_instBinder___closed__7; +lean_object* l_Lean_Parser_Term_uminus_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Parser_Term_if; lean_object* l_Lean_Parser_Term_paren; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__1; lean_object* l_Lean_Parser_Term_heq___closed__3; lean_object* l_Lean_Parser_ParserState_mkErrorsAt(lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_orM_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_nativeRefl(lean_object*); +lean_object* l_Lean_Parser_Term_le_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_uminus_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_mul___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__8; +lean_object* l_Lean_Parser_Term_pow_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_fun___elambda__1___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_pow_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doId___closed__8; lean_object* l_Lean_Parser_Term_binderType(uint8_t); lean_object* l_Lean_Parser_Term_cons___elambda__1___closed__1; @@ -523,15 +728,22 @@ lean_object* l_Lean_Parser_Term_letDecl___closed__2; lean_object* l_Lean_Parser_Term_optIdent___closed__2; lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_listLit___closed__8; +lean_object* l_Lean_Parser_Term_orelse_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_parser_x21___closed__7; +lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_eq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doPat___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_liftMethod___closed__4; lean_object* l_Lean_Parser_Term_have___closed__7; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_structInstLVal___elambda__1___spec__1___closed__2; +lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_not___closed__2; +lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___boxed(lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_not_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_implicitBinder___closed__4; lean_object* l_Lean_Parser_Tactic_nonEmptySeq___closed__4; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__11; @@ -539,46 +751,69 @@ extern lean_object* l_Lean_mkTermIdFromIdent___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___closed__10; lean_object* l_Lean_Parser_Term_do___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_where___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_map_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_ge_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_liftMethod___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_prod___closed__3; lean_object* l_Lean_Parser_Term_doId___closed__4; +lean_object* l_Lean_Parser_Term_str_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_lt___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_pow___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_uminus___closed__7; +lean_object* l_Lean_Parser_Term_liftMethod_parenthesizer___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_hole_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_borrowed; +lean_object* l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_fcomp___closed__4; lean_object* l_Lean_Parser_Term_and___closed__1; lean_object* l_Lean_Parser_Term_paren___closed__7; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_structInstLVal___elambda__1___spec__1___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__4; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___closed__2; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_unicodeSymbol_parenthesizer___boxed(lean_object*); +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__9; +lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_Lean_Parser_Term_explicit___closed__4; lean_object* l_Lean_Parser_Term_cdot___closed__1; lean_object* l_Lean_Parser_Term_namedPattern___closed__7; extern lean_object* l_Lean_Parser_fieldIdx___closed__4; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__13; extern lean_object* l_Sigma_HasRepr___rarg___closed__2; lean_object* l_Lean_Parser_Term_liftMethod___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_nativeDecide(lean_object*); lean_object* l_Lean_Parser_Term_letPatDecl___closed__6; lean_object* l_Lean_Parser_Term_bor___closed__1; +lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer(lean_object*); lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_doElem___closed__5; +lean_object* l_Lean_Parser_Term_iff_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_lt_parenthesizer___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_inaccessible; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_where_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_match___closed__3; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__4; @@ -588,54 +823,79 @@ lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_matchDiscr___closed__5; lean_object* l_Lean_Parser_Term_let_x21___closed__5; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__5; lean_object* l_Lean_Parser_tacticParser(lean_object*); lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__3; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_doPat___closed__6; +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_borrowed_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_sorry___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_heq_parenthesizer___closed__1; lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__2; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_where___closed__4; +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_band_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_prod___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_paren___closed__5; lean_object* l_Lean_Parser_Term_infixR___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__9; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_arrayLit___closed__6; lean_object* l_Lean_Parser_Term_str; +lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_decide___closed__5; lean_object* l_Lean_Parser_Term_structInstLVal___closed__5; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_eq___closed__4; +lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___lambda__1___closed__4; lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_depArrow___closed__8; lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_sorry(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___closed__4; lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_or___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__22; lean_object* l_Lean_Parser_Term_listLit___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_app_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_ge___closed__1; +extern lean_object* l_Lean_Parser_Level_num_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_arrayRef___closed__5; +lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2; lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_iff_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bindOp___closed__3; lean_object* l_Lean_Parser_Term_add___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_seq_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_beq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dollar; lean_object* l_Lean_Parser_Term_cdot___closed__3; lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_mul___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__8; +lean_object* l_Lean_Parser_Term_cons_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_orM_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_listLit___closed__6; +lean_object* l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_doElem_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_paren___closed__1; lean_object* l_Lean_Parser_Term_add___elambda__1___closed__1; @@ -643,6 +903,7 @@ lean_object* l_Lean_Parser_Term_letPatDecl___closed__1; lean_object* l_Lean_Parser_Term_binderType___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdDecl___closed__10; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_add___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__6; @@ -655,8 +916,11 @@ lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__6; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__15; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbolNoWs_parenthesizer___boxed(lean_object*); +extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; lean_object* l_Lean_Parser_Term_suffices___closed__4; lean_object* l_Lean_Parser_Term_nativeRefl___closed__1; +lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__5; extern lean_object* l_Lean_Meta_reduceNat_x3f___closed__12; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_funBinder___closed__3; @@ -671,16 +935,25 @@ lean_object* l_Lean_Parser_Term_hole___closed__4; lean_object* l_Lean_Parser_Term_cons___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_structInstLVal___closed__3; lean_object* l_Lean_Parser_Term_fun___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_darrow_parenthesizer___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_num___closed__2; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_map_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderDefault; +lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_char_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_bor_parenthesizer(lean_object*); +extern lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_sort___closed__1; +lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_arrayLit(lean_object*); lean_object* l_Lean_Parser_Term_do___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__11; @@ -688,7 +961,9 @@ lean_object* l_Lean_Parser_Term_bracketedDoSeq; lean_object* l_Lean_Parser_Term_or___closed__4; lean_object* l_Lean_Parser_Term_paren___closed__3; lean_object* l_Lean_Parser_Term_eq; +lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_prod___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_sort___closed__2; lean_object* l_Lean_Parser_Term_uminus___closed__3; @@ -697,39 +972,59 @@ lean_object* l_Lean_Parser_Term_namedHole___elambda__1(lean_object*, lean_object lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_let_x21___closed__3; lean_object* l_Lean_Parser_Term_typeAscription; +lean_object* l___regBuiltin_Lean_Parser_Term_gt_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_mul_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_simpleBinder___closed__4; lean_object* l_Lean_Parser_Term_lt___closed__3; lean_object* l_Lean_Parser_Term_div___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_not_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__1; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_forall___elambda__1___spec__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_iff_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_parser_x21(lean_object*); lean_object* l_Lean_Parser_Term_fromTerm___closed__1; +lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__5; lean_object* l_Lean_Parser_Term_subtype___closed__7; lean_object* l_Lean_Parser_Term_orM___closed__4; lean_object* l_Lean_Parser_Term_quotedName___closed__2; +lean_object* l_Lean_Parser_Term_mapRev_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_namedPattern; lean_object* l_Lean_Parser_Term_seqLeft___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__3; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_match_parenthesizer___closed__1; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_and_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrow; +lean_object* l___regBuiltin_Lean_Parser_Term_char_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_arrow___closed__4; +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__8; +lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdLhs___closed__5; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__1; lean_object* l_Lean_Parser_manyAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_match___closed__6; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_mapRev___closed__1; +lean_object* l_Lean_Parser_Term_lt_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_do___closed__2; +lean_object* l_Lean_Parser_Term_add_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_tparser_x21_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInst___closed__17; +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__5; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let___closed__9; lean_object* l_Lean_Parser_Term_gt___closed__2; @@ -738,6 +1033,7 @@ lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_optIdent; lean_object* l_Lean_Parser_Term_paren___closed__2; +lean_object* l_Lean_Parser_Term_uminus_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_matchDiscr___closed__3; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_mapRev(lean_object*); @@ -751,9 +1047,11 @@ lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_uminus___closed__4; lean_object* l_Lean_Parser_Term_prod; +lean_object* l_Lean_Parser_Term_pow_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_let___closed__8; lean_object* l_Lean_Parser_Term_optType; +lean_object* l___regBuiltin_Lean_Parser_Term_paren_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_tupleTail___closed__1; lean_object* l_Lean_Parser_Term_not___elambda__1(lean_object*, lean_object*); @@ -761,19 +1059,25 @@ lean_object* l_Lean_Parser_Term_le___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__1; extern lean_object* l_Lean_Nat_HasQuote___closed__1; lean_object* l_Lean_Parser_Tactic_seq___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_letEqnsDecl___closed__3; lean_object* l_Lean_Parser_Term_str___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_ge_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__11; +lean_object* l_Lean_Parser_darrow_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_band___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_ge___closed__4; lean_object* l_Lean_Parser_Term_nomatch; lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_parenSpecial; +lean_object* l_Lean_Parser_Term_andthen_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_funBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_proj___closed__4; lean_object* l_Lean_Parser_Term_nativeRefl___closed__2; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__13; lean_object* l_Lean_Parser_Term_pow___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_char___closed__1; lean_object* l_Lean_Parser_Term_fun; @@ -784,17 +1088,23 @@ lean_object* l_Lean_Parser_Term_structInst___closed__4; lean_object* l_Lean_Parser_Term_num___closed__4; extern lean_object* l_Lean_Parser_dollarSymbol; lean_object* l_Lean_Parser_Term_suffices___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_fromTerm___closed__2; lean_object* l_Lean_Parser_symbolFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_id___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_seq___closed__3; lean_object* l_Lean_Parser_Term_let___closed__4; +lean_object* l_Lean_Parser_strLit_parenthesizer___closed__1; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1; +lean_object* l_Lean_Parser_darrow_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_decide___closed__7; +lean_object* l_Lean_Parser_Term_lt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_let_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_have___closed__11; lean_object* l_Lean_Parser_Term_doSeq___closed__1; lean_object* l_Lean_Parser_Term_or___elambda__1___closed__1; @@ -802,20 +1112,25 @@ lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__7; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderTactic; lean_object* l_Lean_Parser_Term_paren___closed__9; +lean_object* l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_mapRev___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_forall(lean_object*); lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_instBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bor___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__9(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_ge___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; lean_object* l_Lean_Parser_Term_optExprPrecedence___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_mod_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_typeSpec___closed__2; +lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_andM(lean_object*); lean_object* l_Lean_Parser_Term_parenSpecial___closed__3; lean_object* l_Lean_Parser_Term_ne___elambda__1___closed__2; @@ -824,34 +1139,50 @@ lean_object* l_Lean_Parser_Term_doId___elambda__1___closed__4; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_decide___closed__3; +lean_object* l_Lean_Parser_Term_quotedName_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_listLit; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); +lean_object* l_Lean_Parser_Term_listLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_letDecl; lean_object* l_Lean_Parser_Term_id___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__8; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_where_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__8; +lean_object* l___regBuiltin_Lean_Parser_Term_modN_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_mul_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___closed__6; lean_object* l_Lean_Parser_Term_equiv; lean_object* l_Lean_Parser_Term_doId___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_sort; lean_object* l_Lean_Parser_Term_ne___elambda__1___closed__1; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_mul___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___closed__7; +lean_object* l_Lean_Parser_Term_byTactic_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_heq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_beq; +lean_object* l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_mapRev___closed__4; lean_object* l_Lean_Parser_Term_prop___closed__2; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_andthen_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bne; lean_object* l_Lean_Parser_Term_dollar___closed__5; +lean_object* l_Lean_Parser_Term_band_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder___closed__7; lean_object* l_Lean_Parser_Term_match___closed__5; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkWsBeforeFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ne___closed__4; lean_object* l_Lean_Parser_Term_le___elambda__1___closed__3; @@ -862,24 +1193,31 @@ lean_object* l_Lean_Parser_Term_where___closed__9; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__4; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_binderIdent___closed__3; lean_object* l_Lean_Parser_Term_band___elambda__1___closed__1; lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__2; extern lean_object* l_Lean_getBuiltinSearchPath___closed__1; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_doExpr_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_dollar(lean_object*); +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_explicitUniv___closed__5; +lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_let___closed__6; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_beq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__6; lean_object* l_Lean_Parser_Term_seqRight___closed__4; lean_object* l_Lean_Parser_Term_lt___closed__2; lean_object* l_Lean_Parser_Term_sorry___closed__3; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__2; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_app___elambda__1___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_dollar_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInstField___closed__2; lean_object* l_Lean_Parser_Term_have; @@ -894,51 +1232,74 @@ lean_object* l_Lean_Parser_Term_fcomp___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_paren___closed__8; lean_object* l_Lean_Parser_Term_append___closed__2; lean_object* l_Lean_Parser_Term_leftArrow___closed__3; +lean_object* l_Lean_Parser_Term_modN_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letPatDecl___closed__5; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_type___closed__7; lean_object* l_Lean_Parser_Term_arrayRef; lean_object* l_Lean_Parser_Term_cdot; lean_object* l_Lean_Parser_Term_depArrow___closed__9; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_nonEmptySeq___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_darrow_parenthesizer___boxed(lean_object*); +lean_object* l_Lean_Parser_Term_fcomp_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_iff_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nativeRefl___closed__6; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_orM___closed__1; lean_object* l_Lean_Parser_Term_sub___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_equiv___elambda__1___closed__1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkWsBefore_parenthesizer___boxed(lean_object*); +lean_object* l_Lean_Parser_Term_app_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_not___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_doElem___closed__4; +lean_object* l_Lean_Parser_Term_byTactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_seqLeft___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_eq(lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder___closed__3; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_have_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_bnot; lean_object* l_Lean_Parser_Term_doLet___closed__3; lean_object* l_Lean_Parser_Term_seq___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bnot___closed__5; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__3; extern lean_object* l_Lean_String_HasQuote___closed__1; lean_object* l_Lean_Parser_Term_paren___closed__4; uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_prod_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_funBinderStxQuot; lean_object* l_Lean_Parser_Term_mul; lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_quotedName; +lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_mod; +lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__1; extern lean_object* l_Lean_Meta_reduceNat_x3f___closed__10; lean_object* l_Lean_Parser_optionaInfo(lean_object*); lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_doSeq; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_id_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_pow_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_quotedName_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_if___closed__8; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_doElem; lean_object* l_Lean_Parser_Term_where___closed__8; +lean_object* l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_sort_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_do___closed__6; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_doId___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__7; @@ -949,20 +1310,28 @@ lean_object* l_Lean_Parser_Term_bne___closed__3; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_sorry___closed__5; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__4; +lean_object* l_Lean_Parser_Term_do_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_show___closed__4; +lean_object* l_Lean_Parser_Term_mapRev_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_doId_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_nameLit; +lean_object* l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subtype; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_nativeDecide___closed__5; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__9; +lean_object* l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_str___closed__3; lean_object* l_Lean_Parser_Term_equiv___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_explicitUniv___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_bne(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_inaccessible(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_where_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_depArrow___closed__2; +lean_object* l_Lean_Parser_Term_bne_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_div___closed__4; lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___elambda__1(lean_object*, lean_object*); @@ -971,18 +1340,27 @@ lean_object* l_Lean_Parser_Term_str___closed__5; lean_object* l_Lean_Parser_Term_andM___closed__1; lean_object* l_Lean_Parser_Term_listLit___closed__5; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__14; +lean_object* l_Lean_Parser_Term_seqLeft_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_anonymousCtor___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchDiscr___closed__7; +lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Parser_checkTailNoWs(lean_object*); +lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_arrayLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__3; lean_object* l_Lean_Parser_Term_emptyC___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_orelse___closed__1; +lean_object* l_Lean_Parser_Term_doLet_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_fun_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_fromTerm; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__6; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_funBinder___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ne___closed__3; +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_add_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_show___closed__2; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_orelse___closed__2; @@ -991,33 +1369,49 @@ lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1(lean_object*, lean_o lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_or_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_structInstLVal; lean_object* l_Lean_Parser_Term_orM; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_append_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_letEqnsDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_heq; lean_object* l_Lean_Parser_Term_inaccessible___closed__6; lean_object* l_Lean_Parser_Term_structInst___closed__5; lean_object* l_Lean_Parser_Term_le___closed__3; lean_object* l_Lean_Parser_Term_fcomp; +lean_object* l_Lean_Parser_Term_levelStxQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tupleTail___closed__7; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_structInst___closed__14; lean_object* l_Lean_Parser_Term_depArrow___closed__4; +lean_object* l_Lean_Parser_Term_quotedName_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_PersistentArray_Stats_toString___closed__4; lean_object* l_Lean_Parser_Term_subtype___closed__5; +lean_object* l_Lean_Parser_Term_orM_parenthesizer___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_bindOp(lean_object*); lean_object* l_Lean_Parser_Term_nativeDecide___closed__4; +lean_object* l_Lean_Parser_Term_byTactic_parenthesizer___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_seqRight___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_ge_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_sort___closed__4; lean_object* l_Lean_Parser_Term_namedHole; lean_object* l_Lean_Parser_Term_prod___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_heq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_paren___closed__6; +lean_object* l_Lean_Parser_Term_borrowed_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Char_HasRepr___closed__1; +lean_object* l_Lean_Parser_Term_or_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_emptyC___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_subst_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_orelse_parenthesizer___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_seqRight(lean_object*); +lean_object* l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_match__syntax_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_char___closed__4; lean_object* l_Lean_Parser_checkNoWsBeforeFn(lean_object*, lean_object*, lean_object*); @@ -1031,39 +1425,56 @@ lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1(lean_object*, lean_obje lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_where___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__8; lean_object* l_Lean_Parser_strAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fun___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_dollarProj_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_nomatch_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_cdot___closed__5; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_tupleTail___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_num___closed__1; +lean_object* l_Lean_Parser_Term_hole_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__2; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_listLit_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_byTactic___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_fieldIdx___closed__2; lean_object* l_Lean_Parser_Term_andthen___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchDiscr___closed__8; lean_object* l_Lean_Parser_Term_fcomp___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_cons; +lean_object* l_Lean_Parser_Term_iff_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_nomatch___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_fcomp_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_type(lean_object*); lean_object* l_Lean_Parser_Term_nativeDecide___closed__1; lean_object* l_Lean_Parser_Term_nativeRefl___closed__5; lean_object* l_Lean_Parser_Term_binderIdent___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_tacticBlock(lean_object*); +lean_object* l_Lean_Parser_Term_doLet_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_ge___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_sub_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_quotedName___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doSeq___closed__2; +lean_object* l_Lean_Parser_Term_namedHole_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_structInstField_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_doElem___closed__1; lean_object* l_Lean_Parser_Term_let_x21___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Term_ne_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__13; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__11; lean_object* l_Lean_Parser_Term_ne___closed__1; +lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_explicit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__3; @@ -1071,12 +1482,15 @@ lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__1; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; +lean_object* l_Lean_Parser_Term_borrowed_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__6; extern lean_object* l_List_repr___rarg___closed__2; lean_object* l_Lean_Parser_Term_match___closed__2; lean_object* l_Lean_Parser_Term_binderIdent___closed__2; lean_object* l_Lean_Parser_darrow___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__5; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_subst_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_append___closed__1; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__1; @@ -1084,14 +1498,19 @@ lean_object* l_Lean_Parser_Term_structInst___closed__15; lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__4; extern lean_object* l_List_reprAux___main___rarg___closed__1; extern lean_object* l_Lean_Parser_maxPrec; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__17; +lean_object* l_Lean_Parser_Term_doId_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_id___closed__6; lean_object* l_Lean_Parser_Term_map___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_add___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_doElem___closed__2; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__1; +lean_object* l_Lean_Parser_Term_explicit_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_or___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_seq(lean_object*); +lean_object* l_Lean_Parser_strLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sub___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__7; lean_object* l_Lean_Parser_Term_bindOp___closed__2; @@ -1100,18 +1519,30 @@ lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_uminus___closed__5; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_gt_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_or_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_fcomp___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_fromTerm___closed__7; lean_object* l_Lean_Parser_Term_andM___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_band___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_decide_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_subtype_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__1; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__10; lean_object* l___regBuiltinParser_Lean_Parser_Term_num(lean_object*); +extern lean_object* l_Lean_Parser_strLit___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_ne___closed__2; +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_fcomp___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__4; +lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_iff_parenthesizer___closed__1; lean_object* l_Lean_Parser_pushNone___elambda__1___rarg(lean_object*); lean_object* l_Lean_Parser_Term_arrayRef___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_beq___closed__4; @@ -1125,30 +1556,48 @@ lean_object* l_Lean_Parser_Term_show___closed__8; lean_object* l_Lean_Parser_Term_depArrow___closed__1; lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_proj___closed__5; +lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_leftArrow___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_bindOp_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_binderDefault___closed__2; lean_object* l_Lean_Parser_Term_orM___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInstField___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_add_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInstLVal___closed__6; +lean_object* l_Lean_Parser_Term_doId_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_le___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__11; +lean_object* l___regBuiltin_Lean_Parser_Term_paren_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_subtype_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_match__syntax; lean_object* l_Lean_Parser_Term_if___closed__1; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_uminus___closed__6; +lean_object* l_Lean_Parser_Term_mul_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_optType___closed__3; +lean_object* l_Lean_Parser_Term_not_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstField___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_proj___closed__3; lean_object* l_Lean_Parser_Term_uminus; +lean_object* l_Lean_Parser_Term_funBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__4; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; lean_object* l_Lean_Parser_Term_namedArgument; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__2; lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_bnot_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_implicitBinder(uint8_t); lean_object* l___regBuiltinParser_Lean_Parser_Term_seqLeft(lean_object*); lean_object* l_Lean_Parser_Term_orM___closed__3; @@ -1167,6 +1616,9 @@ extern lean_object* l_Lean_mkAppStx___closed__6; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_letPatDecl___closed__7; lean_object* l_Lean_Parser_Term_explicitBinder___boxed(lean_object*); +lean_object* l_Lean_Parser_Term_seq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_seq_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_do___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_and___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_show___closed__5; @@ -1177,9 +1629,12 @@ lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__3; lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_listLit___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_leftArrow___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_char___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_doElem_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_pow___closed__4; lean_object* l_Lean_Parser_Term_explicitBinder___closed__1; +lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_dollarProj___closed__1; lean_object* l_Lean_Parser_Term_do; lean_object* l_Lean_Parser_Term_seqRight___closed__3; @@ -1192,6 +1647,7 @@ lean_object* l_Lean_Parser_Term_let_x21; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__3; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_char_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_type___closed__2; lean_object* l_Lean_Parser_Term_str___closed__4; @@ -1207,6 +1663,7 @@ lean_object* l_Lean_Parser_Term_structInst___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___closed__9; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_match___closed__1; +lean_object* l_Lean_Parser_Term_sorry_parenthesizer___closed__1; lean_object* l_Lean_Parser_symbolNoWsInfo(lean_object*); lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_liftMethod___closed__1; @@ -1222,8 +1679,11 @@ lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_orM(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_heq(lean_object*); lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_suffices_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedArgument___closed__1; lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_doElem_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_mod___closed__4; lean_object* l_Lean_Parser_Term_arrow___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__3; @@ -1234,20 +1694,32 @@ lean_object* l_Lean_Parser_Term_type___closed__1; lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_subtype(lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_prop_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Error_toString___closed__2; lean_object* l_Lean_Parser_Term_orM___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_equiv___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_subtype___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_pow_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_char_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_arrayRef(lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_proj_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_subtype_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_tacticBlock___closed__2; lean_object* l_Lean_Parser_Term_bor___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_listLit___closed__7; +lean_object* l_Lean_Parser_Term_doSeq_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bor___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_andthen_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_mul_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_or___elambda__1___closed__5; @@ -1257,10 +1729,14 @@ lean_object* l_Lean_Parser_Term_emptyC; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_letPatDecl___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_sort(lean_object*); +lean_object* l_Lean_Parser_Term_mul_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_id___closed__3; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_unicodeInfixL(lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_beq_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_str_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_namedArgument___closed__2; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letEqnsDecl; @@ -1268,6 +1744,7 @@ lean_object* l_Lean_Parser_Term_cons___closed__2; lean_object* l_Lean_Parser_Term_liftMethod___closed__6; lean_object* l_Lean_Parser_Term_dollarProj___closed__2; lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_app_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_binderDefault___closed__1; lean_object* l_Lean_Parser_Term_have___closed__8; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__6; @@ -1288,6 +1765,7 @@ lean_object* l_Lean_Parser_Term_andthen; lean_object* l_Lean_Parser_Term_matchAlt___closed__11; lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_or___elambda__1___closed__3; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; lean_object* l_Lean_Parser_Term_doPat___closed__9; lean_object* l_Lean_Parser_Term_doId; lean_object* l_Lean_Parser_Term_structInst___closed__12; @@ -1295,6 +1773,7 @@ lean_object* l_Lean_Parser_Term_subtype___elambda__1(lean_object*, lean_object*) lean_object* l_Lean_Parser_Term_nomatch___closed__6; lean_object* l_Lean_Parser_Term_prod___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_mod(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_lt_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_emptyC___closed__1; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_match__syntax___closed__4; @@ -1304,7 +1783,11 @@ lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_ lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__1; extern lean_object* l_Lean_formatEntry___closed__1; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_id_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_dollar_parenthesizer___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_have(lean_object*); +lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Term_sort_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_cdot(lean_object*); @@ -1312,6 +1795,9 @@ lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parse lean_object* l_Lean_Parser_Term_mapRev___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_if___closed__12; lean_object* l_Lean_Parser_Term_forall; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__10; +lean_object* l___regBuiltin_Lean_Parser_Term_cons_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_cdot_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_str(lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_map___closed__3; @@ -1322,21 +1808,27 @@ lean_object* l_Lean_Parser_Term_parser_x21; extern lean_object* l_Lean_Parser_FirstTokens_toStr___closed__3; lean_object* l_Lean_Parser_Term_leftArrow___elambda__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_nomatch(lean_object*); +lean_object* l_Lean_Parser_Tactic_seq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstField; lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_app_parenthesizer___closed__1; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__5(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_typeAscription___closed__3; lean_object* l_Lean_Parser_Term_tacticBlock___closed__9; +lean_object* l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_have___closed__10; lean_object* l_Lean_Parser_Term_cdot___closed__6; lean_object* l_Lean_Parser_Term_arrayRef___closed__6; extern lean_object* l_Lean_Parser_mkAntiquot___closed__7; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_fieldIdx_parenthesizer___boxed(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_borrowed___closed__7; lean_object* l_Lean_Parser_Term_doLet___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_prod(lean_object*); lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_tacticStxQuot___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_seq___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__2; @@ -1351,7 +1843,9 @@ lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_doElem___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_id___closed__5; +lean_object* l_Lean_Parser_Term_proj_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_prop___closed__3; lean_object* l_Lean_Parser_Term_proj___closed__1; @@ -1359,23 +1853,29 @@ lean_object* l_Lean_Parser_Term_letIdLhs___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_equiv(lean_object*); lean_object* l_Lean_Parser_Term_sort___closed__5; lean_object* l_Lean_Parser_Term_optType___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_bindOp___closed__4; lean_object* l_Lean_Parser_Term_sorry___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__12; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_where___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_liftMethod___elambda__1___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_beq(lean_object*); +lean_object* l_Lean_Parser_Term_borrowed_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_tparser_x21___closed__5; lean_object* l_Lean_Parser_Term_binderTactic___closed__4; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_prop___closed__5; lean_object* l_Lean_Parser_Term_dollarProj___closed__5; +lean_object* l_Lean_Parser_Term_let_x21_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_append___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_letDecl___closed__4; lean_object* l_Lean_Parser_Term_prod___elambda__1___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_String_HasQuote___closed__2; +lean_object* l_Lean_Parser_Term_mul_parenthesizer___closed__2; lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_structInst___elambda__1___spec__1(uint8_t, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_nameLit___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_if___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__11; @@ -1385,7 +1885,9 @@ lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_andM; lean_object* l_Lean_Parser_Term_binderType___closed__5; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_beq_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_namedPattern___closed__9; +extern lean_object* l_Lean_Parser_Level_ident_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__7; @@ -1402,37 +1904,53 @@ lean_object* l_Lean_Parser_Term_str___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_heq___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_sub___closed__4; lean_object* l_Lean_Parser_Term_structInstLVal___closed__2; +lean_object* l_Lean_Parser_Term_doElem_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_if___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_tacticStxQuot___closed__2; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__10; +lean_object* l_Lean_Parser_Term_have_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_cdot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_explicitBinder___closed__6; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_fun___closed__9; +lean_object* l_Lean_Parser_Term_prod_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__7; +lean_object* l_Lean_Parser_Term_uminus_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_decide_parenthesizer___closed__2; lean_object* l_Lean_Parser_sepBy1Info(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_typeAscription___closed__7; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_binderIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nomatch___closed__1; +lean_object* l_Lean_Parser_Term_not_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_matchAlt___closed__10; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_fcomp___closed__1; lean_object* l_Lean_Parser_Term_where___closed__5; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_match___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dollar___closed__6; +lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_match__syntax___closed__2; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_explicit___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_match___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderType___closed__3; +lean_object* l_Lean_Parser_Term_funBinderStxQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_not___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__19; lean_object* l_Lean_Parser_Term_match__syntax___closed__1; +lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_instBinder___closed__2; lean_object* l_Lean_Parser_Term_letDecl___closed__1; lean_object* l_Lean_Parser_Term_unicodeInfixL___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedHole___closed__3; lean_object* l_Lean_Parser_Term_emptyC___closed__4; +lean_object* l_Lean_Parser_Term_decide_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_band___closed__3; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_mapRev; @@ -1440,6 +1958,8 @@ lean_object* l_Lean_Parser_Term_cons___closed__3; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_dollarProj___closed__3; lean_object* l_Lean_Parser_Term_id; +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__1; +lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_leftArrow___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__2; @@ -1447,27 +1967,38 @@ lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_beq___closed__3; lean_object* l_Lean_Parser_Term_id___closed__1; lean_object* l_Lean_Parser_Term_haveAssign___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_bne_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrayRef___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_dollar_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_prod_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_namedHole___closed__7; lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___closed__8; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_fromTerm_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_do___elambda__1___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_sort___closed__3; lean_object* l_Lean_Parser_Term_let___closed__7; lean_object* l_Lean_Parser_Term_optExprPrecedence___closed__4; +lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_mul___closed__1; lean_object* l_Lean_Parser_nodeWithAntiquot(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_byTactic___closed__5; lean_object* l_Lean_Parser_Term_proj___closed__7; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__12; lean_object* l_Lean_Parser_Term_decide___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_str_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_tupleTail; lean_object* l_Lean_Parser_Term_typeAscription___closed__5; +lean_object* l_Lean_Parser_Term_gt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_le___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_eq___closed__2; lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); @@ -1479,10 +2010,13 @@ lean_object* l_Lean_Parser_Term_infixR(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_seqLeft___closed__3; lean_object* l_Lean_Parser_charLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_or_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_uminus___closed__2; lean_object* l_Lean_Parser_Term_str___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__3; +lean_object* l_Lean_Parser_nameLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_fromTerm___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_prod_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_matchAlt___closed__9; lean_object* l_Lean_Parser_Term_arrayLit; lean_object* l_Lean_Parser_Term_mul___closed__2; @@ -1493,17 +2027,21 @@ lean_object* l_Lean_Parser_Term_optExprPrecedence___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_namedPattern___closed__4; lean_object* l_Lean_Parser_Term_seq___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_infixL___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___closed__2; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_div___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_sub_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_match__syntax___closed__8; lean_object* l_Lean_Parser_Term_forall___closed__1; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_num___closed__5; lean_object* l_Lean_Parser_Term_haveAssign___closed__1; +lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_binderTactic___closed__8; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_modN___elambda__1(lean_object*, lean_object*); @@ -1515,6 +2053,8 @@ lean_object* l_Lean_Parser_Term_bindOp; lean_object* l_Lean_Parser_Term_doPat___closed__10; lean_object* l_Lean_Parser_Term_simpleBinder; lean_object* l_Lean_Parser_Term_bor___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_div___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_doExpr___elambda__1(lean_object*, lean_object*); @@ -1523,57 +2063,84 @@ lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__8; lean_object* l_Lean_Parser_Term_sub___closed__2; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_proj(lean_object*); +lean_object* l_Lean_Parser_Term_explicit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_band(lean_object*); +lean_object* l_Lean_Parser_Term_optType_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_le_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_bor___closed__2; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_dollar___closed__3; lean_object* l_Lean_Parser_Term_bne___closed__1; +lean_object* l_Lean_Parser_Term_id_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_id___closed__8; +lean_object* l_Lean_Parser_Term_ne_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlt___closed__4; lean_object* l_Lean_Parser_Term_have___closed__9; lean_object* l_Lean_Parser_Term_pow___closed__2; lean_object* l_Lean_Parser_Term_app; +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_do_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_liftMethod_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_instBinder___closed__1; lean_object* l_Lean_Parser_Term_bracketedBinder___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_sub___closed__1; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_show(lean_object*); lean_object* l_Lean_Parser_Term_do___closed__7; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_append___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_leftArrow___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_le___closed__1; lean_object* l_Lean_Parser_Term_and___closed__4; lean_object* l_Lean_Parser_Term_sorry; +lean_object* l_Lean_Parser_Term_arrow_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_listLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tparser_x21___closed__3; lean_object* l_Lean_Parser_Term_structInstLVal___closed__4; lean_object* l_Lean_Parser_Term_matchAlt; extern lean_object* l_Lean_Meta_evalNat___main___closed__4; +lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_mul_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_or___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__4; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_subst___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_modN_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nomatch___closed__2; +lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_not(lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_structInstLVal___elambda__1___spec__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_prop___closed__1; lean_object* l_Lean_Parser_Term_nativeRefl___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_decide_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_subst___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nativeDecide; lean_object* l_Lean_Parser_Term_binderType___boxed(lean_object*); +lean_object* l_Lean_Parser_Term_liftMethod_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Term_binderDefault_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_binderType___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_match__syntax(lean_object*); lean_object* l_Lean_Parser_Term_sort___closed__6; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_structInstLVal___closed__1; lean_object* l_Lean_Parser_Term_have___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_sorry_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_orelse(lean_object*); lean_object* l_Lean_Parser_Term_match___elambda__1___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1584,6 +2151,8 @@ lean_object* l_Lean_Parser_Term_uminus___closed__8; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_prod___closed__1; lean_object* l_Lean_Parser_tryFn(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_doPat_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subst___closed__3; lean_object* l_Lean_Parser_Term_arrayLit___closed__5; lean_object* l_Lean_Parser_Term_if___closed__5; @@ -1594,6 +2163,7 @@ lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_match___elambda__1___s lean_object* l_Lean_Parser_Term_anonymousCtor___closed__7; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_andthen___closed__2; +lean_object* l_Lean_Parser_Term_letDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_lt___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_bor(lean_object*); @@ -1612,7 +2182,9 @@ lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__4; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_app___elambda__1___spec__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_le_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_infixL(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_arrow_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_anonymousCtor; lean_object* l_Lean_Parser_Term_dollarProj___closed__4; lean_object* l_Lean_Parser_Term_iff___closed__3; @@ -1622,17 +2194,27 @@ lean_object* l_Lean_Parser_Term_parser_x21___closed__1; lean_object* l_Lean_Parser_Term_inaccessible___closed__3; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_type___closed__8; +lean_object* l_Lean_Parser_Term_funBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_nonEmptySeq___closed__3; lean_object* l_Lean_Parser_Term_nativeRefl; lean_object* l_Lean_Parser_regTacticParserAttribute(lean_object*); +lean_object* l_Lean_Parser_Term_arrayRef_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let___closed__3; +lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_suffices___closed__7; +lean_object* l_Lean_Parser_Term_nativeRefl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_id_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_inaccessible___closed__5; lean_object* l_Lean_Parser_Term_let_x21___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_typeAscription___closed__4; lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_and_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_binderType___closed__2; lean_object* l_Lean_Parser_Term_borrowed___closed__5; lean_object* l_Lean_Parser_Term_explicitUniv___closed__8; @@ -1640,37 +2222,53 @@ lean_object* l_Lean_Parser_Term_equiv___closed__1; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_not___closed__7; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_add___closed__2; +lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_listLit___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_bor_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_if___closed__14; lean_object* l_Lean_Parser_Term_doSeq___closed__3; +lean_object* l_Lean_Parser_Term_prod_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInst___closed__13; lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_borrowed___closed__3; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__9; +lean_object* l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_depArrow___closed__6; +lean_object* l_Lean_Parser_Term_doPat_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_sorry_parenthesizer___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_forall_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___closed__1; +lean_object* l_Lean_Parser_Term_cdot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_doId___closed__7; +lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder___closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_lt___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_have___closed__1; lean_object* l_Lean_Parser_darrow___closed__2; lean_object* l_Lean_Parser_Term_typeSpec___closed__5; +lean_object* l_Lean_Parser_Term_optExprPrecedence_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstField___closed__6; lean_object* l_Lean_Parser_Term_show___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_uminus(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_hole_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_funBinder_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___closed__4; lean_object* l_Lean_Parser_Term_seqRight___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_div___closed__2; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_emptyC___closed__3; lean_object* l_Lean_Parser_Term_append___closed__4; lean_object* l_Lean_Parser_Term_tparser_x21___closed__7; @@ -1681,37 +2279,55 @@ lean_object* l_Lean_Parser_Term_iff___closed__1; lean_object* l_Lean_Parser_Term_orelse___closed__3; lean_object* l_Lean_Parser_Term_fun___closed__3; lean_object* l_Lean_Parser_Term_tacticBlock___closed__8; +lean_object* l_Lean_Parser_Term_doExpr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_binderDefault_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_charLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_symbolInfo(lean_object*); +lean_object* l_Lean_Parser_Term_optIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_subtype_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match___closed__9; lean_object* l_Lean_Parser_Term_tupleTail___closed__5; +lean_object* l_Lean_Parser_charLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_app_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__19; lean_object* l_Lean_Parser_Term_mapRev___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_add___closed__4; +lean_object* l_Lean_Parser_Term_haveAssign_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_doPat_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__5; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l___private_Lean_Meta_EqnCompiler_DepElim_20__processNonVariable___closed__1; lean_object* l_Lean_Parser_Term_id___closed__7; lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__6; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_haveAssign_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_str___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_and(lean_object*); lean_object* l_Lean_Parser_Term_fun___closed__5; lean_object* l_Lean_Parser_Term_seqRight___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_bor___closed__4; lean_object* l_Lean_Parser_Term_explicitUniv___closed__2; +lean_object* l_Lean_Parser_Term_str_parenthesizer___closed__3; extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Term_leftArrow___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_have___closed__4; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_append___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_equiv_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___closed__10; lean_object* l_Lean_Parser_Term_num___closed__3; +lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_letIdDecl___closed__5; lean_object* l_Lean_Parser_Term_match___closed__4; lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_app___closed__5; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__8; extern lean_object* l_List_map___main___at_Lean_Meta_DiscrTree_Trie_format___main___spec__2___rarg___closed__1; +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_explicitUniv___closed__1; lean_object* l_Lean_Parser_Term_where___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_typeAscription___closed__1; @@ -1737,32 +2353,46 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_cons(lean_object*); lean_object* l_Lean_Parser_Term_forall___closed__8; lean_object* l_Lean_Parser_Term_fromTerm___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_namedHole(lean_object*); +lean_object* l_Lean_Parser_Term_char_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_type; lean_object* l_Lean_Parser_Term_tacticBlock___closed__4; lean_object* l_Lean_Parser_Term_pow___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_seq_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_namedHole_parenthesizer___closed__3; extern lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_leftArrow___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_subst___closed__5; lean_object* l_Lean_Parser_Term_binderType___closed__4; lean_object* l_Lean_Parser_Term_tacticBlock___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_match__syntax_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_tacticBlock; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_bne___closed__2; lean_object* l_Lean_Parser_Term_letIdDecl___closed__7; +lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_where___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_subtype___closed__10; lean_object* l_Lean_Parser_Term_append___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_or_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_show_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tupleTail___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal___closed__11; lean_object* l_Lean_Parser_Term_levelStxQuot___closed__1; lean_object* l_Lean_Parser_Term_dollar___closed__4; +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_decide(lean_object*); +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_if_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_arrayRef___closed__1; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_band___closed__4; lean_object* l_Lean_Parser_Term_fromTerm___closed__5; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__1; lean_object* l_Lean_Parser_dollarSymbol___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_map___closed__2; lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__5; lean_object* l_Lean_Parser_Term_or; @@ -1771,6 +2401,7 @@ extern lean_object* l_Lean_Parser_unicodeSymbolFn___closed__1; lean_object* l_Lean_Parser_Term_pow___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_id___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_id_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_cons___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__13; @@ -1784,23 +2415,32 @@ lean_object* l_Lean_Parser_Term_char; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInstField___closed__5; lean_object* l_Lean_Parser_Term_matchAlts___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_prod_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Term_id_parenthesizer___closed__1; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_funBinderStxQuot___closed__1; lean_object* l_Lean_Parser_Term_append; lean_object* l_Lean_Parser_Term_letIdLhs___closed__6; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_not___closed__1; lean_object* l_Lean_Parser_Term_uminus___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_map___closed__1; lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_subst___closed__2; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_and___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_listLit___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_seqRight_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_gt; lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_tparser_x21___closed__2; @@ -1814,6 +2454,7 @@ extern lean_object* l_Lean_Parser_Level_hole___closed__1; lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_haveAssign; +lean_object* l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_suffices___closed__5; lean_object* l_Lean_Parser_Term_parser_x21___closed__2; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__3; @@ -1824,6 +2465,7 @@ lean_object* l_Lean_Parser_Term_dollarProj___closed__6; lean_object* l_Lean_Parser_Term_hole; lean_object* l_Lean_Parser_Term_app___closed__1; lean_object* l_Lean_Parser_Term_emptyC___closed__5; +lean_object* l_Lean_Parser_Term_orM_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_if___closed__4; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__7; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1833,6 +2475,7 @@ lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1(lean_object*, lean_ob lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_prod___closed__4; lean_object* l_Lean_Parser_Term_haveAssign___closed__5; +lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_letIdDecl___closed__1; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__4; @@ -1840,15 +2483,19 @@ lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_explicitBinder___closed__8; lean_object* l_Lean_Parser_Term_matchAlt___closed__2; lean_object* l_Lean_Parser_Term_parenSpecial___closed__2; +lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_do_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_funBinder___closed__1; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___closed__12; lean_object* l_String_trim(lean_object*); +lean_object* l_Lean_Parser_Term_doSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_optExprPrecedence; lean_object* l___regBuiltinParser_Lean_Parser_Term_prop(lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_nonEmptySeq___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_byTactic(lean_object*); lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__4; @@ -1857,9 +2504,13 @@ lean_object* l_Lean_Parser_darrow___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_pow___closed__3; lean_object* l_Lean_Parser_Term_not___closed__8; lean_object* l_Lean_Parser_Term_match___closed__11; +lean_object* l_Lean_Parser_Term_doPat_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Term_arrow_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_implicitBinder___boxed(lean_object*); lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_char___closed__5; +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_if___closed__9; lean_object* l_Lean_Parser_nodeFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doLet___closed__1; @@ -1867,11 +2518,15 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_modN(lean_object*); lean_object* l_Lean_Parser_Term_typeSpec___closed__1; lean_object* l_Lean_Parser_Term_namedPattern___closed__8; lean_object* l_Lean_Parser_Term_subst___closed__8; +lean_object* l___regBuiltin_Lean_Parser_Term_andM_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__7; lean_object* l_Lean_Parser_optionalFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedArgument___closed__6; +lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_orM_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_implicitBinder___closed__1; lean_object* l_Lean_Parser_Term_tparser_x21___closed__4; +lean_object* l_Lean_Parser_Term_fcomp_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_typeAscription___closed__2; lean_object* l_Lean_Parser_Term_byTactic___closed__3; @@ -1880,67 +2535,104 @@ lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__6; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_matchAlts___closed__1; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_structInstLVal___elambda__1___spec__1___closed__4; +lean_object* l_Lean_Parser_Term_structInstField_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_structInst___closed__7; +lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_nativeDecide___closed__7; lean_object* l_Lean_Parser_Term_doLet___closed__4; lean_object* l_Lean_Parser_Term_tparser_x21___closed__1; +lean_object* l_Lean_Parser_Term_proj_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_seq___closed__2; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__3; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_implicitBinder___closed__2; +lean_object* l_Lean_Parser_Tactic_seq_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder___closed__4; +lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_andM___closed__3; lean_object* l_Lean_Parser_Term_band___closed__2; +lean_object* l_Lean_Parser_Term_seq_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_optIdent_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_instBinder___closed__4; lean_object* l_Lean_Parser_Term_leftArrow___closed__2; lean_object* l_Lean_Parser_Term_ne___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_heq___closed__1; lean_object* l_Lean_Parser_Term_borrowed___closed__6; +lean_object* l_Lean_Parser_Term_byTactic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_mapRev___closed__3; lean_object* l_Lean_Parser_Term_forall___closed__10; lean_object* l_Lean_Parser_Term_matchAlt___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; +lean_object* l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_parser_x21___closed__4; lean_object* l_Lean_Parser_Term_orelse___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_div_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr; lean_object* l___regBuiltinParser_Lean_Parser_Term_div(lean_object*); +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_subtype___closed__9; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__7; +lean_object* l_Lean_Parser_Term_namedHole_parenthesizer___closed__1; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_tupleTail___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_where___closed__1; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_le___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_doPat_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Term_or_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_structInstField_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_fcomp___closed__3; +lean_object* l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_sort_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_doLet___closed__2; +lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__2; extern lean_object* l_Lean_mkHole___closed__2; lean_object* l_Lean_Parser_Term_type___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_id_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_unicodeInfixR___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_num_parenthesizer(lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_andthen___closed__1; lean_object* l_Lean_Parser_Term_and___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_doId_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_seq___closed__1; lean_object* l_Lean_Parser_nameLit___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_cons_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___closed__6; extern lean_object* l_Lean_Parser_mkAntiquot___closed__6; lean_object* l_Lean_Parser_Term_levelStxQuot; lean_object* l_Lean_Parser_Term_equiv___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_subtype_parenthesizer___closed__3; +lean_object* l_Lean_Parser_Term_orelse_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdDecl___closed__8; +lean_object* l_Lean_Parser_Term_cons_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_bor_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_structInstField_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_binderType___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_typeSpec___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_haveAssign___closed__3; lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_forall___closed__5; lean_object* l_Lean_Parser_Term_pow; +lean_object* l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInst___closed__16; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__6; lean_object* l_Lean_Parser_Term_letIdDecl___closed__4; +lean_object* l_Lean_Parser_Term_not_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_leftArrow___closed__1; lean_object* l_Lean_Parser_Term_match__syntax___closed__6; lean_object* l_Lean_Parser_Term_binderTactic___closed__6; @@ -1954,18 +2646,27 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_listLit(lean_object*); lean_object* l_Lean_Parser_Term_type___elambda__1___closed__6; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Term_funBinder___closed__2; +lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__6; +lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_gt___closed__4; +lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__6; +lean_object* l_Lean_Parser_Term_seq_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_explicit; lean_object* l_Lean_Parser_Term_equiv___closed__4; +lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_arrow(lean_object*); +lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_modN___closed__3; lean_object* l_Lean_Parser_Term_levelStxQuot___closed__4; lean_object* l_Lean_Parser_Term_typeAscription___closed__6; +lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_lt; @@ -1990,23 +2691,33 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_match(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_depArrow(lean_object*); lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_cons_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bne___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_optIdent___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_gt___closed__1; lean_object* l_Lean_Parser_Term_ge; lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_optIdent_parenthesizer___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4; +lean_object* l_Lean_Parser_Term_doLet_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_show_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_have___closed__5; +lean_object* l_Lean_Parser_Term_paren_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_where(lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_gt___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_doLet_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_liftMethod; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_app_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_map___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_listLit___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_namedPattern___closed__2; +lean_object* l_Lean_Parser_Term_sort_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_dollarProj; lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__4; @@ -2019,34 +2730,56 @@ lean_object* l_Lean_Parser_Term_ne___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_paren___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitUniv___closed__11; lean_object* l_Lean_Parser_Term_arrayLit___closed__1; +lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_let_x21___closed__1; +lean_object* l_Lean_Parser_Term_binderDefault_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_nomatch___closed__5; lean_object* l_Lean_Parser_Term_beq___closed__1; lean_object* l_Lean_Parser_Term_fun___closed__2; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_hole(lean_object*); lean_object* l_Lean_Parser_Term_iff___closed__2; lean_object* l_Lean_Parser_Term_orelse___closed__4; +lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_subst___closed__7; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; extern lean_object* l_Lean_Meta_DepElim_Pattern_toMessageData___main___closed__9; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_num_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_structInst___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fcomp___closed__2; lean_object* l_Lean_Parser_Term_where___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_fun_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_prop_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_map___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__9; lean_object* l___regBuiltinParser_Lean_Parser_Term_gt(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_append_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGe_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Parser_Term_app___closed__2; +lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_explicit___closed__5; +lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_do___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_have___closed__12; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_tupleTail___closed__4; lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_gt___closed__3; lean_object* l_Lean_Parser_unicodeSymbolInfo(lean_object*, lean_object*); @@ -2054,76 +2787,105 @@ lean_object* l_Lean_Parser_Term_borrowed___closed__8; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_borrowed___closed__2; lean_object* l_Lean_Parser_Term_emptyC___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_subtype_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_mapRev___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_subst_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_and_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_pow_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_suffices; +lean_object* l_Lean_Parser_Term_dollar_parenthesizer___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_iff; lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__5; lean_object* l_Lean_Parser_many1Fn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdLhs; +lean_object* l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_namedHole___closed__4; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_subtype___closed__8; lean_object* l_Lean_Parser_Term_num___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_cons___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__4; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_eq___closed__3; lean_object* l_Lean_Parser_Term_add; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_matchAlts___closed__7; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_matchDiscr___closed__9; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_proj___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_mod_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_char(lean_object*); +lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_let___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__8; lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subtype___closed__4; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__5; +lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nomatch___closed__3; lean_object* l_Lean_Parser_Term_orM___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_tacticStxQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_add___closed__3; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_quotedName_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_structInst; lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__1; +extern lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Tactic_nonEmptySeq___closed__1; +lean_object* l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_ne; lean_object* l_Lean_Parser_Term_match___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__13; lean_object* l_Lean_Parser_Term_binderIdent___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_char___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_borrowed(lean_object*); lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__11; +lean_object* l___regBuiltin_Lean_Parser_Term_ne_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__4; lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_sub; +lean_object* l_Lean_Parser_Term_bindOp_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_andM_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_do___closed__5; +lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bne___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_id_parenthesizer___closed__7; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dollar___closed__1; lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_char___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__11; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_bindOp_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_map___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_matchAlt___closed__6; lean_object* l_Lean_Parser_Term_parenSpecial___closed__4; @@ -2137,15 +2899,21 @@ lean_object* l_Lean_Parser_Term_binderDefault___closed__3; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__5; extern lean_object* l_Lean_Meta_DepElim_Pattern_toMessageData___main___closed__1; +lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__4; lean_object* l_Lean_Parser_darrow___closed__3; lean_object* l_Lean_Parser_Term_structInst___closed__11; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__8; +lean_object* l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__2; +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__5; +lean_object* l_Lean_Parser_Term_where_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_byTactic___closed__2; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_structInstLVal___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_do___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_type_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_letDecl___closed__3; lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__3; @@ -2155,17 +2923,29 @@ lean_object* l_Lean_Parser_Term_match___closed__10; lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_bne___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_arrayLit___closed__4; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_and___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_and___elambda__1___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_decide___closed__4; +lean_object* l_Lean_Parser_Term_bindOp_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Parser_inhabited___closed__1; +lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tparser_x21___closed__6; lean_object* l_Lean_Parser_Term_doLet; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_if_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doExpr; +lean_object* l_Lean_Parser_nameLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__5; +lean_object* l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_suffices___closed__6; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__12; @@ -2179,38 +2959,55 @@ lean_object* l_Lean_Parser_Term_modN___closed__4; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_seq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__6; +lean_object* l___regBuiltin_Lean_Parser_Term_not_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_doExpr___closed__3; +lean_object* l___regBuiltin_Lean_Parser_Term_num_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_binderTactic___closed__3; lean_object* l_Lean_Parser_Term_structInst___closed__19; lean_object* l_Lean_Parser_Term_doId___closed__6; lean_object* l_Lean_Parser_Term_sort___closed__7; +lean_object* l___regBuiltin_Lean_Parser_Term_eq_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_leftArrow___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_unicodeInfixR___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_add_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_binderDefault___closed__5; +lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_dollar___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_unicodeInfixL___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_subtype___closed__11; lean_object* l_Lean_Parser_unicodeSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_map___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_not_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_levelStxQuot___closed__2; +lean_object* l_Lean_Parser_Term_bnot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_seq___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_do_parenthesizer___closed__4; +lean_object* l_Lean_Parser_Term_fromTerm_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___closed__4; lean_object* l_Lean_Parser_Term_dollar___closed__2; lean_object* l_Lean_Parser_Term_leadPrec; extern lean_object* l_addParenHeuristic___closed__1; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__3; +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_instBinder___closed__6; lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__7; +lean_object* l_Lean_Parser_Term_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_liftMethod___closed__2; extern lean_object* l_Lean_Parser_strLit; lean_object* l_Lean_Parser_Term_equiv___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_dollar___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_char___elambda__1___closed__1; +lean_object* l_Lean_Parser_Term_do_parenthesizer___closed__1; +lean_object* l___regBuiltin_Lean_Parser_Term_or_parenthesizer___closed__1; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_bnot___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doExpr___closed__5; @@ -2219,35 +3016,49 @@ lean_object* l_Lean_Parser_Term_let; lean_object* l_Lean_Parser_Term_bracketedBinder___boxed(lean_object*); lean_object* l_Lean_Parser_Term_depArrow___closed__3; lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1(lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_namedHole___closed__1; +lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_map; +lean_object* l_Lean_Parser_Term_doPat_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_unicodeInfixR(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__9; +lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_let_x21___closed__2; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_suffices___closed__10; lean_object* l_Lean_Parser_Term_forall___closed__6; lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_modN___closed__1; +lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_seq___closed__4; lean_object* l_Lean_Parser_Term_band___closed__1; lean_object* l_Lean_Parser_Term_parser_x21___closed__6; lean_object* l_Lean_Parser_Term_seq___closed__2; +lean_object* l_Lean_Parser_Term_let_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_prop___closed__6; lean_object* l_Lean_Parser_Term_char___elambda__1___closed__3; extern lean_object* l_Lean_Parser_Level_paren___closed__1; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_where___closed__7; lean_object* l_Lean_Parser_fieldIdxFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_arrayRef___closed__3; +lean_object* l_Lean_Parser_Term_do_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_hole___closed__1; lean_object* l_Lean_Parser_Term_type___closed__9; +lean_object* l_Lean_Parser_Term_sub_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_fcomp_parenthesizer___closed__2; +lean_object* l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_letEqnsDecl___closed__4; lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_prop___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__4; +lean_object* l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_borrowed___closed__1; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_forall___elambda__1___spec__1(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); @@ -2256,19 +3067,29 @@ lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parse lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__8; +lean_object* l___regBuiltin_Lean_Parser_Term_subst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_app___closed__3; lean_object* l_Lean_Parser_Term_tparser_x21; +lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__5; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_decide___closed__2; extern lean_object* l_Lean_Parser_Level_max___closed__2; lean_object* l_Lean_Parser_Term_binderTactic___closed__5; +lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doId___elambda__1___closed__3; +extern lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__4; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__7(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let_x21___closed__4; lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_letIdDecl___closed__6; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_app___closed__4; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer(lean_object*); +lean_object* l___regBuiltin_Lean_Parser_Term_char_parenthesizer___closed__1; lean_object* _init_l_Lean_Parser_regBuiltinTacticParserAttr___closed__1() { _start: { @@ -5172,6 +5993,268 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_paren_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer(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; +x_5 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_6 = l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_maxPrec; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_namedPattern_parenthesizer(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; +x_5 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_6 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_id_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_id___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_id_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_explicitUniv_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_id_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_namedPattern_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_id_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_id_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_id_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_id_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_id_parenthesizer___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_id_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_id_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_id_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_mkTermIdFromIdent___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_id_parenthesizer___closed__6; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_id_parenthesizer(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; +x_5 = l_Lean_Parser_Term_id_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_id_parenthesizer___closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_id_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_id_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_id_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_mkTermIdFromIdent___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_id_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_num___elambda__1___closed__1() { _start: { @@ -5380,6 +6463,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_num_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_num___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_num_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Nat_HasQuote___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Level_num_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_num_parenthesizer(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; +x_5 = l_Lean_Parser_Term_num_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_num_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_num_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_num_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_num_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Nat_HasQuote___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_num_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_str___elambda__1___closed__1() { _start: { @@ -5588,6 +6727,93 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_strLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_strLit___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_strLit_parenthesizer(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; +x_5 = l_Lean_Parser_strLit_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__9; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_str_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_str___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_str_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_strLit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_str_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_String_HasQuote___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_str_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_str_parenthesizer(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; +x_5 = l_Lean_Parser_Term_str_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_str_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_str_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_str_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_str_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_String_HasQuote___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_str_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_char___elambda__1___closed__1() { _start: { @@ -5814,6 +7040,93 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_charLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_charLit___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_charLit_parenthesizer(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; +x_5 = l_Lean_Parser_charLit_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__13; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_char_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_char___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_char_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_charLit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_char_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_char___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_char_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_char_parenthesizer(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; +x_5 = l_Lean_Parser_Term_char_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_char_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_char_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_char_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_char_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_char___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_char_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_type___elambda__1___closed__1() { _start: { @@ -6545,6 +7858,126 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_type___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_leadPrec___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_type_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Level_max_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkWsBefore_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_type_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_type_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_type_parenthesizer___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_type_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_type___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_type_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_type_parenthesizer(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; +x_5 = l_Lean_Parser_Term_type_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_type_parenthesizer___closed__8; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_type_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_type_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_type_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_type___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_type_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_sort___elambda__1___closed__1() { _start: { @@ -7245,6 +8678,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_sort_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_sort___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_sort_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_sort___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_type_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_sort_parenthesizer(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; +x_5 = l_Lean_Parser_Term_sort_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_sort_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_sort_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_sort_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_sort_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_sort___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_sort_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_prop___elambda__1___closed__1() { _start: { @@ -7645,6 +9134,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_prop_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_prop___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_prop_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_prop___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_prop_parenthesizer(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; +x_5 = l_Lean_Parser_Term_prop_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_prop_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_prop_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_prop_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_prop_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_prop___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_prop_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_hole___elambda__1___closed__1() { _start: { @@ -7969,6 +9514,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_hole_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_hole___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_hole_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_mkHole___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_hole_parenthesizer(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; +x_5 = l_Lean_Parser_Term_hole_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_hole_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_hole_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_hole_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_mkHole___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_namedHole___elambda__1___closed__1() { _start: { @@ -8407,6 +10008,74 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_namedHole_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_namedHole___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_namedHole_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_namedHole_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_namedHole___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_namedHole_parenthesizer(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; +x_5 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_namedHole_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_namedHole_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_namedHole___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__1() { _start: { @@ -8799,6 +10468,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_sorry_parenthesizer(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; +x_5 = l_Lean_Parser_Term_sorry_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_sorry_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_sorry_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_cdot___elambda__1___closed__1() { _start: { @@ -9199,6 +10924,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_cdot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_cdot___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_cdot_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_cdot___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_cdot_parenthesizer(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; +x_5 = l_Lean_Parser_Term_cdot_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_cdot_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_cdot_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_cdot___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_emptyC___elambda__1___closed__1() { _start: { @@ -9599,6 +11380,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_emptyC_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_emptyC___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_emptyC_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_emptyC___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_emptyC_parenthesizer(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; +x_5 = l_Lean_Parser_Term_emptyC_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_emptyC_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_emptyC_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_emptyC___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_typeAscription___elambda__1___closed__1() { _start: { @@ -11534,6 +13371,263 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_tupleTail_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_tupleTail___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_tupleTail_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_tupleTail_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_tupleTail___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_tupleTail_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_tupleTail_parenthesizer(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; +x_5 = l_Lean_Parser_Term_tupleTail_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_tupleTail_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_typeAscription_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer(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; +x_5 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_tupleTail_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_typeAscription_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer(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_Parser_Term_parenSpecial_parenthesizer___closed__3; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Term_paren_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_paren___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_paren_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_parenSpecial_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_paren_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_paren_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_paren_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_paren_parenthesizer___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_paren_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_paren_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_paren_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_paren_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_paren_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_paren_parenthesizer___closed__6; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_paren_parenthesizer(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; +x_5 = l_Lean_Parser_Term_paren_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_paren_parenthesizer___closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_paren_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_paren_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_paren_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_paren_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_anonymousCtor___elambda__1___spec__1(uint8_t x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -12222,6 +14316,98 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer(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; +x_5 = l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_anonymousCtor_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_Term_optIdent___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -13487,6 +15673,161 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_optIdent_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_optIdent_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_optIdent_parenthesizer___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_Term_optIdent_parenthesizer(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_Parser_Term_optIdent_parenthesizer___closed__2; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Term_if_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_if___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_if_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_if_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_if_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_if_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_if_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_if_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_optIdent_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_if_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_if_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Term_if_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_if_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_if_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_if_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_if___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_if_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_if_parenthesizer(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; +x_5 = l_Lean_Parser_Term_if_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_if_parenthesizer___closed__8; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_if_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_if_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_if_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_if___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_if_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__1() { _start: { @@ -15205,6 +17546,212 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_haveAssign_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_haveAssign_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_haveAssign_parenthesizer(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; +x_5 = l_Lean_Parser_Term_haveAssign_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_haveAssign_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_fromTerm_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_fromTerm_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_fromTerm_parenthesizer(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; +x_5 = l_Lean_Parser_Term_fromTerm_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_fromTerm_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_have___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_haveAssign_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_fromTerm_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_have_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_have_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_have_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_have_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_if_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Term_have_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_have_parenthesizer___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_have___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_have_parenthesizer___closed__8; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_have_parenthesizer(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; +x_5 = l_Lean_Parser_Term_have_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_have_parenthesizer___closed__9; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_have_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_have_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_have___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_suffices___elambda__1___closed__1() { _start: { @@ -15925,6 +18472,110 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_suffices___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_have_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_suffices_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_if_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Term_suffices_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_suffices_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_suffices_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_suffices_parenthesizer(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; +x_5 = l_Lean_Parser_Term_suffices_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_suffices_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_suffices_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_show___elambda__1___closed__1() { _start: { @@ -16423,6 +19074,86 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_show_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_show___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_show_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_have_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_show_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_show_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_show_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_show___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_show_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_show_parenthesizer(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; +x_5 = l_Lean_Parser_Term_show_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_show_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_show_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_show_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_show___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__1() { _start: { @@ -20236,6 +22967,391 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer(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; +x_5 = l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* l_Lean_Parser_group_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_Lean_nullKind; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_fieldIdx_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_structInstArrayRef_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__7; +x_2 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__8; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer(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; +x_5 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4; +x_6 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__9; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstField_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_structInstField___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstField_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_structInstLVal_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstField_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInstField_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInstField_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_structInstField___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_structInstField_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_structInstField_parenthesizer(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; +x_5 = l_Lean_Parser_Term_structInstField_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_structInstField_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_structInst___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_structInst_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_structInstField_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInst_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInst_parenthesizer___closed__7; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInst_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Term_structInst_parenthesizer___closed__8; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInst_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Term_structInst_parenthesizer___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInst_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_structInst_parenthesizer___closed__10; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_structInst_parenthesizer___closed__11; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_structInst___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_structInst_parenthesizer___closed__12; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_structInst_parenthesizer(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; +x_5 = l_Lean_Parser_Term_structInst_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_structInst_parenthesizer___closed__13; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_structInst_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_structInst___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_typeSpec___elambda__1___closed__1() { _start: { @@ -21563,6 +24679,160 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_typeSpec_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_typeSpec___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_typeSpec_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer(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; +x_5 = l_Lean_Parser_Term_typeSpec_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_typeSpec_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_optType_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_typeSpec_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Term_optType_parenthesizer(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_Parser_Term_optType_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_subtype___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_optType_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_subtype_parenthesizer___closed__2; +x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_subtype_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_subtype_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_subtype___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_subtype_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_subtype_parenthesizer(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; +x_5 = l_Lean_Parser_Term_subtype_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_subtype_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_subtype_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_subtype___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1() { _start: { @@ -22428,6 +25698,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_listLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_listLit___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_listLit_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_listLit___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_listLit_parenthesizer(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; +x_5 = l_Lean_Parser_Term_listLit_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_listLit_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_listLit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_listLit___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_arrayLit___elambda__1___closed__1() { _start: { @@ -23020,6 +26346,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_arrayLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_arrayLit_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_arrayLit_parenthesizer(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; +x_5 = l_Lean_Parser_Term_arrayLit_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_arrayLit_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_arrayLit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_explicit___elambda__1___closed__1() { _start: { @@ -23400,6 +26782,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_explicit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_explicit___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_explicit_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_explicit___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_explicit_parenthesizer(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; +x_5 = l_Lean_Parser_Term_explicit_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_explicit_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_explicit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_explicit___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_inaccessible___elambda__1___closed__1() { _start: { @@ -23994,6 +27432,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_inaccessible_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer(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; +x_5 = l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_inaccessible_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_inaccessible_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_Term_binderIdent___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -27169,6 +30663,584 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_binderIdent_parenthesizer(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; +x_5 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_6 = l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* l_Lean_Parser_Term_binderType_parenthesizer(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (x_1 == 0) +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_6, x_2, x_3, x_4, x_5); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = l_Lean_nullKind; +x_9 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_10 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_8, x_9, x_2, x_3, x_4, x_5); +return x_10; +} +} +} +lean_object* l_Lean_Parser_Term_binderType_parenthesizer___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_6; lean_object* x_7; +x_6 = lean_unbox(x_1); +lean_dec(x_1); +x_7 = l_Lean_Parser_Term_binderType_parenthesizer(x_6, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer(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; +x_5 = l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___lambda__1___closed__4; +x_6 = l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_binderTactic___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_2, 0, x_1); +lean_closure_set(x_2, 1, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_binderTactic___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer(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; +x_5 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_binderDefault_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_binderDefault___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_binderDefault_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_binderDefault___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_binderDefault_parenthesizer(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; +x_5 = l_Lean_Parser_Term_binderDefault_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_binderDefault_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_binderIdent_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_binderTactic_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_binderDefault_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__7; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer(uint8_t 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_box(x_1); +x_7 = lean_alloc_closure((void*)(l_Lean_Parser_Term_binderType_parenthesizer___boxed), 5, 1); +lean_closure_set(x_7, 0, x_6); +x_8 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__8; +x_9 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_9, 0, x_7); +lean_closure_set(x_9, 1, x_8); +x_10 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3; +x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_11, 0, x_10); +lean_closure_set(x_11, 1, x_9); +x_12 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_13 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_13, 0, x_12); +lean_closure_set(x_13, 1, x_11); +x_14 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; +x_15 = lean_unsigned_to_nat(1024u); +x_16 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_16, 0, x_14); +lean_closure_set(x_16, 1, x_15); +lean_closure_set(x_16, 2, x_13); +x_17 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__1; +x_18 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_17, x_16, x_2, x_3, x_4, x_5); +return x_18; +} +} +lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___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_6; lean_object* x_7; +x_6 = lean_unbox(x_1); +lean_dec(x_1); +x_7 = l_Lean_Parser_Term_explicitBinder_parenthesizer(x_6, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_implicitBinder_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_implicitBinder___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer(uint8_t 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; +x_6 = lean_box(x_1); +x_7 = lean_alloc_closure((void*)(l_Lean_Parser_Term_binderType_parenthesizer___boxed), 5, 1); +lean_closure_set(x_7, 0, x_6); +x_8 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_9 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_9, 0, x_7); +lean_closure_set(x_9, 1, x_8); +x_10 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3; +x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_11, 0, x_10); +lean_closure_set(x_11, 1, x_9); +x_12 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_12, 0, x_8); +lean_closure_set(x_12, 1, x_11); +x_13 = l_Lean_Parser_Term_implicitBinder___elambda__1___closed__2; +x_14 = lean_unsigned_to_nat(1024u); +x_15 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_15, 0, x_13); +lean_closure_set(x_15, 1, x_14); +lean_closure_set(x_15, 2, x_12); +x_16 = l_Lean_Parser_Term_implicitBinder_parenthesizer___closed__1; +x_17 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_16, x_15, x_2, x_3, x_4, x_5); +return x_17; +} +} +lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer___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_6; lean_object* x_7; +x_6 = lean_unbox(x_1); +lean_dec(x_1); +x_7 = l_Lean_Parser_Term_implicitBinder_parenthesizer(x_6, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_instBinder_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_instBinder___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_instBinder_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_if_parenthesizer___closed__5; +x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_instBinder_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_instBinder_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_instBinder_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_instBinder___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_instBinder_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_instBinder_parenthesizer(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; +x_5 = l_Lean_Parser_Term_instBinder_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_instBinder_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_instBinder_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer(uint8_t 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_box(x_1); +x_7 = lean_alloc_closure((void*)(l_Lean_Parser_Term_explicitBinder_parenthesizer___boxed), 5, 1); +lean_closure_set(x_7, 0, x_6); +x_8 = lean_box(x_1); +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_Term_implicitBinder_parenthesizer___boxed), 5, 1); +lean_closure_set(x_9, 0, x_8); +x_10 = l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1; +x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_11, 0, x_9); +lean_closure_set(x_11, 1, x_10); +x_12 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_7, x_11, x_2, x_3, x_4, x_5); +return x_12; +} +} +lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___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_6; lean_object* x_7; +x_6 = lean_unbox(x_1); +lean_dec(x_1); +x_7 = l_Lean_Parser_Term_bracketedBinder_parenthesizer(x_6, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_depArrow___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__2() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 1; +x_2 = lean_box(x_1); +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Term_bracketedBinder_parenthesizer___boxed), 5, 1); +lean_closure_set(x_3, 0, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(25u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_unicodeSymbol_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_depArrow___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_depArrow_parenthesizer(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; +x_5 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__8; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_depArrow_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_depArrow___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_simpleBinder___elambda__1___spec__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -28347,6 +32419,164 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer(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; +x_5 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_forall___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__2() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 0; +x_2 = lean_box(x_1); +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Term_bracketedBinder_parenthesizer___boxed), 5, 1); +lean_closure_set(x_3, 0, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_simpleBinder_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_forall_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_forall_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_forall_parenthesizer___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_forall_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_forall_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_forall___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_forall_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_forall_parenthesizer(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; +x_5 = l_Lean_Parser_Term_forall_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_forall_parenthesizer___closed__8; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_forall_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_forall_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_forall_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_forall___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_forall_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_funBinder___elambda__1___closed__1() { _start: { @@ -29174,6 +33404,191 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__1() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 0; +x_2 = lean_box(x_1); +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Term_implicitBinder_parenthesizer___boxed), 5, 1); +lean_closure_set(x_3, 0, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_funBinder_parenthesizer(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; +x_5 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* l_Lean_Parser_darrow_parenthesizer___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_PrettyPrinter_Parenthesizer_visitToken___rarg(x_1, x_2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_darrow_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_darrow_parenthesizer___rarg___boxed), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Parser_darrow_parenthesizer___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Parser_darrow_parenthesizer___rarg(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +lean_object* l_Lean_Parser_darrow_parenthesizer___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Parser_darrow_parenthesizer(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_fun_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_fun___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_fun_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_funBinder_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_fun_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_fun_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_fun_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_darrow_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_fun_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_fun_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_fun_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_fun_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_fun_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_fun_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_fun_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_fun_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_fun___elambda__1___closed__2; +x_2 = l_Lean_Parser_maxPrec; +x_3 = l_Lean_Parser_Term_fun_parenthesizer___closed__7; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_fun_parenthesizer(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; +x_5 = l_Lean_Parser_Term_fun_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_fun_parenthesizer___closed__8; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_fun_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_fun_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_fun_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_fun___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_fun_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_matchAlt___closed__1() { _start: { @@ -34338,6 +38753,373 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer(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; +x_5 = l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_inc(x_1); +x_7 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_7, 0, x_1); +x_8 = 0; +x_9 = lean_box(x_8); +x_10 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_10, 0, x_7); +lean_closure_set(x_10, 1, x_9); +x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 6, 2); +lean_closure_set(x_11, 0, x_1); +lean_closure_set(x_11, 1, x_2); +x_12 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_10, x_11, x_3, x_4, x_5, x_6); +return x_12; +} +} +lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg), 6, 0); +return x_2; +} +} +lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Parser_nodeWithAntiquot_parenthesizer(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_fun_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer(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; +x_5 = l_Lean_Parser_Term_matchAlt___closed__2; +x_6 = l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1; +x_7 = l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkColGe_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchAlt_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__3; +x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +if (x_1 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_8 = l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__4; +x_9 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_7, x_8, x_3, x_4, x_5, x_6); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = l_Lean_Parser_Term_structInst_parenthesizer___closed__6; +x_11 = l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__4; +x_12 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_10, x_11, x_3, x_4, x_5, x_6); +return x_12; +} +} +} +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = lean_box(x_1); +x_7 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___boxed), 6, 1); +lean_closure_set(x_7, 0, x_6); +x_8 = l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(x_7, x_2, x_3, x_4, x_5); +return x_8; +} +} +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_1); +lean_dec(x_1); +x_8 = l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1(x_7, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_2); +return x_8; +} +} +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___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_6; lean_object* x_7; +x_6 = lean_unbox(x_1); +lean_dec(x_1); +x_7 = l_Lean_Parser_Term_matchAlts_parenthesizer(x_6, x_2, x_3, x_4, x_5); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_match___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchDiscr_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_match_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__4() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 1; +x_2 = lean_box(x_1); +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchAlts_parenthesizer___boxed), 5, 1); +lean_closure_set(x_3, 0, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_match_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_subtype_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_match_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_match_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_match_parenthesizer___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_match_parenthesizer___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_match_parenthesizer___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_match___elambda__1___closed__1; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_match_parenthesizer___closed__8; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_match_parenthesizer(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; +x_5 = l_Lean_Parser_Term_match_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_match_parenthesizer___closed__9; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_match_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_match_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_match_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_match___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_match_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_nomatch___elambda__1___closed__1() { _start: { @@ -34788,6 +39570,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_nomatch_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_nomatch___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_nomatch_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_nomatch___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_nomatch_parenthesizer(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; +x_5 = l_Lean_Parser_Term_nomatch_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_nomatch_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_nomatch_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_nomatch___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* l_Lean_Parser_Term_optExprPrecedence___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -35538,6 +40376,125 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_optExprPrecedence_parenthesizer(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_Parser_Term_optExprPrecedence_parenthesizer___closed__2; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_5, x_1, x_2, x_3, x_4); +return x_6; +} +} +lean_object* _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_parser_x21___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_optExprPrecedence_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_parser_x21_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_parser_x21_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_parser_x21___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_parser_x21_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer(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; +x_5 = l_Lean_Parser_Term_parser_x21_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_parser_x21_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_parser_x21_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_parser_x21___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_tparser_x21___elambda__1___closed__1() { _start: { @@ -36022,6 +40979,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_tparser_x21___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_parser_x21_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_tparser_x21_parenthesizer(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; +x_5 = l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_tparser_x21_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_borrowed___elambda__1___closed__1() { _start: { @@ -36482,6 +41495,84 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_borrowed_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_borrowed___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_borrowed_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_leadPrec___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_borrowed_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_borrowed_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_borrowed_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_borrowed___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_borrowed_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_borrowed_parenthesizer(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; +x_5 = l_Lean_Parser_Term_borrowed_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_borrowed_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_borrowed_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_borrowed___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_quotedName___elambda__1___closed__1() { _start: { @@ -36708,6 +41799,93 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_nameLit_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_nameLit___elambda__1___closed__1; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_nameLit_parenthesizer(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; +x_5 = l_Lean_Parser_nameLit_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__17; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_quotedName_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_quotedName___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_quotedName_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_nameLit_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_quotedName_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_quotedName___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_quotedName_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_quotedName_parenthesizer(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; +x_5 = l_Lean_Parser_Term_quotedName_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_quotedName_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_quotedName_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_quotedName___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_match__syntax___elambda__1___closed__1() { _start: { @@ -37341,6 +42519,86 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_match__syntax_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_match__syntax___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_match__syntax_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_match_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_match__syntax_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_match__syntax_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_match__syntax_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_match__syntax___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_match__syntax_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_match__syntax_parenthesizer(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; +x_5 = l_Lean_Parser_Term_match__syntax_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_match__syntax_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_match__syntax_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_match__syntax___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_letIdLhs___elambda__1___closed__1() { _start: { @@ -38798,6 +44056,337 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_forall_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_subtype_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_type_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer(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; +x_5 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_6 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_letIdLhs_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__3; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer(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; +x_5 = l_Lean_Parser_Term_letIdDecl___closed__2; +x_6 = l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__4; +x_7 = l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_subtype_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19; +x_2 = l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer(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; +x_5 = l_Lean_Parser_Term_letIdDecl___closed__2; +x_6 = l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 0; +x_2 = lean_box(x_1); +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchAlts_parenthesizer___boxed), 5, 1); +lean_closure_set(x_3, 0, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_letEqnsDecl_parenthesizer(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; +x_5 = l_Lean_Parser_Term_letIdDecl___closed__2; +x_6 = l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_letPatDecl_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_letEqnsDecl_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_letDecl_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_letDecl_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_letIdDecl_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Term_letDecl_parenthesizer(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; +x_5 = l_Lean_Parser_Term_letDecl_parenthesizer___closed__4; +x_6 = l_Lean_Parser_Term_letDecl_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_let_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_let___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_let_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_letDecl_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_let_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_let_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_let_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_let_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_let_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_let___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_let_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_let_parenthesizer(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; +x_5 = l_Lean_Parser_Term_let_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_let_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_let_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_let_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_let_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_let___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_let_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_let_x21___elambda__1___closed__1() { _start: { @@ -39410,6 +44999,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_let_x21_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_let_x21___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_let_x21_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_let_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_let_x21_parenthesizer(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; +x_5 = l_Lean_Parser_Term_let_x21_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_let_x21_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_let_x21_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_leftArrow___elambda__1___closed__1() { _start: { @@ -42874,6 +48519,116 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_PrettyPrinter_Parenthesizer_visitToken___rarg(x_1, x_2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_Term_leftArrow_parenthesizer___rarg___boxed), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Parser_Term_leftArrow_parenthesizer___rarg(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Parser_Term_leftArrow_parenthesizer(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_liftMethod_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_leftArrow_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_liftMethod_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_liftMethod_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Parser_Term_liftMethod_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_liftMethod_parenthesizer(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; +x_5 = l_Lean_Parser_Term_liftMethod_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_liftMethod_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_liftMethod_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_do___elambda__1___closed__1() { _start: { @@ -43440,6 +49195,499 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_doLet_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_doLet___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_doLet_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_let_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doLet_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_doLet___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_doLet_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_doLet_parenthesizer(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; +x_5 = l_Lean_Parser_Term_doLet_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_doLet_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_doId_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_doId___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_doId_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_subtype_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doId_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_doId_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doId_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_doId_parenthesizer___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_doId_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_doId_parenthesizer___closed__4; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doId_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_doId___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_doId_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_doId_parenthesizer(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; +x_5 = l_Lean_Parser_Term_doId_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_doId_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_doPat___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_doPat_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_2 = l_Lean_Parser_Term_structInst_parenthesizer___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_doPat_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_doPat_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_doPat___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_doPat_parenthesizer___closed__5; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_doPat_parenthesizer(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; +x_5 = l_Lean_Parser_Term_doPat_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_doPat_parenthesizer___closed__6; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_doExpr_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_doExpr___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_doExpr_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_doExpr___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_doExpr_parenthesizer(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; +x_5 = l_Lean_Parser_Term_doExpr_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_doExpr_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_doPat_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_doExpr_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_doElem_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_doElem_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_doId_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_doElem_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_doElem_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_doLet_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Term_doElem_parenthesizer(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; +x_5 = l_Lean_Parser_Term_doElem_parenthesizer___closed__6; +x_6 = l_Lean_Parser_Term_doElem_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_doSeq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_doElem_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l_Lean_Parser_Term_doSeq_parenthesizer(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; +x_5 = l_Lean_Parser_Term_doSeq_parenthesizer___closed__1; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_sepBy_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_doSeq_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_bracketedDoSeq_parenthesizer(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; +x_5 = l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_do_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_do___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_do_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_bracketedDoSeq_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_do_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_do_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_do_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_do_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_do_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_do___elambda__1___closed__2; +x_2 = l_Lean_Parser_maxPrec; +x_3 = l_Lean_Parser_Term_do_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_do_parenthesizer(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; +x_5 = l_Lean_Parser_Term_do_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_do_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_do_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_do_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_do_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_do___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_do_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_nativeRefl___elambda__1___closed__1() { _start: { @@ -43890,6 +50138,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_nativeRefl___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_nativeRefl___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_nativeRefl_parenthesizer(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; +x_5 = l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_nativeRefl_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_nativeRefl___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_nativeDecide___elambda__1___closed__1() { _start: { @@ -44340,6 +50644,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_nativeDecide___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer(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; +x_5 = l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_nativeDecide_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__1() { _start: { @@ -44782,6 +51142,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_decide_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__2; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_decide_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_decide_parenthesizer(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; +x_5 = l_Lean_Parser_Term_decide_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_decide_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_decide_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_decide_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_decide___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_not___elambda__1___closed__1() { _start: { @@ -45242,6 +51658,84 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_not_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_not___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_not_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(40u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_not_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_not_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_not_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_not___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_not_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_not_parenthesizer(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; +x_5 = l_Lean_Parser_Term_not_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_not_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_not_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_not_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_not_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_not___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_not_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_bnot___elambda__1___closed__1() { _start: { @@ -45692,6 +52186,62 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_bnot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_bnot___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_bnot_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_bnot___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_not_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_bnot_parenthesizer(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; +x_5 = l_Lean_Parser_Term_bnot_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_bnot_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_bnot_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_bnot___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_uminus___elambda__1___closed__1() { _start: { @@ -46144,6 +52694,84 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_uminus_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_uminus___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_uminus_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(100u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_uminus_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_uminus_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_uminus_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_uminus___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(65u); +x_3 = l_Lean_Parser_Term_uminus_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_uminus_parenthesizer(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; +x_5 = l_Lean_Parser_Term_uminus_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_uminus_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_uminus_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_uminus___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_namedArgument___elambda__1___closed__1() { _start: { @@ -47377,6 +54005,149 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_namedArgument___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_optIdent_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_namedArgument_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_namedArgument_parenthesizer___closed__3; +x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer(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; +x_5 = l_Lean_Parser_Term_namedArgument_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_namedArgument_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_app_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_namedArgument_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_app_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_app_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_app_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_type_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_app_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_app_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_app_parenthesizer___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Parser_Term_app_parenthesizer(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; +x_5 = l_Lean_mkAppStx___closed__8; +x_6 = l_Lean_Parser_Term_leadPrec___closed__1; +x_7 = l_Lean_Parser_Term_app_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_app_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_app_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_app_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_mkAppStx___closed__8; +x_4 = l___regBuiltin_Lean_Parser_Term_app_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_proj___elambda__1___closed__1() { _start: { @@ -47735,6 +54506,68 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_proj_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Level_ident_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_proj_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_symbolNoWs_parenthesizer___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_proj_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_proj_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_proj_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_proj_parenthesizer(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; +x_5 = l_Lean_Parser_Term_proj___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_proj_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_proj_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_proj_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_proj_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_proj___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_proj_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_arrow___elambda__1___closed__1() { _start: { @@ -47859,6 +54692,70 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_arrow_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(25u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_arrow_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_arrow_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_arrow_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Term_arrow_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_arrow_parenthesizer(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; +x_5 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_arrow_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_arrow_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_arrayRef___elambda__1___closed__1() { _start: { @@ -48173,6 +55070,48 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_arrayRef_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_proj_parenthesizer___closed__2; +x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_arrayRef_parenthesizer(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; +x_5 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_arrayRef_parenthesizer___closed__1; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_arrayRef_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_dollar___elambda__1___closed__1() { _start: { @@ -48424,6 +55363,70 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_dollar_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; +x_2 = l_Lean_Parser_Term_type_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_dollar_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_dollar_parenthesizer___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_dollar_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_dollar_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_dollar_parenthesizer(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; +x_5 = l_Lean_Parser_Term_dollar___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Lean_Parser_Term_dollar_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_dollar_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_dollar___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_dollarProj___elambda__1___closed__1() { _start: { @@ -48786,6 +55789,48 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_dollarProj_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_proj_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_dollarProj_parenthesizer(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; +x_5 = l_Lean_Parser_Term_dollarProj___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Lean_Parser_Term_dollarProj_parenthesizer___closed__1; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_dollarProj_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_dollarProj___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1() { _start: { @@ -49393,6 +56438,70 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_where_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_where_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_let_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Term_where_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_where_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_where_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_where_parenthesizer(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; +x_5 = l_Lean_Parser_Term_where___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Lean_Parser_Term_where_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_where_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_where_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_where_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_where___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_where_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_fcomp___elambda__1___closed__1() { _start: { @@ -49524,6 +56633,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_fcomp_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(90u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_fcomp_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(90u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_fcomp_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_fcomp_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_fcomp_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_fcomp_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_fcomp_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_fcomp_parenthesizer(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; +x_5 = l_Lean_Parser_Term_fcomp___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_fcomp_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_fcomp_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_fcomp___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_prod___elambda__1___closed__1() { _start: { @@ -49655,6 +56838,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_prod_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(35u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_prod_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(35u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_prod_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_prod_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_prod_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_prod_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_prod_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_prod_parenthesizer(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; +x_5 = l_Lean_Parser_Term_prod___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_prod_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_prod_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_prod_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_prod_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_prod___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_prod_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_add___elambda__1___closed__1() { _start: { @@ -49778,6 +57035,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_add_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(65u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_add_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(66u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_add_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_add_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_add_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_add_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_add_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_add_parenthesizer(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; +x_5 = l_Lean_Parser_Term_add___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_add_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_add_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_add_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_add_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_add___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_add_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_sub___elambda__1___closed__1() { _start: { @@ -49901,6 +57232,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_sub_parenthesizer(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; +x_5 = l_Lean_Parser_Term_sub___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_add_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_sub_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_sub_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_sub_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_sub___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_sub_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_mul___elambda__1___closed__1() { _start: { @@ -50024,6 +57385,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_mul_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(70u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_mul_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(71u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_mul_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_mul_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_mul_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_mul_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_mul_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_mul_parenthesizer(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; +x_5 = l_Lean_Parser_Term_mul___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_mul_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_mul_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_mul_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_mul_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_mul___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_mul_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_div___elambda__1___closed__1() { _start: { @@ -50147,6 +57582,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_div_parenthesizer(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; +x_5 = l_Lean_Parser_Term_div___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_mul_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_div_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_div_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_div_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_div___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_div_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_mod___elambda__1___closed__1() { _start: { @@ -50270,6 +57735,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_mod_parenthesizer(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; +x_5 = l_Lean_Parser_Term_mod___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_mul_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_mod_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_mod_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_mod_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_mod___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_mod_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_modN___elambda__1___closed__1() { _start: { @@ -50401,6 +57896,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_modN_parenthesizer(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; +x_5 = l_Lean_Parser_Term_modN___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_mul_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_modN_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_modN_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_modN_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_modN___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_modN_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_pow___elambda__1___closed__1() { _start: { @@ -50532,6 +58057,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_pow_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(80u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_pow_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(80u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_pow_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_pow_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_pow_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_pow_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_pow_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_pow_parenthesizer(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; +x_5 = l_Lean_Parser_Term_pow___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_pow_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_pow_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_pow_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_pow_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_pow___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_pow_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_le___elambda__1___closed__1() { _start: { @@ -50672,6 +58271,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_le_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(50u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_le_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(51u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_le_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_le_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_le_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_le_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_le_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_le_parenthesizer(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; +x_5 = l_Lean_Parser_Term_le___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_le_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_le_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_le_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_le_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_le___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_le_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_ge___elambda__1___closed__1() { _start: { @@ -50812,6 +58485,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_ge_parenthesizer(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; +x_5 = l_Lean_Parser_Term_ge___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_le_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_ge_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_ge_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_ge_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_ge___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_ge_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_lt___elambda__1___closed__1() { _start: { @@ -50943,6 +58646,60 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_lt_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_le_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_lt_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_le_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_lt_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_lt_parenthesizer(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; +x_5 = l_Lean_Parser_Term_lt___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_lt_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_lt_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_lt_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_lt_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_lt___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_lt_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_gt___elambda__1___closed__1() { _start: { @@ -51074,6 +58831,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_gt_parenthesizer(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; +x_5 = l_Lean_Parser_Term_gt___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_lt_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_gt_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_gt_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_gt_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_gt___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_gt_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_eq___elambda__1___closed__1() { _start: { @@ -51205,6 +58992,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_eq_parenthesizer(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; +x_5 = l_Lean_Parser_Term_eq___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_lt_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_eq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_eq_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_eq_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_eq___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_eq_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_ne___elambda__1___closed__1() { _start: { @@ -51336,6 +59153,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_ne_parenthesizer(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; +x_5 = l_Lean_Parser_Term_ne___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_lt_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_ne_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_ne_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_ne_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_ne___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_ne_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_beq___elambda__1___closed__1() { _start: { @@ -51459,6 +59306,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_beq_parenthesizer(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; +x_5 = l_Lean_Parser_Term_beq___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_lt_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_beq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_beq_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_beq_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_beq___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_beq_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_bne___elambda__1___closed__1() { _start: { @@ -51590,6 +59467,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_bne_parenthesizer(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; +x_5 = l_Lean_Parser_Term_bne___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_lt_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_bne_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_bne_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_bne_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_bne___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_bne_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_heq___elambda__1___closed__1() { _start: { @@ -51730,6 +59637,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_heq_parenthesizer(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; +x_5 = l_Lean_Parser_Term_heq___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_le_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_heq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_heq_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_heq_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_heq___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_heq_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_equiv___elambda__1___closed__1() { _start: { @@ -51861,6 +59798,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_equiv_parenthesizer(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; +x_5 = l_Lean_Parser_Term_equiv___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_lt_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_equiv_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_equiv___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1() { _start: { @@ -52379,6 +60346,70 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_subst_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(75u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_subst_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_subst_parenthesizer___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_subst_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_subst_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_subst_parenthesizer(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; +x_5 = l_Lean_Parser_Term_subst___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(75u); +x_7 = l_Lean_Parser_Term_subst_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_subst_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_subst_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_subst_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_subst___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_subst_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_and___elambda__1___closed__1() { _start: { @@ -52519,6 +60550,60 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_and_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_prod_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_and_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_prod_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_and_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_and_parenthesizer(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; +x_5 = l_Lean_Parser_Term_and___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_and_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_and_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_and_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_and_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_and___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_and_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_or___elambda__1___closed__1() { _start: { @@ -52659,6 +60744,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_or_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(30u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_or_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(30u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_or_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_or_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_or_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_or_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_or_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_or_parenthesizer(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; +x_5 = l_Lean_Parser_Term_or___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_or_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_or_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_or_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_or_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_or___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_or_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_iff___elambda__1___closed__1() { _start: { @@ -52799,6 +60958,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_iff_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(20u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_iff_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(21u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_iff_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Term_iff_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_iff_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_iff_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_iff_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_iff_parenthesizer(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; +x_5 = l_Lean_Parser_Term_iff___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_iff_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_iff_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_iff_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_iff_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_iff___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_iff_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_band___elambda__1___closed__1() { _start: { @@ -52930,6 +61163,70 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_band_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(36u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_band_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_band_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_band_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_prod_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_band_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_band_parenthesizer(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; +x_5 = l_Lean_Parser_Term_band___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_band_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_band_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_band_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_band_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_band___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_band_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_bor___elambda__1___closed__1() { _start: { @@ -53061,6 +61358,70 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_bor_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(31u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_bor_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_bor_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_bor_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_or_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_bor_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_bor_parenthesizer(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; +x_5 = l_Lean_Parser_Term_bor___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_bor_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_bor_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_bor_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_bor_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_bor___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_bor_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_append___elambda__1___closed__1() { _start: { @@ -53192,6 +61553,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_append_parenthesizer(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; +x_5 = l_Lean_Parser_Term_append___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_add_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_append_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_append_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_append_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_append___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_append_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_cons___elambda__1___closed__1() { _start: { @@ -53315,6 +61706,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_cons_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(67u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_cons_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(67u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_cons_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_cons_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_cons_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_cons_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_cons_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_cons_parenthesizer(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; +x_5 = l_Lean_Parser_Term_cons___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_cons_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_cons_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_cons_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_cons_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_cons___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_cons_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_orelse___elambda__1___closed__1() { _start: { @@ -53446,6 +61911,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_orelse_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_orelse_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_orelse_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_orelse_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_orelse_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_orelse_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_orelse_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_orelse_parenthesizer(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; +x_5 = l_Lean_Parser_Term_orelse___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_orelse_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_orelse_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_orelse___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_orM___elambda__1___closed__1() { _start: { @@ -53577,6 +62116,60 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_orM_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_or_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_orM_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_or_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_orM_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_orM_parenthesizer(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; +x_5 = l_Lean_Parser_Term_orM___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_orM_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_orM_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_orM_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_orM_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_orM___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_orM_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_andM___elambda__1___closed__1() { _start: { @@ -53708,6 +62301,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_andM_parenthesizer(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; +x_5 = l_Lean_Parser_Term_andM___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_prod_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_andM_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_andM_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_andM_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_andM___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_andM_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_andthen___elambda__1___closed__1() { _start: { @@ -53839,6 +62462,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_andthen_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(60u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_andthen_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(60u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_andthen_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_andthen_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_andthen_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_andthen_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_andthen_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_andthen_parenthesizer(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; +x_5 = l_Lean_Parser_Term_andthen___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_andthen_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_andthen_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_andthen___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_bindOp___elambda__1___closed__1() { _start: { @@ -53970,6 +62667,80 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_bindOp_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(55u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_bindOp_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(56u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_bindOp_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_bindOp_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_bindOp_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_bindOp_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_bindOp_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_bindOp_parenthesizer(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; +x_5 = l_Lean_Parser_Term_bindOp___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_bindOp_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_bindOp_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_bindOp___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_mapRev___elambda__1___closed__1() { _start: { @@ -54101,6 +62872,58 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_mapRev_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(100u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_mapRev_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_mapRev_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_uminus_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_mapRev_parenthesizer(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; +x_5 = l_Lean_Parser_Term_mapRev___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_mapRev_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_mapRev_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_mapRev___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_seq___elambda__1___closed__1() { _start: { @@ -54224,6 +63047,70 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_seq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(61u); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_seq_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_seq_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_seq_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_andthen_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_seq_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_seq_parenthesizer(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; +x_5 = l_Lean_Parser_Term_seq___elambda__1___closed__1; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_seq_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_seq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_seq_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_seq_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_seq___elambda__1___closed__1; +x_4 = l___regBuiltin_Lean_Parser_Term_seq_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_seqLeft___elambda__1___closed__1() { _start: { @@ -54355,6 +63242,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_seqLeft_parenthesizer(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; +x_5 = l_Lean_Parser_Term_seqLeft___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_seq_parenthesizer___closed__3; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_seqLeft_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_seqLeft___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_seqRight___elambda__1___closed__1() { _start: { @@ -54486,6 +63403,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_seqRight_parenthesizer(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; +x_5 = l_Lean_Parser_Term_seqRight___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_andthen_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_seqRight_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_seqRight___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_map___elambda__1___closed__1() { _start: { @@ -54617,6 +63564,36 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Parser_Term_map_parenthesizer(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; +x_5 = l_Lean_Parser_Term_map___elambda__1___closed__2; +x_6 = lean_unsigned_to_nat(1024u); +x_7 = l_Lean_Parser_Term_mapRev_parenthesizer___closed__2; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(x_5, x_6, x_7, x_1, x_2, x_3, x_4); +return x_8; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_map_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_map_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_map_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_map___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_map_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_tacticBlock___elambda__1___closed__1() { _start: { @@ -55285,6 +64262,116 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Tactic_seq_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_sepBy_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Tactic_seq_parenthesizer(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; +x_5 = l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___lambda__1___closed__4; +x_6 = l_Lean_Parser_Tactic_seq_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_seq_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_tacticBlock_parenthesizer(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; +x_5 = l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__5; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_tacticBlock_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__1() { _start: { @@ -55731,6 +64818,74 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_byTactic___elambda__1___closed__3; +x_2 = 1; +x_3 = lean_box(x_2); +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 6, 2); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Term_byTactic___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_leadPrec; +x_3 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__2; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 7, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_byTactic_parenthesizer(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; +x_5 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_byTactic_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Term_byTactic___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__1() { _start: { @@ -56082,6 +65237,81 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_maxPrec; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed), 5, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_tacticStxQuot_parenthesizer(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; +x_5 = l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__4; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_tacticStxQuot_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l___regBuiltinParser_Lean_Parser_Term_tacticStxQuot___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__1() { _start: { @@ -56406,6 +65636,47 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; +x_2 = l_Lean_Parser_Level_paren_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_levelStxQuot_parenthesizer(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; +x_5 = l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_levelStxQuot_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l___regBuiltinParser_Lean_Parser_Term_levelStxQuot___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* _init_l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__1() { _start: { @@ -56740,6 +66011,71 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* _init_l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_fun_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__1; +x_2 = l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 6, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_funBinderStxQuot_parenthesizer(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; +x_5 = l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1; +x_6 = l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__3; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_5, x_6, x_1, x_2, x_3, x_4); +return x_7; +} +} +lean_object* _init_l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_funBinderStxQuot_parenthesizer), 4, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l___regBuiltinParser_Lean_Parser_Term_funBinderStxQuot___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1; +x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); +return x_5; +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Parser_Parser(lean_object*); lean_object* initialize_Lean_Parser_Level(lean_object*); @@ -56948,6 +66284,47 @@ lean_mark_persistent(l_Lean_Parser_Term_id); res = l___regBuiltinParser_Lean_Parser_Term_id(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__1); +l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__2); +l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3); +l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__4); +l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__5); +l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__6); +l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_namedPattern_parenthesizer___closed__1); +l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_namedPattern_parenthesizer___closed__2); +l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_namedPattern_parenthesizer___closed__3); +l_Lean_Parser_Term_namedPattern_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_namedPattern_parenthesizer___closed__4); +l_Lean_Parser_Term_namedPattern_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_namedPattern_parenthesizer___closed__5); +l_Lean_Parser_Term_id_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_id_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_id_parenthesizer___closed__1); +l_Lean_Parser_Term_id_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_id_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_id_parenthesizer___closed__2); +l_Lean_Parser_Term_id_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_id_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_id_parenthesizer___closed__3); +l_Lean_Parser_Term_id_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_id_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_id_parenthesizer___closed__4); +l_Lean_Parser_Term_id_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_id_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_id_parenthesizer___closed__5); +l_Lean_Parser_Term_id_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_id_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_id_parenthesizer___closed__6); +l_Lean_Parser_Term_id_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_id_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_id_parenthesizer___closed__7); +l___regBuiltin_Lean_Parser_Term_id_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_id_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_id_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_id_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_num___elambda__1___closed__1 = _init_l_Lean_Parser_Term_num___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_num___elambda__1___closed__1); l_Lean_Parser_Term_num___elambda__1___closed__2 = _init_l_Lean_Parser_Term_num___elambda__1___closed__2(); @@ -56967,6 +66344,15 @@ lean_mark_persistent(l_Lean_Parser_Term_num); res = l___regBuiltinParser_Lean_Parser_Term_num(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_num_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_num_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_num_parenthesizer___closed__1); +l_Lean_Parser_Term_num_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_num_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_num_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_num_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_num_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_num_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_num_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_str___elambda__1___closed__1 = _init_l_Lean_Parser_Term_str___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_str___elambda__1___closed__1); l_Lean_Parser_Term_str___elambda__1___closed__2 = _init_l_Lean_Parser_Term_str___elambda__1___closed__2(); @@ -56986,6 +66372,19 @@ lean_mark_persistent(l_Lean_Parser_Term_str); res = l___regBuiltinParser_Lean_Parser_Term_str(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_strLit_parenthesizer___closed__1 = _init_l_Lean_Parser_strLit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_strLit_parenthesizer___closed__1); +l_Lean_Parser_Term_str_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_str_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_str_parenthesizer___closed__1); +l_Lean_Parser_Term_str_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_str_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_str_parenthesizer___closed__2); +l_Lean_Parser_Term_str_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_str_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_str_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_str_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_str_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_str_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_str_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_char___elambda__1___closed__1 = _init_l_Lean_Parser_Term_char___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_char___elambda__1___closed__1); l_Lean_Parser_Term_char___elambda__1___closed__2 = _init_l_Lean_Parser_Term_char___elambda__1___closed__2(); @@ -57009,6 +66408,19 @@ lean_mark_persistent(l_Lean_Parser_Term_char); res = l___regBuiltinParser_Lean_Parser_Term_char(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_charLit_parenthesizer___closed__1 = _init_l_Lean_Parser_charLit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_charLit_parenthesizer___closed__1); +l_Lean_Parser_Term_char_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_char_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_char_parenthesizer___closed__1); +l_Lean_Parser_Term_char_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_char_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_char_parenthesizer___closed__2); +l_Lean_Parser_Term_char_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_char_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_char_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_char_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_char_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_char_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_char_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_type___elambda__1___closed__1 = _init_l_Lean_Parser_Term_type___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_type___elambda__1___closed__1); l_Lean_Parser_Term_type___elambda__1___closed__2 = _init_l_Lean_Parser_Term_type___elambda__1___closed__2(); @@ -57052,6 +66464,27 @@ lean_mark_persistent(l_Lean_Parser_Term_type); res = l___regBuiltinParser_Lean_Parser_Term_type(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_type_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_type_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_type_parenthesizer___closed__1); +l_Lean_Parser_Term_type_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_type_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_type_parenthesizer___closed__2); +l_Lean_Parser_Term_type_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_type_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_type_parenthesizer___closed__3); +l_Lean_Parser_Term_type_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_type_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_type_parenthesizer___closed__4); +l_Lean_Parser_Term_type_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_type_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_type_parenthesizer___closed__5); +l_Lean_Parser_Term_type_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_type_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_type_parenthesizer___closed__6); +l_Lean_Parser_Term_type_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_type_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_type_parenthesizer___closed__7); +l_Lean_Parser_Term_type_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_type_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_type_parenthesizer___closed__8); +l___regBuiltin_Lean_Parser_Term_type_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_type_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_type_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_type_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_sort___elambda__1___closed__1 = _init_l_Lean_Parser_Term_sort___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_sort___elambda__1___closed__1); l_Lean_Parser_Term_sort___elambda__1___closed__2 = _init_l_Lean_Parser_Term_sort___elambda__1___closed__2(); @@ -57089,6 +66522,15 @@ lean_mark_persistent(l_Lean_Parser_Term_sort); res = l___regBuiltinParser_Lean_Parser_Term_sort(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_sort_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_sort_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_sort_parenthesizer___closed__1); +l_Lean_Parser_Term_sort_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_sort_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_sort_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_sort_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_sort_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_sort_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_sort_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_prop___elambda__1___closed__1 = _init_l_Lean_Parser_Term_prop___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_prop___elambda__1___closed__1); l_Lean_Parser_Term_prop___elambda__1___closed__2 = _init_l_Lean_Parser_Term_prop___elambda__1___closed__2(); @@ -57124,6 +66566,15 @@ lean_mark_persistent(l_Lean_Parser_Term_prop); res = l___regBuiltinParser_Lean_Parser_Term_prop(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_prop_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_prop_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_prop_parenthesizer___closed__1); +l_Lean_Parser_Term_prop_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_prop_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_prop_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_prop_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_prop_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_prop_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_prop_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_hole___elambda__1___closed__1 = _init_l_Lean_Parser_Term_hole___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_hole___elambda__1___closed__1); l_Lean_Parser_Term_hole___elambda__1___closed__2 = _init_l_Lean_Parser_Term_hole___elambda__1___closed__2(); @@ -57143,6 +66594,15 @@ lean_mark_persistent(l_Lean_Parser_Term_hole); res = l___regBuiltinParser_Lean_Parser_Term_hole(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_hole_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_hole_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_hole_parenthesizer___closed__1); +l_Lean_Parser_Term_hole_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_hole_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_hole_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_hole_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_namedHole___elambda__1___closed__1 = _init_l_Lean_Parser_Term_namedHole___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_namedHole___elambda__1___closed__1); l_Lean_Parser_Term_namedHole___elambda__1___closed__2 = _init_l_Lean_Parser_Term_namedHole___elambda__1___closed__2(); @@ -57178,6 +66638,17 @@ lean_mark_persistent(l_Lean_Parser_Term_namedHole); res = l___regBuiltinParser_Lean_Parser_Term_namedHole(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_namedHole_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_namedHole_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_namedHole_parenthesizer___closed__1); +l_Lean_Parser_Term_namedHole_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_namedHole_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_namedHole_parenthesizer___closed__2); +l_Lean_Parser_Term_namedHole_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_namedHole_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_namedHole_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_namedHole_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_sorry___elambda__1___closed__1 = _init_l_Lean_Parser_Term_sorry___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_sorry___elambda__1___closed__1); l_Lean_Parser_Term_sorry___elambda__1___closed__2 = _init_l_Lean_Parser_Term_sorry___elambda__1___closed__2(); @@ -57211,6 +66682,15 @@ lean_mark_persistent(l_Lean_Parser_Term_sorry); res = l___regBuiltinParser_Lean_Parser_Term_sorry(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_sorry_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_sorry_parenthesizer___closed__1); +l_Lean_Parser_Term_sorry_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_sorry_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_cdot___elambda__1___closed__1 = _init_l_Lean_Parser_Term_cdot___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_cdot___elambda__1___closed__1); l_Lean_Parser_Term_cdot___elambda__1___closed__2 = _init_l_Lean_Parser_Term_cdot___elambda__1___closed__2(); @@ -57246,6 +66726,15 @@ lean_mark_persistent(l_Lean_Parser_Term_cdot); res = l___regBuiltinParser_Lean_Parser_Term_cdot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_cdot_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_cdot_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_cdot_parenthesizer___closed__1); +l_Lean_Parser_Term_cdot_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_cdot_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_cdot_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_emptyC___elambda__1___closed__1 = _init_l_Lean_Parser_Term_emptyC___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_emptyC___elambda__1___closed__1); l_Lean_Parser_Term_emptyC___elambda__1___closed__2 = _init_l_Lean_Parser_Term_emptyC___elambda__1___closed__2(); @@ -57281,6 +66770,15 @@ lean_mark_persistent(l_Lean_Parser_Term_emptyC); res = l___regBuiltinParser_Lean_Parser_Term_emptyC(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_emptyC_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_emptyC_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_emptyC_parenthesizer___closed__1); +l_Lean_Parser_Term_emptyC_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_emptyC_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_emptyC_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_emptyC_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_typeAscription___elambda__1___closed__1 = _init_l_Lean_Parser_Term_typeAscription___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_typeAscription___elambda__1___closed__1); l_Lean_Parser_Term_typeAscription___elambda__1___closed__2 = _init_l_Lean_Parser_Term_typeAscription___elambda__1___closed__2(); @@ -57374,6 +66872,45 @@ lean_mark_persistent(l_Lean_Parser_Term_paren); res = l___regBuiltinParser_Lean_Parser_Term_paren(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_tupleTail_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_tupleTail_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_tupleTail_parenthesizer___closed__1); +l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_tupleTail_parenthesizer___closed__2); +l_Lean_Parser_Term_tupleTail_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_tupleTail_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_tupleTail_parenthesizer___closed__3); +l_Lean_Parser_Term_tupleTail_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_tupleTail_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_tupleTail_parenthesizer___closed__4); +l_Lean_Parser_Term_typeAscription_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_typeAscription_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_typeAscription_parenthesizer___closed__1); +l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2); +l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3); +l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1); +l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__2); +l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__3); +l_Lean_Parser_Term_paren_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_paren_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_paren_parenthesizer___closed__1); +l_Lean_Parser_Term_paren_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_paren_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_paren_parenthesizer___closed__2); +l_Lean_Parser_Term_paren_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_paren_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_paren_parenthesizer___closed__3); +l_Lean_Parser_Term_paren_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_paren_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_paren_parenthesizer___closed__4); +l_Lean_Parser_Term_paren_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_paren_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_paren_parenthesizer___closed__5); +l_Lean_Parser_Term_paren_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_paren_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_paren_parenthesizer___closed__6); +l_Lean_Parser_Term_paren_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_paren_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_paren_parenthesizer___closed__7); +l___regBuiltin_Lean_Parser_Term_paren_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_paren_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_paren_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_paren_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__1 = _init_l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__1); l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2 = _init_l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2(); @@ -57423,6 +66960,21 @@ lean_mark_persistent(l_Lean_Parser_Term_anonymousCtor); res = l___regBuiltinParser_Lean_Parser_Term_anonymousCtor(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1); +l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__2); +l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__3); +l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__4); +l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_optIdent___closed__1 = _init_l_Lean_Parser_Term_optIdent___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_optIdent___closed__1); l_Lean_Parser_Term_optIdent___closed__2 = _init_l_Lean_Parser_Term_optIdent___closed__2(); @@ -57504,6 +67056,31 @@ lean_mark_persistent(l_Lean_Parser_Term_if); res = l___regBuiltinParser_Lean_Parser_Term_if(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_optIdent_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_optIdent_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_optIdent_parenthesizer___closed__1); +l_Lean_Parser_Term_optIdent_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_optIdent_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_optIdent_parenthesizer___closed__2); +l_Lean_Parser_Term_if_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_if_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_if_parenthesizer___closed__1); +l_Lean_Parser_Term_if_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_if_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_if_parenthesizer___closed__2); +l_Lean_Parser_Term_if_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_if_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_if_parenthesizer___closed__3); +l_Lean_Parser_Term_if_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_if_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_if_parenthesizer___closed__4); +l_Lean_Parser_Term_if_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_if_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_if_parenthesizer___closed__5); +l_Lean_Parser_Term_if_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_if_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_if_parenthesizer___closed__6); +l_Lean_Parser_Term_if_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_if_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_if_parenthesizer___closed__7); +l_Lean_Parser_Term_if_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_if_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_if_parenthesizer___closed__8); +l___regBuiltin_Lean_Parser_Term_if_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_if_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_if_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_if_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_fromTerm___elambda__1___closed__1 = _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_fromTerm___elambda__1___closed__1); l_Lean_Parser_Term_fromTerm___elambda__1___closed__2 = _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__2(); @@ -57617,6 +67194,37 @@ lean_mark_persistent(l_Lean_Parser_Term_have); res = l___regBuiltinParser_Lean_Parser_Term_have(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_haveAssign_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_haveAssign_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_haveAssign_parenthesizer___closed__1); +l_Lean_Parser_Term_haveAssign_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_haveAssign_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_haveAssign_parenthesizer___closed__2); +l_Lean_Parser_Term_fromTerm_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_fromTerm_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_fromTerm_parenthesizer___closed__1); +l_Lean_Parser_Term_fromTerm_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_fromTerm_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_fromTerm_parenthesizer___closed__2); +l_Lean_Parser_Term_have_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__1); +l_Lean_Parser_Term_have_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__2); +l_Lean_Parser_Term_have_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__3); +l_Lean_Parser_Term_have_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__4); +l_Lean_Parser_Term_have_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__5); +l_Lean_Parser_Term_have_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__6); +l_Lean_Parser_Term_have_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__7); +l_Lean_Parser_Term_have_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__8); +l_Lean_Parser_Term_have_parenthesizer___closed__9 = _init_l_Lean_Parser_Term_have_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_have_parenthesizer___closed__9); +l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_have_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_suffices___elambda__1___closed__1 = _init_l_Lean_Parser_Term_suffices___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_suffices___elambda__1___closed__1); l_Lean_Parser_Term_suffices___elambda__1___closed__2 = _init_l_Lean_Parser_Term_suffices___elambda__1___closed__2(); @@ -57660,6 +67268,23 @@ lean_mark_persistent(l_Lean_Parser_Term_suffices); res = l___regBuiltinParser_Lean_Parser_Term_suffices(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_suffices_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_suffices_parenthesizer___closed__1); +l_Lean_Parser_Term_suffices_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_suffices_parenthesizer___closed__2); +l_Lean_Parser_Term_suffices_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_suffices_parenthesizer___closed__3); +l_Lean_Parser_Term_suffices_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_suffices_parenthesizer___closed__4); +l_Lean_Parser_Term_suffices_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_suffices_parenthesizer___closed__5); +l_Lean_Parser_Term_suffices_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_suffices_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_suffices_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_show___elambda__1___closed__1 = _init_l_Lean_Parser_Term_show___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_show___elambda__1___closed__1); l_Lean_Parser_Term_show___elambda__1___closed__2 = _init_l_Lean_Parser_Term_show___elambda__1___closed__2(); @@ -57699,6 +67324,19 @@ lean_mark_persistent(l_Lean_Parser_Term_show); res = l___regBuiltinParser_Lean_Parser_Term_show(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_show_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_show_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_show_parenthesizer___closed__1); +l_Lean_Parser_Term_show_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_show_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_show_parenthesizer___closed__2); +l_Lean_Parser_Term_show_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_show_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_show_parenthesizer___closed__3); +l_Lean_Parser_Term_show_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_show_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_show_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_show_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__1 = _init_l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__1); l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__2 = _init_l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__2(); @@ -57888,6 +67526,67 @@ lean_mark_persistent(l_Lean_Parser_Term_structInst); res = l___regBuiltinParser_Lean_Parser_Term_structInst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__1); +l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__2); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__3); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__5); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__6); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__7); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__8); +l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__9 = _init_l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__9); +l_Lean_Parser_Term_structInstField_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_structInstField_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_structInstField_parenthesizer___closed__1); +l_Lean_Parser_Term_structInstField_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_structInstField_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_structInstField_parenthesizer___closed__2); +l_Lean_Parser_Term_structInstField_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_structInstField_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_structInstField_parenthesizer___closed__3); +l_Lean_Parser_Term_structInstField_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_structInstField_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_structInstField_parenthesizer___closed__4); +l_Lean_Parser_Term_structInst_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__1); +l_Lean_Parser_Term_structInst_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__2); +l_Lean_Parser_Term_structInst_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__3); +l_Lean_Parser_Term_structInst_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__4); +l_Lean_Parser_Term_structInst_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__5); +l_Lean_Parser_Term_structInst_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__6); +l_Lean_Parser_Term_structInst_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__7); +l_Lean_Parser_Term_structInst_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__8); +l_Lean_Parser_Term_structInst_parenthesizer___closed__9 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__9); +l_Lean_Parser_Term_structInst_parenthesizer___closed__10 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__10(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__10); +l_Lean_Parser_Term_structInst_parenthesizer___closed__11 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__11(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__11); +l_Lean_Parser_Term_structInst_parenthesizer___closed__12 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__12(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__12); +l_Lean_Parser_Term_structInst_parenthesizer___closed__13 = _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__13(); +lean_mark_persistent(l_Lean_Parser_Term_structInst_parenthesizer___closed__13); +l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_typeSpec___elambda__1___closed__1 = _init_l_Lean_Parser_Term_typeSpec___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_typeSpec___elambda__1___closed__1); l_Lean_Parser_Term_typeSpec___elambda__1___closed__2 = _init_l_Lean_Parser_Term_typeSpec___elambda__1___closed__2(); @@ -57961,6 +67660,29 @@ lean_mark_persistent(l_Lean_Parser_Term_subtype); res = l___regBuiltinParser_Lean_Parser_Term_subtype(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_typeSpec_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_typeSpec_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_typeSpec_parenthesizer___closed__1); +l_Lean_Parser_Term_typeSpec_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_typeSpec_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_typeSpec_parenthesizer___closed__2); +l_Lean_Parser_Term_optType_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_optType_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_optType_parenthesizer___closed__1); +l_Lean_Parser_Term_subtype_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_subtype_parenthesizer___closed__1); +l_Lean_Parser_Term_subtype_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_subtype_parenthesizer___closed__2); +l_Lean_Parser_Term_subtype_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_subtype_parenthesizer___closed__3); +l_Lean_Parser_Term_subtype_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_subtype_parenthesizer___closed__4); +l_Lean_Parser_Term_subtype_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_subtype_parenthesizer___closed__5); +l_Lean_Parser_Term_subtype_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_subtype_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_subtype_parenthesizer___closed__6); +l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_subtype_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1(); lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1); l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2(); @@ -58000,6 +67722,15 @@ lean_mark_persistent(l_Lean_Parser_Term_listLit); res = l___regBuiltinParser_Lean_Parser_Term_listLit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_listLit_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_listLit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_listLit_parenthesizer___closed__1); +l_Lean_Parser_Term_listLit_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_listLit_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_listLit_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_listLit_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_arrayLit___elambda__1___closed__1 = _init_l_Lean_Parser_Term_arrayLit___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_arrayLit___elambda__1___closed__1); l_Lean_Parser_Term_arrayLit___elambda__1___closed__2 = _init_l_Lean_Parser_Term_arrayLit___elambda__1___closed__2(); @@ -58035,6 +67766,15 @@ lean_mark_persistent(l_Lean_Parser_Term_arrayLit); res = l___regBuiltinParser_Lean_Parser_Term_arrayLit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_arrayLit_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_arrayLit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_arrayLit_parenthesizer___closed__1); +l_Lean_Parser_Term_arrayLit_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_arrayLit_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_arrayLit_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_arrayLit_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_explicit___elambda__1___closed__1 = _init_l_Lean_Parser_Term_explicit___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_explicit___elambda__1___closed__1); l_Lean_Parser_Term_explicit___elambda__1___closed__2 = _init_l_Lean_Parser_Term_explicit___elambda__1___closed__2(); @@ -58058,6 +67798,15 @@ lean_mark_persistent(l_Lean_Parser_Term_explicit); res = l___regBuiltinParser_Lean_Parser_Term_explicit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_explicit_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_explicit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_explicit_parenthesizer___closed__1); +l_Lean_Parser_Term_explicit_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_explicit_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_explicit_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_explicit_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_inaccessible___elambda__1___closed__1 = _init_l_Lean_Parser_Term_inaccessible___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_inaccessible___elambda__1___closed__1); l_Lean_Parser_Term_inaccessible___elambda__1___closed__2 = _init_l_Lean_Parser_Term_inaccessible___elambda__1___closed__2(); @@ -58093,6 +67842,15 @@ lean_mark_persistent(l_Lean_Parser_Term_inaccessible); res = l___regBuiltinParser_Lean_Parser_Term_inaccessible(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1); +l_Lean_Parser_Term_inaccessible_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_inaccessible_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_inaccessible_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_inaccessible_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_binderIdent___closed__1 = _init_l_Lean_Parser_Term_binderIdent___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_binderIdent___closed__1); l_Lean_Parser_Term_binderIdent___closed__2 = _init_l_Lean_Parser_Term_binderIdent___closed__2(); @@ -58288,6 +68046,75 @@ lean_mark_persistent(l_Lean_Parser_Term_depArrow); res = l___regBuiltinParser_Lean_Parser_Term_depArrow(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__1); +l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_nonEmptySeq_parenthesizer___closed__2); +l_Lean_Parser_Term_binderTactic_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_binderTactic_parenthesizer___closed__1); +l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2); +l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_binderTactic_parenthesizer___closed__3); +l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_binderTactic_parenthesizer___closed__4); +l_Lean_Parser_Term_binderTactic_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_binderTactic_parenthesizer___closed__5); +l_Lean_Parser_Term_binderTactic_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_binderTactic_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_binderTactic_parenthesizer___closed__6); +l_Lean_Parser_Term_binderDefault_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_binderDefault_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_binderDefault_parenthesizer___closed__1); +l_Lean_Parser_Term_binderDefault_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_binderDefault_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_binderDefault_parenthesizer___closed__2); +l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__1); +l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__2); +l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3); +l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__4); +l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5); +l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__6); +l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__7); +l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__8); +l_Lean_Parser_Term_implicitBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_implicitBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_implicitBinder_parenthesizer___closed__1); +l_Lean_Parser_Term_instBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_instBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_instBinder_parenthesizer___closed__1); +l_Lean_Parser_Term_instBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_instBinder_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_instBinder_parenthesizer___closed__2); +l_Lean_Parser_Term_instBinder_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_instBinder_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_instBinder_parenthesizer___closed__3); +l_Lean_Parser_Term_instBinder_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_instBinder_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_instBinder_parenthesizer___closed__4); +l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1); +l_Lean_Parser_Term_depArrow_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_depArrow_parenthesizer___closed__1); +l_Lean_Parser_Term_depArrow_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_depArrow_parenthesizer___closed__2); +l_Lean_Parser_Term_depArrow_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_depArrow_parenthesizer___closed__3); +l_Lean_Parser_Term_depArrow_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_depArrow_parenthesizer___closed__4); +l_Lean_Parser_Term_depArrow_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_depArrow_parenthesizer___closed__5); +l_Lean_Parser_Term_depArrow_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_depArrow_parenthesizer___closed__6); +l_Lean_Parser_Term_depArrow_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_depArrow_parenthesizer___closed__7); +l_Lean_Parser_Term_depArrow_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_depArrow_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_depArrow_parenthesizer___closed__8); +l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_simpleBinder___elambda__1___closed__1 = _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___elambda__1___closed__1); l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2 = _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2(); @@ -58361,6 +68188,31 @@ lean_mark_persistent(l_Lean_Parser_Term_forall); res = l___regBuiltinParser_Lean_Parser_Term_forall(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__1); +l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2); +l_Lean_Parser_Term_forall_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__1); +l_Lean_Parser_Term_forall_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__2); +l_Lean_Parser_Term_forall_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__3); +l_Lean_Parser_Term_forall_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__4); +l_Lean_Parser_Term_forall_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__5); +l_Lean_Parser_Term_forall_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__6); +l_Lean_Parser_Term_forall_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__7); +l_Lean_Parser_Term_forall_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__8); +l___regBuiltin_Lean_Parser_Term_forall_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_forall_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_forall_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_forall_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_funBinder___elambda__1___closed__1 = _init_l_Lean_Parser_Term_funBinder___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_funBinder___elambda__1___closed__1); l_Lean_Parser_Term_funBinder___closed__1 = _init_l_Lean_Parser_Term_funBinder___closed__1(); @@ -58422,6 +68274,31 @@ lean_mark_persistent(l_Lean_Parser_Term_fun); res = l___regBuiltinParser_Lean_Parser_Term_fun(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_funBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_funBinder_parenthesizer___closed__1); +l_Lean_Parser_Term_funBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_funBinder_parenthesizer___closed__2); +l_Lean_Parser_Term_fun_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_fun_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_fun_parenthesizer___closed__1); +l_Lean_Parser_Term_fun_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_fun_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_fun_parenthesizer___closed__2); +l_Lean_Parser_Term_fun_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_fun_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_fun_parenthesizer___closed__3); +l_Lean_Parser_Term_fun_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_fun_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_fun_parenthesizer___closed__4); +l_Lean_Parser_Term_fun_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_fun_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_fun_parenthesizer___closed__5); +l_Lean_Parser_Term_fun_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_fun_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_fun_parenthesizer___closed__6); +l_Lean_Parser_Term_fun_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_fun_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_fun_parenthesizer___closed__7); +l_Lean_Parser_Term_fun_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_fun_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_fun_parenthesizer___closed__8); +l___regBuiltin_Lean_Parser_Term_fun_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_fun_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_fun_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_fun_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_matchAlt___closed__1 = _init_l_Lean_Parser_Term_matchAlt___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_matchAlt___closed__1); l_Lean_Parser_Term_matchAlt___closed__2 = _init_l_Lean_Parser_Term_matchAlt___closed__2(); @@ -58563,6 +68440,51 @@ lean_mark_persistent(l_Lean_Parser_Term_match); res = l___regBuiltinParser_Lean_Parser_Term_match(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__1); +l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2); +l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__3); +l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__4); +l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__5); +l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__6); +l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1); +l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__1 = _init_l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__1); +l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__2 = _init_l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__2); +l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__3 = _init_l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__3); +l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__4 = _init_l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts_parenthesizer___lambda__1___closed__4); +l_Lean_Parser_Term_match_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__1); +l_Lean_Parser_Term_match_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__2); +l_Lean_Parser_Term_match_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__3); +l_Lean_Parser_Term_match_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__4); +l_Lean_Parser_Term_match_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__5); +l_Lean_Parser_Term_match_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__6); +l_Lean_Parser_Term_match_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__7); +l_Lean_Parser_Term_match_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__8(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__8); +l_Lean_Parser_Term_match_parenthesizer___closed__9 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__9); +l___regBuiltin_Lean_Parser_Term_match_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_match_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_match_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_match_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_nomatch___elambda__1___closed__1 = _init_l_Lean_Parser_Term_nomatch___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_nomatch___elambda__1___closed__1); l_Lean_Parser_Term_nomatch___elambda__1___closed__2 = _init_l_Lean_Parser_Term_nomatch___elambda__1___closed__2(); @@ -58600,6 +68522,15 @@ lean_mark_persistent(l_Lean_Parser_Term_nomatch); res = l___regBuiltinParser_Lean_Parser_Term_nomatch(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_nomatch_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_nomatch_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_nomatch_parenthesizer___closed__1); +l_Lean_Parser_Term_nomatch_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_nomatch_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_nomatch_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_optExprPrecedence___closed__1 = _init_l_Lean_Parser_Term_optExprPrecedence___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_optExprPrecedence___closed__1); l_Lean_Parser_Term_optExprPrecedence___closed__2 = _init_l_Lean_Parser_Term_optExprPrecedence___closed__2(); @@ -58649,6 +68580,25 @@ lean_mark_persistent(l_Lean_Parser_Term_parser_x21); res = l___regBuiltinParser_Lean_Parser_Term_parser_x21(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__1); +l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_optExprPrecedence_parenthesizer___closed__2); +l_Lean_Parser_Term_parser_x21_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_parser_x21_parenthesizer___closed__1); +l_Lean_Parser_Term_parser_x21_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_parser_x21_parenthesizer___closed__2); +l_Lean_Parser_Term_parser_x21_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_parser_x21_parenthesizer___closed__3); +l_Lean_Parser_Term_parser_x21_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_parser_x21_parenthesizer___closed__4); +l_Lean_Parser_Term_parser_x21_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_parser_x21_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_parser_x21_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_tparser_x21___elambda__1___closed__1 = _init_l_Lean_Parser_Term_tparser_x21___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_tparser_x21___elambda__1___closed__1); l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2 = _init_l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2(); @@ -58686,6 +68636,15 @@ lean_mark_persistent(l_Lean_Parser_Term_tparser_x21); res = l___regBuiltinParser_Lean_Parser_Term_tparser_x21(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1); +l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_tparser_x21_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_borrowed___elambda__1___closed__1 = _init_l_Lean_Parser_Term_borrowed___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_borrowed___elambda__1___closed__1); l_Lean_Parser_Term_borrowed___elambda__1___closed__2 = _init_l_Lean_Parser_Term_borrowed___elambda__1___closed__2(); @@ -58725,6 +68684,19 @@ lean_mark_persistent(l_Lean_Parser_Term_borrowed); res = l___regBuiltinParser_Lean_Parser_Term_borrowed(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_borrowed_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_borrowed_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_borrowed_parenthesizer___closed__1); +l_Lean_Parser_Term_borrowed_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_borrowed_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_borrowed_parenthesizer___closed__2); +l_Lean_Parser_Term_borrowed_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_borrowed_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_borrowed_parenthesizer___closed__3); +l_Lean_Parser_Term_borrowed_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_borrowed_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_borrowed_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_borrowed_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_quotedName___elambda__1___closed__1 = _init_l_Lean_Parser_Term_quotedName___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_quotedName___elambda__1___closed__1); l_Lean_Parser_Term_quotedName___elambda__1___closed__2 = _init_l_Lean_Parser_Term_quotedName___elambda__1___closed__2(); @@ -58748,6 +68720,19 @@ lean_mark_persistent(l_Lean_Parser_Term_quotedName); res = l___regBuiltinParser_Lean_Parser_Term_quotedName(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_nameLit_parenthesizer___closed__1 = _init_l_Lean_Parser_nameLit_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_nameLit_parenthesizer___closed__1); +l_Lean_Parser_Term_quotedName_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_quotedName_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_quotedName_parenthesizer___closed__1); +l_Lean_Parser_Term_quotedName_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_quotedName_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_quotedName_parenthesizer___closed__2); +l_Lean_Parser_Term_quotedName_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_quotedName_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_quotedName_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_quotedName_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_match__syntax___elambda__1___closed__1 = _init_l_Lean_Parser_Term_match__syntax___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_match__syntax___elambda__1___closed__1); l_Lean_Parser_Term_match__syntax___elambda__1___closed__2 = _init_l_Lean_Parser_Term_match__syntax___elambda__1___closed__2(); @@ -58785,6 +68770,19 @@ lean_mark_persistent(l_Lean_Parser_Term_match__syntax); res = l___regBuiltinParser_Lean_Parser_Term_match__syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_match__syntax_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_match__syntax_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_match__syntax_parenthesizer___closed__1); +l_Lean_Parser_Term_match__syntax_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_match__syntax_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_match__syntax_parenthesizer___closed__2); +l_Lean_Parser_Term_match__syntax_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_match__syntax_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_match__syntax_parenthesizer___closed__3); +l_Lean_Parser_Term_match__syntax_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_match__syntax_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_match__syntax_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_match__syntax_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_letIdLhs___elambda__1___closed__1 = _init_l_Lean_Parser_Term_letIdLhs___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_letIdLhs___elambda__1___closed__1); l_Lean_Parser_Term_letIdLhs___closed__1 = _init_l_Lean_Parser_Term_letIdLhs___closed__1(); @@ -58902,6 +68900,57 @@ lean_mark_persistent(l_Lean_Parser_Term_let); res = l___regBuiltinParser_Lean_Parser_Term_let(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__1); +l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2); +l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3); +l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1); +l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__2); +l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__3); +l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__4); +l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__1); +l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__2); +l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__3); +l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__4); +l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__5); +l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1); +l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__2); +l_Lean_Parser_Term_letDecl_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_letDecl_parenthesizer___closed__1); +l_Lean_Parser_Term_letDecl_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_letDecl_parenthesizer___closed__2); +l_Lean_Parser_Term_letDecl_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_letDecl_parenthesizer___closed__3); +l_Lean_Parser_Term_letDecl_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_letDecl_parenthesizer___closed__4); +l_Lean_Parser_Term_let_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_let_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_let_parenthesizer___closed__1); +l_Lean_Parser_Term_let_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_let_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_let_parenthesizer___closed__2); +l_Lean_Parser_Term_let_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_let_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_let_parenthesizer___closed__3); +l_Lean_Parser_Term_let_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_let_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_let_parenthesizer___closed__4); +l_Lean_Parser_Term_let_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_let_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_let_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Term_let_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_let_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_let_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_let_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_let_x21___elambda__1___closed__1 = _init_l_Lean_Parser_Term_let_x21___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_let_x21___elambda__1___closed__1); l_Lean_Parser_Term_let_x21___elambda__1___closed__2 = _init_l_Lean_Parser_Term_let_x21___elambda__1___closed__2(); @@ -58939,6 +68988,15 @@ lean_mark_persistent(l_Lean_Parser_Term_let_x21); res = l___regBuiltinParser_Lean_Parser_Term_let_x21(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_let_x21_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_let_x21_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_let_x21_parenthesizer___closed__1); +l_Lean_Parser_Term_let_x21_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_let_x21_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_let_x21_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_leftArrow___elambda__1___closed__1 = _init_l_Lean_Parser_Term_leftArrow___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_leftArrow___elambda__1___closed__1); l_Lean_Parser_Term_leftArrow___elambda__1___closed__2 = _init_l_Lean_Parser_Term_leftArrow___elambda__1___closed__2(); @@ -59150,6 +69208,19 @@ lean_mark_persistent(l_Lean_Parser_Term_liftMethod); res = l___regBuiltinParser_Lean_Parser_Term_liftMethod(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_liftMethod_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_liftMethod_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_liftMethod_parenthesizer___closed__1); +l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2); +l_Lean_Parser_Term_liftMethod_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_liftMethod_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_liftMethod_parenthesizer___closed__3); +l_Lean_Parser_Term_liftMethod_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_liftMethod_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_liftMethod_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_do___elambda__1___closed__1 = _init_l_Lean_Parser_Term_do___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_do___elambda__1___closed__1); l_Lean_Parser_Term_do___elambda__1___closed__2 = _init_l_Lean_Parser_Term_do___elambda__1___closed__2(); @@ -59189,6 +69260,79 @@ lean_mark_persistent(l_Lean_Parser_Term_do); res = l___regBuiltinParser_Lean_Parser_Term_do(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_doLet_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_doLet_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_doLet_parenthesizer___closed__1); +l_Lean_Parser_Term_doLet_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_doLet_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_doLet_parenthesizer___closed__2); +l_Lean_Parser_Term_doLet_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_doLet_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_doLet_parenthesizer___closed__3); +l_Lean_Parser_Term_doId_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_doId_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_doId_parenthesizer___closed__1); +l_Lean_Parser_Term_doId_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_doId_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_doId_parenthesizer___closed__2); +l_Lean_Parser_Term_doId_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_doId_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_doId_parenthesizer___closed__3); +l_Lean_Parser_Term_doId_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_doId_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_doId_parenthesizer___closed__4); +l_Lean_Parser_Term_doId_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_doId_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_doId_parenthesizer___closed__5); +l_Lean_Parser_Term_doId_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_doId_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_doId_parenthesizer___closed__6); +l_Lean_Parser_Term_doPat_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_doPat_parenthesizer___closed__1); +l_Lean_Parser_Term_doPat_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_doPat_parenthesizer___closed__2); +l_Lean_Parser_Term_doPat_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_doPat_parenthesizer___closed__3); +l_Lean_Parser_Term_doPat_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_doPat_parenthesizer___closed__4); +l_Lean_Parser_Term_doPat_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_doPat_parenthesizer___closed__5); +l_Lean_Parser_Term_doPat_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_doPat_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_doPat_parenthesizer___closed__6); +l_Lean_Parser_Term_doExpr_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_doExpr_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_doExpr_parenthesizer___closed__1); +l_Lean_Parser_Term_doExpr_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_doExpr_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_doExpr_parenthesizer___closed__2); +l_Lean_Parser_Term_doElem_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_doElem_parenthesizer___closed__1); +l_Lean_Parser_Term_doElem_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_doElem_parenthesizer___closed__2); +l_Lean_Parser_Term_doElem_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_doElem_parenthesizer___closed__3); +l_Lean_Parser_Term_doElem_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_doElem_parenthesizer___closed__4); +l_Lean_Parser_Term_doElem_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_doElem_parenthesizer___closed__5); +l_Lean_Parser_Term_doElem_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_doElem_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Term_doElem_parenthesizer___closed__6); +l_Lean_Parser_Term_doSeq_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_doSeq_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_doSeq_parenthesizer___closed__1); +l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__1); +l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__2); +l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__3); +l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__4); +l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_bracketedDoSeq_parenthesizer___closed__5); +l_Lean_Parser_Term_do_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_do_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_do_parenthesizer___closed__1); +l_Lean_Parser_Term_do_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_do_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_do_parenthesizer___closed__2); +l_Lean_Parser_Term_do_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_do_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_do_parenthesizer___closed__3); +l_Lean_Parser_Term_do_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_do_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_do_parenthesizer___closed__4); +l_Lean_Parser_Term_do_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_do_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_do_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Term_do_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_do_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_do_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_do_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_nativeRefl___elambda__1___closed__1 = _init_l_Lean_Parser_Term_nativeRefl___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_nativeRefl___elambda__1___closed__1); l_Lean_Parser_Term_nativeRefl___elambda__1___closed__2 = _init_l_Lean_Parser_Term_nativeRefl___elambda__1___closed__2(); @@ -59226,6 +69370,15 @@ lean_mark_persistent(l_Lean_Parser_Term_nativeRefl); res = l___regBuiltinParser_Lean_Parser_Term_nativeRefl(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1); +l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_nativeRefl_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_nativeDecide___elambda__1___closed__1 = _init_l_Lean_Parser_Term_nativeDecide___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_nativeDecide___elambda__1___closed__1); l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2 = _init_l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2(); @@ -59263,6 +69416,15 @@ lean_mark_persistent(l_Lean_Parser_Term_nativeDecide); res = l___regBuiltinParser_Lean_Parser_Term_nativeDecide(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1); +l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_nativeDecide_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_decide___elambda__1___closed__1 = _init_l_Lean_Parser_Term_decide___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_decide___elambda__1___closed__1); l_Lean_Parser_Term_decide___elambda__1___closed__2 = _init_l_Lean_Parser_Term_decide___elambda__1___closed__2(); @@ -59298,6 +69460,15 @@ lean_mark_persistent(l_Lean_Parser_Term_decide); res = l___regBuiltinParser_Lean_Parser_Term_decide(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_decide_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_decide_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_decide_parenthesizer___closed__1); +l_Lean_Parser_Term_decide_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_decide_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_decide_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_decide_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_not___elambda__1___closed__1 = _init_l_Lean_Parser_Term_not___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_not___elambda__1___closed__1); l_Lean_Parser_Term_not___elambda__1___closed__2 = _init_l_Lean_Parser_Term_not___elambda__1___closed__2(); @@ -59337,6 +69508,19 @@ lean_mark_persistent(l_Lean_Parser_Term_not); res = l___regBuiltinParser_Lean_Parser_Term_not(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_not_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_not_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_not_parenthesizer___closed__1); +l_Lean_Parser_Term_not_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_not_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_not_parenthesizer___closed__2); +l_Lean_Parser_Term_not_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_not_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_not_parenthesizer___closed__3); +l_Lean_Parser_Term_not_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_not_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_not_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_not_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_not_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_not_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_not_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_bnot___elambda__1___closed__1 = _init_l_Lean_Parser_Term_bnot___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_bnot___elambda__1___closed__1); l_Lean_Parser_Term_bnot___elambda__1___closed__2 = _init_l_Lean_Parser_Term_bnot___elambda__1___closed__2(); @@ -59374,6 +69558,15 @@ lean_mark_persistent(l_Lean_Parser_Term_bnot); res = l___regBuiltinParser_Lean_Parser_Term_bnot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_bnot_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_bnot_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_bnot_parenthesizer___closed__1); +l_Lean_Parser_Term_bnot_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_bnot_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_bnot_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_bnot_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_uminus___elambda__1___closed__1 = _init_l_Lean_Parser_Term_uminus___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_uminus___elambda__1___closed__1); l_Lean_Parser_Term_uminus___elambda__1___closed__2 = _init_l_Lean_Parser_Term_uminus___elambda__1___closed__2(); @@ -59411,6 +69604,19 @@ lean_mark_persistent(l_Lean_Parser_Term_uminus); res = l___regBuiltinParser_Lean_Parser_Term_uminus(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_uminus_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_uminus_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_uminus_parenthesizer___closed__1); +l_Lean_Parser_Term_uminus_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_uminus_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_uminus_parenthesizer___closed__2); +l_Lean_Parser_Term_uminus_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_uminus_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_uminus_parenthesizer___closed__3); +l_Lean_Parser_Term_uminus_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_uminus_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_uminus_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_uminus_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_namedArgument___elambda__1___closed__1 = _init_l_Lean_Parser_Term_namedArgument___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_namedArgument___elambda__1___closed__1); l_Lean_Parser_Term_namedArgument___elambda__1___closed__2 = _init_l_Lean_Parser_Term_namedArgument___elambda__1___closed__2(); @@ -59456,6 +69662,29 @@ lean_mark_persistent(l_Lean_Parser_Term_app); res = l___regBuiltinParser_Lean_Parser_Term_app(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_namedArgument_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_namedArgument_parenthesizer___closed__1); +l_Lean_Parser_Term_namedArgument_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_namedArgument_parenthesizer___closed__2); +l_Lean_Parser_Term_namedArgument_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_namedArgument_parenthesizer___closed__3); +l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4); +l_Lean_Parser_Term_namedArgument_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_namedArgument_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_namedArgument_parenthesizer___closed__5); +l_Lean_Parser_Term_app_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_app_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_app_parenthesizer___closed__1); +l_Lean_Parser_Term_app_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_app_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_app_parenthesizer___closed__2); +l_Lean_Parser_Term_app_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_app_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_app_parenthesizer___closed__3); +l_Lean_Parser_Term_app_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_app_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_app_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_app_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_app_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_app_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_app_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_proj___elambda__1___closed__1 = _init_l_Lean_Parser_Term_proj___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_proj___elambda__1___closed__1); l_Lean_Parser_Term_proj___elambda__1___closed__2 = _init_l_Lean_Parser_Term_proj___elambda__1___closed__2(); @@ -59483,6 +69712,17 @@ lean_mark_persistent(l_Lean_Parser_Term_proj); res = l___regBuiltinParser_Lean_Parser_Term_proj(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_proj_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_proj_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_proj_parenthesizer___closed__1); +l_Lean_Parser_Term_proj_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_proj_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_proj_parenthesizer___closed__2); +l_Lean_Parser_Term_proj_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_proj_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_proj_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_proj_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_proj_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_proj_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_proj_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_arrow___elambda__1___closed__1 = _init_l_Lean_Parser_Term_arrow___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_arrow___elambda__1___closed__1); l_Lean_Parser_Term_arrow___elambda__1___closed__2 = _init_l_Lean_Parser_Term_arrow___elambda__1___closed__2(); @@ -59502,6 +69742,17 @@ lean_mark_persistent(l_Lean_Parser_Term_arrow); res = l___regBuiltinParser_Lean_Parser_Term_arrow(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_arrow_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_arrow_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_arrow_parenthesizer___closed__1); +l_Lean_Parser_Term_arrow_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_arrow_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_arrow_parenthesizer___closed__2); +l_Lean_Parser_Term_arrow_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_arrow_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_arrow_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_arrow_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_arrayRef___elambda__1___closed__1 = _init_l_Lean_Parser_Term_arrayRef___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_arrayRef___elambda__1___closed__1); l_Lean_Parser_Term_arrayRef___elambda__1___closed__2 = _init_l_Lean_Parser_Term_arrayRef___elambda__1___closed__2(); @@ -59527,6 +69778,13 @@ lean_mark_persistent(l_Lean_Parser_Term_arrayRef); res = l___regBuiltinParser_Lean_Parser_Term_arrayRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_arrayRef_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_arrayRef_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_arrayRef_parenthesizer___closed__1); +l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_dollar___elambda__1___closed__1 = _init_l_Lean_Parser_Term_dollar___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_dollar___elambda__1___closed__1); l_Lean_Parser_Term_dollar___elambda__1___closed__2 = _init_l_Lean_Parser_Term_dollar___elambda__1___closed__2(); @@ -59548,6 +69806,17 @@ lean_mark_persistent(l_Lean_Parser_Term_dollar); res = l___regBuiltinParser_Lean_Parser_Term_dollar(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_dollar_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_dollar_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_dollar_parenthesizer___closed__1); +l_Lean_Parser_Term_dollar_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_dollar_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_dollar_parenthesizer___closed__2); +l_Lean_Parser_Term_dollar_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_dollar_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_dollar_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_dollar_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_dollarProj___elambda__1___closed__1 = _init_l_Lean_Parser_Term_dollarProj___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_dollarProj___elambda__1___closed__1); l_Lean_Parser_Term_dollarProj___elambda__1___closed__2 = _init_l_Lean_Parser_Term_dollarProj___elambda__1___closed__2(); @@ -59579,6 +69848,13 @@ lean_mark_persistent(l_Lean_Parser_Term_dollarProj); res = l___regBuiltinParser_Lean_Parser_Term_dollarProj(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_dollarProj_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_dollarProj_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_dollarProj_parenthesizer___closed__1); +l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_dollarProj_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1(); lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1); l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2(); @@ -59616,6 +69892,17 @@ lean_mark_persistent(l_Lean_Parser_Term_where); res = l___regBuiltinParser_Lean_Parser_Term_where(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_where_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_where_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_where_parenthesizer___closed__1); +l_Lean_Parser_Term_where_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_where_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_where_parenthesizer___closed__2); +l_Lean_Parser_Term_where_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_where_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_where_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_where_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_where_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_where_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_where_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_fcomp___elambda__1___closed__1 = _init_l_Lean_Parser_Term_fcomp___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_fcomp___elambda__1___closed__1); l_Lean_Parser_Term_fcomp___elambda__1___closed__2 = _init_l_Lean_Parser_Term_fcomp___elambda__1___closed__2(); @@ -59637,6 +69924,19 @@ lean_mark_persistent(l_Lean_Parser_Term_fcomp); res = l___regBuiltinParser_Lean_Parser_Term_fcomp(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_fcomp_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_fcomp_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_fcomp_parenthesizer___closed__1); +l_Lean_Parser_Term_fcomp_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_fcomp_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_fcomp_parenthesizer___closed__2); +l_Lean_Parser_Term_fcomp_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_fcomp_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_fcomp_parenthesizer___closed__3); +l_Lean_Parser_Term_fcomp_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_fcomp_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_fcomp_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_fcomp_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_prod___elambda__1___closed__1 = _init_l_Lean_Parser_Term_prod___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_prod___elambda__1___closed__1); l_Lean_Parser_Term_prod___elambda__1___closed__2 = _init_l_Lean_Parser_Term_prod___elambda__1___closed__2(); @@ -59658,6 +69958,19 @@ lean_mark_persistent(l_Lean_Parser_Term_prod); res = l___regBuiltinParser_Lean_Parser_Term_prod(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_prod_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_prod_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_prod_parenthesizer___closed__1); +l_Lean_Parser_Term_prod_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_prod_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_prod_parenthesizer___closed__2); +l_Lean_Parser_Term_prod_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_prod_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_prod_parenthesizer___closed__3); +l_Lean_Parser_Term_prod_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_prod_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_prod_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_prod_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_prod_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_prod_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_prod_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_add___elambda__1___closed__1 = _init_l_Lean_Parser_Term_add___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_add___elambda__1___closed__1); l_Lean_Parser_Term_add___elambda__1___closed__2 = _init_l_Lean_Parser_Term_add___elambda__1___closed__2(); @@ -59677,6 +69990,19 @@ lean_mark_persistent(l_Lean_Parser_Term_add); res = l___regBuiltinParser_Lean_Parser_Term_add(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_add_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_add_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_add_parenthesizer___closed__1); +l_Lean_Parser_Term_add_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_add_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_add_parenthesizer___closed__2); +l_Lean_Parser_Term_add_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_add_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_add_parenthesizer___closed__3); +l_Lean_Parser_Term_add_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_add_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_add_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_add_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_add_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_add_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_add_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_sub___elambda__1___closed__1 = _init_l_Lean_Parser_Term_sub___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_sub___elambda__1___closed__1); l_Lean_Parser_Term_sub___elambda__1___closed__2 = _init_l_Lean_Parser_Term_sub___elambda__1___closed__2(); @@ -59696,6 +70022,11 @@ lean_mark_persistent(l_Lean_Parser_Term_sub); res = l___regBuiltinParser_Lean_Parser_Term_sub(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_sub_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_sub_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_sub_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_sub_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_mul___elambda__1___closed__1 = _init_l_Lean_Parser_Term_mul___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_mul___elambda__1___closed__1); l_Lean_Parser_Term_mul___elambda__1___closed__2 = _init_l_Lean_Parser_Term_mul___elambda__1___closed__2(); @@ -59715,6 +70046,19 @@ lean_mark_persistent(l_Lean_Parser_Term_mul); res = l___regBuiltinParser_Lean_Parser_Term_mul(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_mul_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_mul_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_mul_parenthesizer___closed__1); +l_Lean_Parser_Term_mul_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_mul_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_mul_parenthesizer___closed__2); +l_Lean_Parser_Term_mul_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_mul_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_mul_parenthesizer___closed__3); +l_Lean_Parser_Term_mul_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_mul_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_mul_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_mul_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_mul_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_mul_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_mul_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_div___elambda__1___closed__1 = _init_l_Lean_Parser_Term_div___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_div___elambda__1___closed__1); l_Lean_Parser_Term_div___elambda__1___closed__2 = _init_l_Lean_Parser_Term_div___elambda__1___closed__2(); @@ -59734,6 +70078,11 @@ lean_mark_persistent(l_Lean_Parser_Term_div); res = l___regBuiltinParser_Lean_Parser_Term_div(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_div_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_div_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_div_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_div_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_mod___elambda__1___closed__1 = _init_l_Lean_Parser_Term_mod___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_mod___elambda__1___closed__1); l_Lean_Parser_Term_mod___elambda__1___closed__2 = _init_l_Lean_Parser_Term_mod___elambda__1___closed__2(); @@ -59753,6 +70102,11 @@ lean_mark_persistent(l_Lean_Parser_Term_mod); res = l___regBuiltinParser_Lean_Parser_Term_mod(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_mod_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_mod_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_mod_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_mod_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_modN___elambda__1___closed__1 = _init_l_Lean_Parser_Term_modN___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_modN___elambda__1___closed__1); l_Lean_Parser_Term_modN___elambda__1___closed__2 = _init_l_Lean_Parser_Term_modN___elambda__1___closed__2(); @@ -59774,6 +70128,11 @@ lean_mark_persistent(l_Lean_Parser_Term_modN); res = l___regBuiltinParser_Lean_Parser_Term_modN(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_modN_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_modN_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_modN_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_modN_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_pow___elambda__1___closed__1 = _init_l_Lean_Parser_Term_pow___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_pow___elambda__1___closed__1); l_Lean_Parser_Term_pow___elambda__1___closed__2 = _init_l_Lean_Parser_Term_pow___elambda__1___closed__2(); @@ -59795,6 +70154,19 @@ lean_mark_persistent(l_Lean_Parser_Term_pow); res = l___regBuiltinParser_Lean_Parser_Term_pow(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_pow_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_pow_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_pow_parenthesizer___closed__1); +l_Lean_Parser_Term_pow_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_pow_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_pow_parenthesizer___closed__2); +l_Lean_Parser_Term_pow_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_pow_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_pow_parenthesizer___closed__3); +l_Lean_Parser_Term_pow_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_pow_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_pow_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_pow_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_pow_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_pow_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_pow_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_le___elambda__1___closed__1 = _init_l_Lean_Parser_Term_le___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_le___elambda__1___closed__1); l_Lean_Parser_Term_le___elambda__1___closed__2 = _init_l_Lean_Parser_Term_le___elambda__1___closed__2(); @@ -59818,6 +70190,19 @@ lean_mark_persistent(l_Lean_Parser_Term_le); res = l___regBuiltinParser_Lean_Parser_Term_le(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_le_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_le_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_le_parenthesizer___closed__1); +l_Lean_Parser_Term_le_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_le_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_le_parenthesizer___closed__2); +l_Lean_Parser_Term_le_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_le_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_le_parenthesizer___closed__3); +l_Lean_Parser_Term_le_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_le_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_le_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_le_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_le_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_le_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_le_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_ge___elambda__1___closed__1 = _init_l_Lean_Parser_Term_ge___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_ge___elambda__1___closed__1); l_Lean_Parser_Term_ge___elambda__1___closed__2 = _init_l_Lean_Parser_Term_ge___elambda__1___closed__2(); @@ -59841,6 +70226,11 @@ lean_mark_persistent(l_Lean_Parser_Term_ge); res = l___regBuiltinParser_Lean_Parser_Term_ge(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_ge_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_ge_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_ge_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_ge_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_lt___elambda__1___closed__1 = _init_l_Lean_Parser_Term_lt___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_lt___elambda__1___closed__1); l_Lean_Parser_Term_lt___elambda__1___closed__2 = _init_l_Lean_Parser_Term_lt___elambda__1___closed__2(); @@ -59862,6 +70252,15 @@ lean_mark_persistent(l_Lean_Parser_Term_lt); res = l___regBuiltinParser_Lean_Parser_Term_lt(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_lt_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_lt_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_lt_parenthesizer___closed__1); +l_Lean_Parser_Term_lt_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_lt_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_lt_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_lt_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_lt_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_lt_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_lt_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_gt___elambda__1___closed__1 = _init_l_Lean_Parser_Term_gt___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_gt___elambda__1___closed__1); l_Lean_Parser_Term_gt___elambda__1___closed__2 = _init_l_Lean_Parser_Term_gt___elambda__1___closed__2(); @@ -59883,6 +70282,11 @@ lean_mark_persistent(l_Lean_Parser_Term_gt); res = l___regBuiltinParser_Lean_Parser_Term_gt(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_gt_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_gt_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_gt_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_gt_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_eq___elambda__1___closed__1 = _init_l_Lean_Parser_Term_eq___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_eq___elambda__1___closed__1); l_Lean_Parser_Term_eq___elambda__1___closed__2 = _init_l_Lean_Parser_Term_eq___elambda__1___closed__2(); @@ -59904,6 +70308,11 @@ lean_mark_persistent(l_Lean_Parser_Term_eq); res = l___regBuiltinParser_Lean_Parser_Term_eq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_eq_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_eq_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_eq_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_eq_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_ne___elambda__1___closed__1 = _init_l_Lean_Parser_Term_ne___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_ne___elambda__1___closed__1); l_Lean_Parser_Term_ne___elambda__1___closed__2 = _init_l_Lean_Parser_Term_ne___elambda__1___closed__2(); @@ -59925,6 +70334,11 @@ lean_mark_persistent(l_Lean_Parser_Term_ne); res = l___regBuiltinParser_Lean_Parser_Term_ne(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_ne_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_ne_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_ne_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_ne_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_beq___elambda__1___closed__1 = _init_l_Lean_Parser_Term_beq___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_beq___elambda__1___closed__1); l_Lean_Parser_Term_beq___elambda__1___closed__2 = _init_l_Lean_Parser_Term_beq___elambda__1___closed__2(); @@ -59944,6 +70358,11 @@ lean_mark_persistent(l_Lean_Parser_Term_beq); res = l___regBuiltinParser_Lean_Parser_Term_beq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_beq_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_beq_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_beq_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_beq_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_bne___elambda__1___closed__1 = _init_l_Lean_Parser_Term_bne___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_bne___elambda__1___closed__1); l_Lean_Parser_Term_bne___elambda__1___closed__2 = _init_l_Lean_Parser_Term_bne___elambda__1___closed__2(); @@ -59965,6 +70384,11 @@ lean_mark_persistent(l_Lean_Parser_Term_bne); res = l___regBuiltinParser_Lean_Parser_Term_bne(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_bne_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_bne_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_bne_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_bne_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_heq___elambda__1___closed__1 = _init_l_Lean_Parser_Term_heq___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_heq___elambda__1___closed__1); l_Lean_Parser_Term_heq___elambda__1___closed__2 = _init_l_Lean_Parser_Term_heq___elambda__1___closed__2(); @@ -59988,6 +70412,11 @@ lean_mark_persistent(l_Lean_Parser_Term_heq); res = l___regBuiltinParser_Lean_Parser_Term_heq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_heq_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_heq_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_heq_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_heq_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_equiv___elambda__1___closed__1 = _init_l_Lean_Parser_Term_equiv___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_equiv___elambda__1___closed__1); l_Lean_Parser_Term_equiv___elambda__1___closed__2 = _init_l_Lean_Parser_Term_equiv___elambda__1___closed__2(); @@ -60009,6 +70438,11 @@ lean_mark_persistent(l_Lean_Parser_Term_equiv); res = l___regBuiltinParser_Lean_Parser_Term_equiv(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_equiv_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1(); lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1); l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2(); @@ -60042,6 +70476,17 @@ lean_mark_persistent(l_Lean_Parser_Term_subst); res = l___regBuiltinParser_Lean_Parser_Term_subst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_subst_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_subst_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_subst_parenthesizer___closed__1); +l_Lean_Parser_Term_subst_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_subst_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_subst_parenthesizer___closed__2); +l_Lean_Parser_Term_subst_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_subst_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_subst_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_subst_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_subst_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_subst_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_subst_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_and___elambda__1___closed__1 = _init_l_Lean_Parser_Term_and___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_and___elambda__1___closed__1); l_Lean_Parser_Term_and___elambda__1___closed__2 = _init_l_Lean_Parser_Term_and___elambda__1___closed__2(); @@ -60065,6 +70510,15 @@ lean_mark_persistent(l_Lean_Parser_Term_and); res = l___regBuiltinParser_Lean_Parser_Term_and(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_and_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_and_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_and_parenthesizer___closed__1); +l_Lean_Parser_Term_and_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_and_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_and_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_and_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_and_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_and_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_and_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_or___elambda__1___closed__1 = _init_l_Lean_Parser_Term_or___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_or___elambda__1___closed__1); l_Lean_Parser_Term_or___elambda__1___closed__2 = _init_l_Lean_Parser_Term_or___elambda__1___closed__2(); @@ -60088,6 +70542,19 @@ lean_mark_persistent(l_Lean_Parser_Term_or); res = l___regBuiltinParser_Lean_Parser_Term_or(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_or_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_or_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_or_parenthesizer___closed__1); +l_Lean_Parser_Term_or_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_or_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_or_parenthesizer___closed__2); +l_Lean_Parser_Term_or_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_or_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_or_parenthesizer___closed__3); +l_Lean_Parser_Term_or_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_or_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_or_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_or_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_or_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_or_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_or_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_iff___elambda__1___closed__1 = _init_l_Lean_Parser_Term_iff___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_iff___elambda__1___closed__1); l_Lean_Parser_Term_iff___elambda__1___closed__2 = _init_l_Lean_Parser_Term_iff___elambda__1___closed__2(); @@ -60111,6 +70578,19 @@ lean_mark_persistent(l_Lean_Parser_Term_iff); res = l___regBuiltinParser_Lean_Parser_Term_iff(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_iff_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_iff_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_iff_parenthesizer___closed__1); +l_Lean_Parser_Term_iff_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_iff_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_iff_parenthesizer___closed__2); +l_Lean_Parser_Term_iff_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_iff_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_iff_parenthesizer___closed__3); +l_Lean_Parser_Term_iff_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_iff_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_iff_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_iff_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_iff_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_iff_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_iff_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_band___elambda__1___closed__1 = _init_l_Lean_Parser_Term_band___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_band___elambda__1___closed__1); l_Lean_Parser_Term_band___elambda__1___closed__2 = _init_l_Lean_Parser_Term_band___elambda__1___closed__2(); @@ -60132,6 +70612,17 @@ lean_mark_persistent(l_Lean_Parser_Term_band); res = l___regBuiltinParser_Lean_Parser_Term_band(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_band_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_band_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_band_parenthesizer___closed__1); +l_Lean_Parser_Term_band_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_band_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_band_parenthesizer___closed__2); +l_Lean_Parser_Term_band_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_band_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_band_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_band_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_band_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_band_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_band_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_bor___elambda__1___closed__1 = _init_l_Lean_Parser_Term_bor___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_bor___elambda__1___closed__1); l_Lean_Parser_Term_bor___elambda__1___closed__2 = _init_l_Lean_Parser_Term_bor___elambda__1___closed__2(); @@ -60153,6 +70644,17 @@ lean_mark_persistent(l_Lean_Parser_Term_bor); res = l___regBuiltinParser_Lean_Parser_Term_bor(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_bor_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_bor_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_bor_parenthesizer___closed__1); +l_Lean_Parser_Term_bor_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_bor_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_bor_parenthesizer___closed__2); +l_Lean_Parser_Term_bor_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_bor_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_bor_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_bor_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_bor_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_bor_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_bor_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_append___elambda__1___closed__1 = _init_l_Lean_Parser_Term_append___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_append___elambda__1___closed__1); l_Lean_Parser_Term_append___elambda__1___closed__2 = _init_l_Lean_Parser_Term_append___elambda__1___closed__2(); @@ -60174,6 +70676,11 @@ lean_mark_persistent(l_Lean_Parser_Term_append); res = l___regBuiltinParser_Lean_Parser_Term_append(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_append_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_append_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_append_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_append_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_cons___elambda__1___closed__1 = _init_l_Lean_Parser_Term_cons___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_cons___elambda__1___closed__1); l_Lean_Parser_Term_cons___elambda__1___closed__2 = _init_l_Lean_Parser_Term_cons___elambda__1___closed__2(); @@ -60193,6 +70700,19 @@ lean_mark_persistent(l_Lean_Parser_Term_cons); res = l___regBuiltinParser_Lean_Parser_Term_cons(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_cons_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_cons_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_cons_parenthesizer___closed__1); +l_Lean_Parser_Term_cons_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_cons_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_cons_parenthesizer___closed__2); +l_Lean_Parser_Term_cons_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_cons_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_cons_parenthesizer___closed__3); +l_Lean_Parser_Term_cons_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_cons_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_cons_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_cons_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_cons_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_cons_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_cons_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_orelse___elambda__1___closed__1 = _init_l_Lean_Parser_Term_orelse___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_orelse___elambda__1___closed__1); l_Lean_Parser_Term_orelse___elambda__1___closed__2 = _init_l_Lean_Parser_Term_orelse___elambda__1___closed__2(); @@ -60214,6 +70734,19 @@ lean_mark_persistent(l_Lean_Parser_Term_orelse); res = l___regBuiltinParser_Lean_Parser_Term_orelse(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_orelse_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_orelse_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_orelse_parenthesizer___closed__1); +l_Lean_Parser_Term_orelse_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_orelse_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_orelse_parenthesizer___closed__2); +l_Lean_Parser_Term_orelse_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_orelse_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_orelse_parenthesizer___closed__3); +l_Lean_Parser_Term_orelse_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_orelse_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_orelse_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_orelse_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_orM___elambda__1___closed__1 = _init_l_Lean_Parser_Term_orM___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_orM___elambda__1___closed__1); l_Lean_Parser_Term_orM___elambda__1___closed__2 = _init_l_Lean_Parser_Term_orM___elambda__1___closed__2(); @@ -60235,6 +70768,15 @@ lean_mark_persistent(l_Lean_Parser_Term_orM); res = l___regBuiltinParser_Lean_Parser_Term_orM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_orM_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_orM_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_orM_parenthesizer___closed__1); +l_Lean_Parser_Term_orM_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_orM_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_orM_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_orM_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_orM_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_orM_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_orM_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_andM___elambda__1___closed__1 = _init_l_Lean_Parser_Term_andM___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_andM___elambda__1___closed__1); l_Lean_Parser_Term_andM___elambda__1___closed__2 = _init_l_Lean_Parser_Term_andM___elambda__1___closed__2(); @@ -60256,6 +70798,11 @@ lean_mark_persistent(l_Lean_Parser_Term_andM); res = l___regBuiltinParser_Lean_Parser_Term_andM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_andM_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_andM_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_andM_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_andM_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_andthen___elambda__1___closed__1 = _init_l_Lean_Parser_Term_andthen___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_andthen___elambda__1___closed__1); l_Lean_Parser_Term_andthen___elambda__1___closed__2 = _init_l_Lean_Parser_Term_andthen___elambda__1___closed__2(); @@ -60277,6 +70824,19 @@ lean_mark_persistent(l_Lean_Parser_Term_andthen); res = l___regBuiltinParser_Lean_Parser_Term_andthen(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_andthen_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_andthen_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_andthen_parenthesizer___closed__1); +l_Lean_Parser_Term_andthen_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_andthen_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_andthen_parenthesizer___closed__2); +l_Lean_Parser_Term_andthen_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_andthen_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_andthen_parenthesizer___closed__3); +l_Lean_Parser_Term_andthen_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_andthen_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_andthen_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_andthen_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_bindOp___elambda__1___closed__1 = _init_l_Lean_Parser_Term_bindOp___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_bindOp___elambda__1___closed__1); l_Lean_Parser_Term_bindOp___elambda__1___closed__2 = _init_l_Lean_Parser_Term_bindOp___elambda__1___closed__2(); @@ -60298,6 +70858,19 @@ lean_mark_persistent(l_Lean_Parser_Term_bindOp); res = l___regBuiltinParser_Lean_Parser_Term_bindOp(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_bindOp_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_bindOp_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_bindOp_parenthesizer___closed__1); +l_Lean_Parser_Term_bindOp_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_bindOp_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_bindOp_parenthesizer___closed__2); +l_Lean_Parser_Term_bindOp_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_bindOp_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_bindOp_parenthesizer___closed__3); +l_Lean_Parser_Term_bindOp_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_bindOp_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_bindOp_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_bindOp_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_mapRev___elambda__1___closed__1 = _init_l_Lean_Parser_Term_mapRev___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_mapRev___elambda__1___closed__1); l_Lean_Parser_Term_mapRev___elambda__1___closed__2 = _init_l_Lean_Parser_Term_mapRev___elambda__1___closed__2(); @@ -60319,6 +70892,15 @@ lean_mark_persistent(l_Lean_Parser_Term_mapRev); res = l___regBuiltinParser_Lean_Parser_Term_mapRev(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_mapRev_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_mapRev_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_mapRev_parenthesizer___closed__1); +l_Lean_Parser_Term_mapRev_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_mapRev_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_mapRev_parenthesizer___closed__2); +l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_mapRev_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_seq___elambda__1___closed__1 = _init_l_Lean_Parser_Term_seq___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_seq___elambda__1___closed__1); l_Lean_Parser_Term_seq___elambda__1___closed__2 = _init_l_Lean_Parser_Term_seq___elambda__1___closed__2(); @@ -60338,6 +70920,17 @@ lean_mark_persistent(l_Lean_Parser_Term_seq); res = l___regBuiltinParser_Lean_Parser_Term_seq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_seq_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_seq_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_seq_parenthesizer___closed__1); +l_Lean_Parser_Term_seq_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_seq_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_seq_parenthesizer___closed__2); +l_Lean_Parser_Term_seq_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_seq_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_seq_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_seq_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_seq_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_seq_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_seq_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_seqLeft___elambda__1___closed__1 = _init_l_Lean_Parser_Term_seqLeft___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_seqLeft___elambda__1___closed__1); l_Lean_Parser_Term_seqLeft___elambda__1___closed__2 = _init_l_Lean_Parser_Term_seqLeft___elambda__1___closed__2(); @@ -60359,6 +70952,11 @@ lean_mark_persistent(l_Lean_Parser_Term_seqLeft); res = l___regBuiltinParser_Lean_Parser_Term_seqLeft(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_seqLeft_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_seqRight___elambda__1___closed__1 = _init_l_Lean_Parser_Term_seqRight___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_seqRight___elambda__1___closed__1); l_Lean_Parser_Term_seqRight___elambda__1___closed__2 = _init_l_Lean_Parser_Term_seqRight___elambda__1___closed__2(); @@ -60380,6 +70978,11 @@ lean_mark_persistent(l_Lean_Parser_Term_seqRight); res = l___regBuiltinParser_Lean_Parser_Term_seqRight(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_seqRight_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_map___elambda__1___closed__1 = _init_l_Lean_Parser_Term_map___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_map___elambda__1___closed__1); l_Lean_Parser_Term_map___elambda__1___closed__2 = _init_l_Lean_Parser_Term_map___elambda__1___closed__2(); @@ -60401,6 +71004,11 @@ lean_mark_persistent(l_Lean_Parser_Term_map); res = l___regBuiltinParser_Lean_Parser_Term_map(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l___regBuiltin_Lean_Parser_Term_map_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_map_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_map_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_map_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_tacticBlock___elambda__1___closed__1 = _init_l_Lean_Parser_Term_tacticBlock___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_tacticBlock___elambda__1___closed__1); l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2 = _init_l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2(); @@ -60452,6 +71060,23 @@ lean_mark_persistent(l_Lean_Parser_Term_tacticBlock); res = l___regBuiltinParser_Lean_Parser_Term_tacticBlock(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Tactic_seq_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_seq_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_seq_parenthesizer___closed__1); +l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1); +l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__2); +l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__3); +l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__4); +l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Term_tacticBlock_parenthesizer___closed__5); +l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_tacticBlock_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_byTactic___elambda__1___closed__1 = _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_byTactic___elambda__1___closed__1); l_Lean_Parser_Term_byTactic___elambda__1___closed__2 = _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__2(); @@ -60489,6 +71114,17 @@ lean_mark_persistent(l_Lean_Parser_Term_byTactic); res = l___regBuiltinParser_Lean_Parser_Term_byTactic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_byTactic_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_byTactic_parenthesizer___closed__1); +l_Lean_Parser_Term_byTactic_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_byTactic_parenthesizer___closed__2); +l_Lean_Parser_Term_byTactic_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_byTactic_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__1 = _init_l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__1); l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2 = _init_l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2(); @@ -60526,6 +71162,19 @@ lean_mark_persistent(l___regBuiltinParser_Lean_Parser_Term_tacticStxQuot___close res = l___regBuiltinParser_Lean_Parser_Term_tacticStxQuot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1); +l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__2); +l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__3); +l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_tacticStxQuot_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__1 = _init_l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__1); l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__2 = _init_l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__2(); @@ -60557,6 +71206,13 @@ lean_mark_persistent(l___regBuiltinParser_Lean_Parser_Term_levelStxQuot___closed res = l___regBuiltinParser_Lean_Parser_Term_levelStxQuot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1); +l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_levelStxQuot_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__1 = _init_l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__1); l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__2 = _init_l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__2(); @@ -60590,6 +71246,17 @@ lean_mark_persistent(l___regBuiltinParser_Lean_Parser_Term_funBinderStxQuot___cl res = l___regBuiltinParser_Lean_Parser_Term_funBinderStxQuot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1); +l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__2); +l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__3); +l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer___closed__1); +res = l___regBuiltin_Lean_Parser_Term_funBinderStxQuot_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index b1d240e26f..3aca9c295f 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -325,7 +325,6 @@ extern lean_object* l_Lean_strLitKind___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_monadQuotation___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLitNoAntiquot_parenthesizer___boxed(lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_PrettyPrinter_Parenthesizer_compileParserBody___main___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goDown___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); extern lean_object* l_Char_HasRepr___closed__1; @@ -472,7 +471,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParserBody___main___lambda__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_ptr_addr(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___closed__3; -extern lean_object* l_Substring_drop___closed__2; lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParserBody___main___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_PrettyPrinter_Parenthesizer_compileParserBody___main___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -572,7 +570,7 @@ extern lean_object* l_Lean_Option_format___rarg___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__16; lean_object* l_Lean_Meta_getConstInfo(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_PrettyPrinter_Parenthesizer_compileParserBody___main___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkTailWs_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -680,13 +678,13 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer__ lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_PrettyPrinter_Parenthesizer_compileParserBody___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_identEq_parenthesizer___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_addPrecCheck___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Substring_splitOnAux___main___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__26; extern lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthesizer___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCombinatorParenthesizerAttribute___closed__5; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_NameGenerator_Inhabited___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__7; @@ -700,7 +698,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_compileParserBody___main___close lean_object* l_Array_iterateM_u2082Aux___main___at_Lean_PrettyPrinter_Parenthesizer_compileParserBody___main___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind___closed__1; uint8_t lean_string_dec_eq(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27(lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* lean_mk_antiquot_parenthesizer(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___main___at_Lean_PrettyPrinter_Parenthesizer_sepBy_parenthesizer___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2789,7 +2787,7 @@ lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Substring_drop___closed__2; +x_1 = l_Substring_splitOnAux___main___closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -6054,48 +6052,14 @@ return x_35; } } } -lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = lean_box(0); -x_5 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_1); -x_6 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_6, 0, x_5); -lean_ctor_set(x_6, 1, x_3); -return x_6; -} -} -lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___rarg___boxed), 3, 0); -return x_5; -} -} -lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___rarg(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} -lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; lean_object* x_6; -x_5 = lean_unbox(x_3); +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_3); lean_dec(x_3); -x_6 = l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27(x_1, x_2, x_5, x_4); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -return x_6; +x_9 = lean_mk_antiquot_parenthesizer(x_1, x_2, x_8, x_4, x_5, x_6, x_7); +return x_9; } } lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind___closed__1() { @@ -6298,7 +6262,7 @@ x_16 = l_Lean_Name_toStringWithSep___main(x_15, x_1); x_17 = lean_box(0); x_18 = 1; x_19 = lean_box(x_18); -x_20 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 4, 3); +x_20 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 7, 3); lean_closure_set(x_20, 0, x_16); lean_closure_set(x_20, 1, x_17); lean_closure_set(x_20, 2, x_19); @@ -23480,137 +23444,179 @@ return x_28; } else { -uint8_t x_29; lean_object* x_30; +lean_object* x_29; lean_object* x_30; lean_dec(x_2); -x_29 = 0; -lean_inc(x_1); -x_30 = l_Lean_PrettyPrinter_Parenthesizer_compile(x_3, x_1, x_29, x_4); +x_29 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_30 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_29, x_3, x_1); if (lean_obj_tag(x_30) == 0) { -uint8_t x_31; -x_31 = !lean_is_exclusive(x_30); -if (x_31 == 0) +uint8_t x_31; lean_object* x_32; +x_31 = 0; +lean_inc(x_1); +x_32 = l_Lean_PrettyPrinter_Parenthesizer_compile(x_3, x_1, x_31, x_4); +if (lean_obj_tag(x_32) == 0) { -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_ctor_get(x_30, 0); -x_33 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind), 5, 1); -lean_closure_set(x_33, 0, x_1); -x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_32); -lean_ctor_set(x_30, 0, x_34); -return x_30; +uint8_t x_33; +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_32, 0); +x_35 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind), 5, 1); +lean_closure_set(x_35, 0, x_1); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +lean_ctor_set(x_32, 0, x_36); +return x_32; } else { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_30, 0); -x_36 = lean_ctor_get(x_30, 1); -lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_30); -x_37 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind), 5, 1); -lean_closure_set(x_37, 0, x_1); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_36); -return x_39; +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_32, 0); +x_38 = lean_ctor_get(x_32, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_32); +x_39 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind), 5, 1); +lean_closure_set(x_39, 0, x_1); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_38); +return x_41; } } else { -uint8_t x_40; +uint8_t x_42; lean_dec(x_1); -x_40 = !lean_is_exclusive(x_30); -if (x_40 == 0) +x_42 = !lean_is_exclusive(x_32); +if (x_42 == 0) { -return x_30; +return x_32; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_30, 0); -x_42 = lean_ctor_get(x_30, 1); -lean_inc(x_42); -lean_inc(x_41); +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_32, 0); +x_44 = lean_ctor_get(x_32, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_32); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; +} +} +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_1); +x_46 = lean_ctor_get(x_30, 0); +lean_inc(x_46); lean_dec(x_30); -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; -} +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_3); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_4); +return x_48; } } } else { -uint8_t x_44; lean_object* x_45; +lean_object* x_49; lean_object* x_50; lean_dec(x_15); lean_dec(x_2); -x_44 = 0; +x_49 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_50 = l_Lean_KeyedDeclsAttribute_getValues___rarg(x_49, x_3, x_1); +if (lean_obj_tag(x_50) == 0) +{ +uint8_t x_51; lean_object* x_52; +x_51 = 0; lean_inc(x_1); -x_45 = l_Lean_PrettyPrinter_Parenthesizer_compile(x_3, x_1, x_44, x_4); -if (lean_obj_tag(x_45) == 0) +x_52 = l_Lean_PrettyPrinter_Parenthesizer_compile(x_3, x_1, x_51, x_4); +if (lean_obj_tag(x_52) == 0) { -uint8_t x_46; -x_46 = !lean_is_exclusive(x_45); -if (x_46 == 0) +uint8_t x_53; +x_53 = !lean_is_exclusive(x_52); +if (x_53 == 0) { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_45, 0); -x_48 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind), 5, 1); -lean_closure_set(x_48, 0, x_1); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_47); -lean_ctor_set(x_45, 0, x_49); -return x_45; +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_52, 0); +x_55 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind), 5, 1); +lean_closure_set(x_55, 0, x_1); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set(x_56, 1, x_54); +lean_ctor_set(x_52, 0, x_56); +return x_52; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_50 = lean_ctor_get(x_45, 0); -x_51 = lean_ctor_get(x_45, 1); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_45); -x_52 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind), 5, 1); -lean_closure_set(x_52, 0, x_1); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_50); -x_54 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_54, 1, x_51); -return x_54; -} -} -else -{ -uint8_t x_55; -lean_dec(x_1); -x_55 = !lean_is_exclusive(x_45); -if (x_55 == 0) -{ -return x_45; -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_45, 0); -x_57 = lean_ctor_get(x_45, 1); +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_57 = lean_ctor_get(x_52, 0); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); lean_inc(x_57); -lean_inc(x_56); -lean_dec(x_45); -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_57); -return x_58; +lean_dec(x_52); +x_59 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKind), 5, 1); +lean_closure_set(x_59, 0, x_1); +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_57); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_58); +return x_61; } } +else +{ +uint8_t x_62; +lean_dec(x_1); +x_62 = !lean_is_exclusive(x_52); +if (x_62 == 0) +{ +return x_52; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_52, 0); +x_64 = lean_ctor_get(x_52, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_52); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; +} +} +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_1); +x_66 = lean_ctor_get(x_50, 0); +lean_inc(x_66); +lean_dec(x_50); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_3); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_4); +return x_68; +} } } } @@ -23700,7 +23706,7 @@ x_1 = l_Lean_numLitKind___closed__1; x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__3; x_3 = 1; x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 4, 3); +x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 7, 3); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); lean_closure_set(x_5, 2, x_4); @@ -23745,7 +23751,7 @@ x_1 = l_Lean_strLitKind___closed__1; x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__7; x_3 = 1; x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 4, 3); +x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 7, 3); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); lean_closure_set(x_5, 2, x_4); @@ -23790,7 +23796,7 @@ x_1 = l_Lean_charLitKind___closed__1; x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__11; x_3 = 1; x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 4, 3); +x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 7, 3); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); lean_closure_set(x_5, 2, x_4); @@ -23835,7 +23841,7 @@ x_1 = l_Lean_nameLitKind___closed__1; x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__15; x_3 = 1; x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 4, 3); +x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 7, 3); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); lean_closure_set(x_5, 2, x_4); @@ -23880,7 +23886,7 @@ x_1 = l_Lean_identKind___closed__1; x_2 = l_Lean_PrettyPrinter_Parenthesizer_compileParenthesizerDescr___main___closed__19; x_3 = 1; x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 4, 3); +x_5 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed), 7, 3); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); lean_closure_set(x_5, 2, x_4); diff --git a/stage0/stdlib/Lean/Structure.c b/stage0/stdlib/Lean/Structure.c index db9da51688..f2398f246b 100644 --- a/stage0/stdlib/Lean/Structure.c +++ b/stage0/stdlib/Lean/Structure.c @@ -270,7 +270,6 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_dec(x_1); x_10 = lean_unsigned_to_nat(1u); x_11 = l_String_drop(x_3, x_10); -lean_dec(x_3); x_12 = lean_name_mk_string(x_2, x_11); return x_12; } diff --git a/stage0/stdlib/Lean/Util/Path.c b/stage0/stdlib/Lean/Util/Path.c index deec72c612..8e166802a2 100644 --- a/stage0/stdlib/Lean/Util/Path.c +++ b/stage0/stdlib/Lean/Util/Path.c @@ -1072,8 +1072,8 @@ if (lean_is_exclusive(x_9)) { } x_13 = l_String_isPrefixOf(x_10, x_5); x_14 = lean_string_length(x_10); +lean_inc(x_5); x_15 = l_String_drop(x_5, x_14); -lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); x_17 = lean_string_utf8_get(x_15, x_16); x_18 = l_System_FilePath_pathSeparator; @@ -1215,7 +1215,6 @@ lean_object* x_47; lean_object* x_48; uint32_t x_49; lean_object* x_50; lean_dec(x_10); x_47 = lean_unsigned_to_nat(1u); x_48 = l_String_drop(x_15, x_47); -lean_dec(x_15); x_49 = 46; x_50 = l_String_revPosOf(x_48, x_49); if (lean_obj_tag(x_50) == 0)